From 3b047f75720e52054f1bc72fc1ff683cb7d18c89 Mon Sep 17 00:00:00 2001 From: Djordje Nedic Date: Fri, 11 Aug 2023 22:32:11 +0200 Subject: [PATCH] fix: noload being included in ram and flash sizes This fixes noload sections being included in the total flash and ram size calculations. These sections represent things that already exist in the rom or flash in different partitions and are not a part of the app. --- tools/idf_size.py | 16 +- tools/test_idf_size/app_nonzero_noload.map | 107785 ++++++++++++++++++ tools/test_idf_size/expected_output | 873 +- tools/test_idf_size/test.sh | 6 + 4 files changed, 108661 insertions(+), 19 deletions(-) create mode 100644 tools/test_idf_size/app_nonzero_noload.map diff --git a/tools/idf_size.py b/tools/idf_size.py index 7222994d2d..e662c6a312 100755 --- a/tools/idf_size.py +++ b/tools/idf_size.py @@ -6,7 +6,7 @@ # Includes information which is not shown in "xtensa-esp32-elf-size", # or easy to parse from "xtensa-esp32-elf-objdump" or raw map files. # -# SPDX-FileCopyrightText: 2017-2022 Espressif Systems (Shanghai) CO LTD +# SPDX-FileCopyrightText: 2017-2023 Espressif Systems (Shanghai) CO LTD # SPDX-License-Identifier: Apache-2.0 # from __future__ import division, print_function, unicode_literals @@ -142,6 +142,7 @@ class LinkingSections(object): 'data': r'.*\.data', 'bss': r'.*\.bss', 'rodata': r'.*\.rodata', + 'rodata_noload': r'.*\.rodata_noload', 'noinit': r'.*noinit', 'vectors': r'.*\.vectors', 'flash': r'.*flash.*', @@ -585,10 +586,11 @@ class StructureForSummary(object): def filter_in_section(sections: Iterable[MemRegions.Region], section_to_check: str) -> List[MemRegions.Region]: return list(filter(lambda x: LinkingSections.in_section(x.section, section_to_check), sections)) # type: ignore - dram_sections = list(filter(in_dram, sections)) - iram_sections = list(filter(in_iram, sections)) - diram_sections = list(filter(in_diram, sections)) - flash_sections = filter_in_section(sections, 'flash') + noload_sections = filter_in_section(sections, 'rodata_noload') + dram_sections = [x for x in list(filter(in_dram, sections)) if x not in noload_sections] + iram_sections = [x for x in list(filter(in_iram, sections)) if x not in noload_sections] + diram_sections = [x for x in list(filter(in_diram, sections)) if x not in noload_sections] + flash_sections = [x for x in filter_in_section(sections, 'flash') if x not in noload_sections] dram_data_list = filter_in_section(dram_sections, 'data') dram_bss_list = filter_in_section(dram_sections, 'bss') @@ -906,8 +908,8 @@ class StructureForDetailedSizes(object): s = [] for key, section_dict in sizes.items(): - ram_st_total = sum([x[1] for x in section_dict.items() if not LinkingSections.in_section(x[0], 'flash')]) - flash_total = sum([x[1] for x in section_dict.items() if not LinkingSections.in_section(x[0], 'bss')]) # type: int + ram_st_total = sum([x[1] for x in section_dict.items() if not LinkingSections.in_section(x[0], ['flash', 'rodata_noload'])]) + flash_total = sum([x[1] for x in section_dict.items() if not LinkingSections.in_section(x[0], ['bss', 'rodata_noload'])]) # type: int section_dict['ram_st_total'] = ram_st_total section_dict['flash_total'] = flash_total diff --git a/tools/test_idf_size/app_nonzero_noload.map b/tools/test_idf_size/app_nonzero_noload.map new file mode 100644 index 0000000000..b6c6daf025 --- /dev/null +++ b/tools/test_idf_size/app_nonzero_noload.map @@ -0,0 +1,107785 @@ +Archive member included to satisfy reference by file (symbol) + +esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + (esp_app_desc) +esp-idf/pthread/libpthread.a(pthread.c.obj) + (pthread_include_pthread_impl) +esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) (pthread_key_create) +esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + (pthread_include_pthread_rwlock_impl) +esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + (pthread_include_pthread_semaphore_impl) +esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) (pthread_cond_init) +esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + (__ubsan_include) +esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + (call_start_cpu0) +esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) (esp_system_abort) +esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + (ld_include_highint_hdl) +esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_clk_init) +esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_cache_err_int_init) +esp-idf/esp_system/libesp_system.a(esp_ipc_isr.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_handler.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) (esp_ipc_isr_handler) +esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) (esp_ipc_isr_waiting_for_finish_cmd) +esp-idf/esp_system/libesp_system.a(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(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(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) (panic_print_registers) +esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) (esp_backtrace_print_from_frame) +esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) (esp_backtrace_get_start) +esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) (esp_register_freertos_tick_hook_for_cpu) +esp-idf/esp_rom/libesp_rom.a(esp_rom_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/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(cache_err_int.c.obj) (esp_intr_enable_source) +esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (periph_module_enable) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) (rtc_isr_register) +esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_deep_sleep_wakeup_io_reset) +esp-idf/esp_hw_support/libesp_hw_support.a(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(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/pthread/libpthread.a(pthread.c.obj) (xTaskCreatePinnedToCore) +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/esp_system/libesp_system.a(startup.c.obj) (esp_reent_init) +esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_newlib_init) +esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (_kill_r) +esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (_gettimeofday_r) +esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) (esp_time_impl_get_time_since_boot) +esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + (__cxa_guard_dummy) +esp-idf/esp_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/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (g_coex_adapter_funcs) +esp-idf/bt/libbt.a(hli_vectors.S.obj) + (ld_include_hli_vectors_bt) +esp-idf/bt/libbt.a(hli_api.c.obj) + esp-idf/bt/libbt.a(hli_vectors.S.obj) (hli_c_handler) +esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + (nvs_sec_provider_include_impl) +esp-idf/main/libmain.a(app_main.c.obj) + (app_main) +esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) (wifi_prov_mgr_endpoint_create) +esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) (get_wifi_prov_handlers) +esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) (wifi_prov_scheme_ble_set_service_uuid) +esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) (wifi_prov_config_data_handler) +esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) (wifi_prov_scan_handler) +esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) (wifi_ctrl_handler) +esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) (resp_get_status__init) +esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) (resp_scan_start__init) +esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) (resp_ctrl_reset__init) +esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) (wifi_connected_state__init) +esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) (protocomm_new) +esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) (status__descriptor) +esp-idf/protocomm/libprotocomm.a(security0.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) (protocomm_security0) +esp-idf/protocomm/libprotocomm.a(security1.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) (protocomm_security1) +esp-idf/protocomm/libprotocomm.a(security2.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) (protocomm_security2) +esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.c.obj) (esp_srp_free) +esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) (esp_mpi_new) +esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) (protocomm_ble_start) +esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(security0.c.obj) (s0_session_resp__init) +esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) (session_resp1__init) +esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.c.obj) (s2_session_resp0__init) +esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(security0.c.obj) (session_data__init) +esp-idf/bt/libbt.a(bt.c.obj) esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) (esp_bt_mem_release) +esp-idf/bt/libbt.a(addr.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) (ble_hs_util_ensure_addr) +esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) (ble_svc_gap_device_name) +esp-idf/bt/libbt.a(ble_store_util.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) (ble_store_util_status_rr) +esp-idf/bt/libbt.a(ble_hs_id.c.obj) + esp-idf/bt/libbt.a(addr.c.obj) (ble_hs_id_gen_rnd) +esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(ble_hs_id.c.obj) (ble_hs_lock) +esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) (ble_hs_hci_evt_process) +esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) (ble_mqueue_init) +esp-idf/bt/libbt.a(ble_att.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) (ble_att_init) +esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) (ble_gattc_timer) +esp-idf/bt/libbt.a(ble_store.c.obj) + esp-idf/bt/libbt.a(ble_store_util.c.obj) (ble_store_delete) +esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) (ble_hs_cfg) +esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) (ble_att_clt_rx_error) +esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) (ble_hs_mbuf_att_pkt) +esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) (ble_att_cmd_get) +esp-idf/bt/libbt.a(ble_hs_log.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) (ble_hs_log_mbuf) +esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) (ble_hs_startup_go) +esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) (ble_l2cap_sig_timer) +esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) (ble_gap_conn_find) +esp-idf/bt/libbt.a(ble_uuid.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) (ble_uuid_cmp) +esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) (ble_hs_pvcy_remove_entry) +esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) (ble_hs_flow_connection_broken) +esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) (ble_l2cap_chan_alloc) +esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) (ble_hs_misc_conn_chan_find) +esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) (ble_gatts_connection_broken) +esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) (ble_hs_adv_set_fields) +esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + esp-idf/bt/libbt.a(ble_hs_startup.c.obj) (ble_hs_hci_set_buf_sz) +esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci.c.obj) (ble_hs_hci_util_handle_pb_bc_join) +esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_store_util.c.obj) (ble_rpa_remove_peer_dev_rec) +esp-idf/bt/libbt.a(ble_store_config.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) (ble_store_config_init) +esp-idf/bt/libbt.a(nimble_port.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) (nimble_port_init) +esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) (nimble_port_freertos_init) +esp-idf/bt/libbt.a(endian.c.obj) + esp-idf/bt/libbt.a(ble_uuid.c.obj) (put_le16) +esp-idf/bt/libbt.a(os_mempool.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) (os_mempool_init) +esp-idf/bt/libbt.a(mem.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci.c.obj) (mem_init_mbuf_pool) +esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(mem.c.obj) (os_mbuf_pool_init) +esp-idf/bt/libbt.a(os_msys_init.c.obj) + esp-idf/bt/libbt.a(nimble_port.c.obj) (os_msys_init) +esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) (npl_funcs) +esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) (ble_hci_trans_hs_acl_tx) +esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) (bt_osi_mem_malloc) +esp-idf/bt/libbt.a(transport.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) (ble_transport_alloc_evt) +esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) (ble_hs_conn_can_alloc) +esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) (ble_sm_enc_change_rx) +esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) (ble_l2cap_sig_tx) +esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci.c.obj) (ble_hs_hci_cmd_send_buf) +esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) (ble_att_svr_register) +esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) (ble_hs_atomic_conn_delete) +esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) (ble_sm_alg_encrypt) +esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + esp-idf/bt/libbt.a(nimble_port.c.obj) (ble_hs_stop) +esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) (ble_sm_lgcy_io_action) +esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) (ble_sm_cmd_get) +esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) (ble_sm_sc_io_action) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + esp-idf/bt/libbt.a(bt.c.obj) (btdm_lpclk_select_src) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(btdm_log.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) (g_bt_plf_log_level) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) (coex_schm_wakeup_flag_get) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) (config_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(co_utils.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_co_utils_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_dbg_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg.o) (dbg_default_handler_2) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_ea_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) (r_eif_deinit) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_msg.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_hci_msg_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_hci_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg_task.o) (hci_tl_tx_trigger_on_acl_fc) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) (r_huart_init) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_msg.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_ke_msg_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_ke_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_ke_task_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_lmppdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_lc_lmppdu_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_lc_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sco.o) + esp-idf/bt/libbt.a(bt.c.obj) (bredr_sco_datapath_set) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sniff.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_lc_sniff_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_lc_task_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) (ld_acl_all_in_sniff) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_ld_fm_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_inq.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) (ld_inq_frm_isr_wrapper) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_ld_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_pscan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) (ld_pscan_assert_err_handle) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sched.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) (ld_sched_link_in_sniff) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sscan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_ld_sscan_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_llc_hci_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_llc_llcp_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) (llc_peer_conn_param_req_not_support_set) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_llc_task_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_util.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_llc_util_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) (lld_con_term_info) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_lld_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) (lld_pdu_is_retry_set) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_util.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_lld_util_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) (ble_ll_reset_rand_addr) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) (llm_elt) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_llm_task_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_llm_util_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) (r_lm_err_data_rep_en_get) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) (coex_schm_set_afh_ch_class) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_nvds_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(osi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) (r_osi_funcs_p) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) (r_ip_funcs_p) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + esp-idf/bt/libbt.a(bt.c.obj) (bredr_txpwr_set) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) (ble_master_soft_rst) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_rwbt_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) (g_waking_sleeping_sem) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(sdk_config.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) (sdk_config_get_mask) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(syscntl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) (r_syscntl_init) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) (g_rw_schd_queue) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vflash.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) (r_flash_init) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) (vhci_notify_host_send_available) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_lmppdu.o) (bt_util_buf_lmp_tx_stored_set) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_sp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) (config_bt_util_sp_funcs_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ecc_p256.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) (r_ecc_generate_key256_with_check) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(emi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) (r_emi_init) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(intc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) (r_intc_init) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(led.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) (r_led_init) +/home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ll.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) (r_global_int_start) +esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) (protobuf_c_message_get_packed_size) +esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) (cJSON_Delete) +esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) (esp_qrcode_print_console) +esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) (qrcodegen_getSize) +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_fill_buff) +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) (range_read_addr_blocks) +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(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/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/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_page_program) +esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (memspi_host_init_pointers) +esp-idf/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/bt/libbt.a(bt.c.obj) (esp_ipc_call) +esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) (task_wdt_timeout_abort_xtensa) +esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) (esp_task_wdt_impl_timer_allocate) +esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + esp-idf/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(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) (rtcio_hal_set_direction) +esp-idf/hal/libhal.a(gpio_hal.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) (gpio_hal_intr_enable_on_core) +esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) (uart_hal_set_sclk) +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/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(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(hw_random.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) (esp_random) +esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) (esp_read_mac) +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(uart.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/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) (xEventGroupCreate) +esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) (esp_err_to_name) +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_setfn) +esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/main/libmain.a(app_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(app_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) (_ZNK3nvs15NVSHandleSimple18get_partition_nameEv) +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_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_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) (esp_phy_rf_get_on_ts) +esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) (esp_netif_get_handle_from_ifkey) +esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) (esp_ip4addr_ntoa) +esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) (g_wifi_default_wpa_crypto_funcs) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (sha256_prf) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (sha1_prf) +esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (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(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (bin_clear_free) +esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) (aes_ccm_ae) +esp-idf/esp_coex/libesp_coex.a(coexist.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) (esp_coex_version_get) +esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) (s_wifi_mac_time_update_cb) +esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) (esp_netif_create_default_wifi_sta) +esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) (esp_wifi_destroy_if_driver) +esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) (g_wifi_osi_funcs) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.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/bt/libbt.a(ble_sm_alg.c.obj) (mbedtls_cipher_info_from_type) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) (mbedtls_cipher_supported) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) (mbedtls_ct_memcmp) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) (mbedtls_cipher_cmac_starts) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) (mbedtls_ctr_drbg_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) (mbedtls_ecdh_gen_public) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) (mbedtls_ecp_restart_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) (mbedtls_ecp_group_load) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) (mbedtls_entropy_free) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (mbedtls_md_info_from_type) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (mbedtls_md5) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (mbedtls_pkcs5_pbkdf2_hmac_ext) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) (mbedtls_calloc) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) (mbedtls_platform_zeroize) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (mbedtls_sha1) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) (mbedtls_sha256) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) (mbedtls_sha512) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) (mbedtls_hardware_poll) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) (esp_mbedtls_mem_calloc) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) (esp_aes_xts_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) (esp_aes_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) (esp_aes_crypt_ecb) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) (mbedtls_mpi_exp_mod) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) (esp_mpi_enable_hardware_hw_op) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (mbedtls_sha1_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (mbedtls_sha256_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) (mbedtls_sha512_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.c.obj) (esp_aes_gcm_setkey) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (esp_md5_finish) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) (mbedtls_aria_setkey_enc) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) (mbedtls_asn1_get_tag) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) (mbedtls_ccm_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) (mbedtls_oid_get_cipher_alg) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) (esp_sha_try_lock_engine) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_coex_adapter_register) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) (coex_core_request) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) (coex_force_wifi_mode) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + esp-idf/bt/libbt.a(bt.c.obj) (coex_schm_status_bit_set) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) (coex_ts_end_timer_dislarmed) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) (coex_arbit_insert) +/home/djordje/Data/Documents/Espressif/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_init_internal) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (g_ic) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_crypto_attach) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (wifi_log) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_getmgtframe) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) (g_beacon_eb) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_ht_attach) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (ieee80211_add_ie_vendor_esp_head) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) (ieee80211_decap) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (current_task_is_wifi_task) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (esp_mesh_quick_funcs) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (wifi_nan_reg_rxcb) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) (nan_dp_search_node) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) (nan_schedule_disc_bcn) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) (nan_static_sdfs_present) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (g_wifi_nvs) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (ieee80211_reg_netstack_buf_cb) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_phy_deinit) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) (ieee80211_psq_init) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_proto_attach) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (ieee80211_get_chan_info) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (ieee80211_regdomain_get_country) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_rfid_locp_recv_reset) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_scan_attach) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (ieee80211_sta_new_state) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) (wifi_sta_get_prof_password) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (ieee80211_register_hostap_timer) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) (g_chm) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (g_cnxMgr) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (offchan_in_progress) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_send_action_register) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) (get_iav_key) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) (ccmp) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) (sms4) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) (tkip) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) (wep) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) (esf_buf_recycle) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) (ic_get_addr) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) (lmacIsIdle) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) (pm_is_sleeping) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) (pTxRx) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) (wifi_gpio_debug) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) (pp_timer_do_process) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) (RC_SetBasicRate) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) (rcUpdateAMPDUParam) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) (wDevCtrl) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) (hal_agreement_add_rx_ba) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) (hal_crypto_clr_key_entry) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) (hal_mac_tx_set_ppdu) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) (hal_mac_rx_get_end_state) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) (mac_tx_set_plcp1) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) (hal_sniffer_enable) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + /home/djordje/Data/Documents/Espressif/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) (xRingbufferCreate) +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/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/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/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_register_hook) +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(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (rtc_sleep_get_default_config) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) (esp_crypto_mpi_lock_acquire) +esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (net80211_printf) +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(raw.c.obj) (ip4_route_src) +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_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_wpa3.c.obj) (ap_get_sta) +esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) (handle_auth_sae) +esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) (check_comeback_token) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) (sae_clear_temp_data) +esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) (dragonfly_min_pwe_loop_iter) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) (wpa_parse_wpa_ie_rsn) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) (hmac_sha256_kdf) +esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) (dh_groups_get) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (cipher_type_map_supp_to_public) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (wpa_parse_wpa_ie) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.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(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(bss.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) (wpa_bss_get_bssid) +esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) (wpa_scan_get_ie) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) (esp_scan_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) (wpa_ether_send) +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(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) (get_ie) +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/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) (mbedtls_asn1_write_len) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) (mbedtls_ecdsa_sign) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) (mbedtls_hmac_drbg_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) (mbedtls_pk_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) (mbedtls_rsa_info) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) (mbedtls_pk_parse_subpubkey) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) (mbedtls_pk_write_pubkey) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) (psa_destroy_key) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (psa_reset_key_attributes) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (psa_driver_wrapper_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_psa_ecp_load_representation) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) (mbedtls_psa_hash_abort) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) (mbedtls_psa_mac_abort) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_psa_rsa_load_representation) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (psa_is_valid_key_id) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (psa_destroy_persistent_key) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) (psa_its_get_info) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) (psa_status_to_mbedtls) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) (mbedtls_rsa_import) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) (mbedtls_rsa_deduce_primes) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) (mbedtls_hash_info_get_size) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) (mbedtls_pem_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) (mbedtls_pkcs12_pbe) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) (mbedtls_psa_aead_encrypt_setup) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) (mbedtls_cipher_info_from_psa) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) (mbedtls_base64_encode) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) (g_misc_nvs) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (mesh_set_ie_crypto_config) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) (esp_mesh_pm_tbtt_timeout_process) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) (mesh_malloc) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) (g_mesh_max_layer) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (esp_mesh_nvs_init) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (mesh_set_io_process) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (esp_mesh_delivery_toSelf) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) (esp_mesh_channel_enable_jp) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (g_is_wifi_connected) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (esp_mesh_route_init) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) (esp_mesh_send_block_start) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) (mesh_timer_do_process) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) (mesh_topo_get_ttl) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) (esp_mesh_ap_list_clear) +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/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/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_random_disable) +esp-idf/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(touch_sensor_periph.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) (touch_sensor_channel_io_map) +esp-idf/lwip/liblwip.a(ethip6.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) (ethip6_output) +esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (esp_mesh_send_event_internal) +/home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + esp-idf/freertos/libfreertos.a(portasm.S.obj) (xthal_window_spill_nw) +/home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) (Xthal_intlevel) +/home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (_ZdaPv) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opvs.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (_ZdaPvj) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (_ZSt7nothrow) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (_ZnajRKSt9nothrow_t) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) (_ZdlPv) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) (__cxa_begin_catch) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) (__cxa_get_globals_fast) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) (_ZSt9terminatev) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) (_ZN10__cxxabiv120__unexpected_handlerE) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opv.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) (_Znaj) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) (_ZN10__cxxabiv119__terminate_handlerE) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opv.o) (_Znwj) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) (_ZTVN10__cxxabiv120__si_class_type_infoE) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) (_ZNKSt9type_info14__is_pointer_pEv) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) (_ZTVSt9bad_alloc) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) (_ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) (_ZdlPvj) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) (__cxa_allocate_exception) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) (_ZNSt9exceptionD2Ev) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) (__cxa_throw) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divsf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__divsf3) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdisf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) (__floatundisf) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_addsubdf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__adddf3) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_muldf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__muldf3) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__divdf3) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_cmpdf2.o) + esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) (__eqdf2) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfsi.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__fixdfsi) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__fixunsdfsi) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatsidf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__floatunsidf) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__extendsfdf2) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_ffsdi2.o) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) (__ffsdi2) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_popcountsi2.o) + esp-idf/bt/libbt.a(ble_hs_id.c.obj) (__popcountsi2) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__divdi3) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_moddi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__moddi3) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_udivdi3.o) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (__udivdi3) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_umoddi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__umoddi3) +esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) (__wrap__Unwind_Resume) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) (phy_change_channel_nomac) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(intc.o) (bt_track_pll_cap) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) (g_phyFuns) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) (ram_txbbgain_to_index) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) (bt_bb_init_cmplx) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) (temprature_sens_read) +/home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) (rtc_pads_muxsel) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_ceil.o) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) (ceil) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_floor.o) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) (floor) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + esp-idf/lwip/liblwip.a(netif.c.obj) (atoi) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + esp-idf/newlib/libnewlib.a(heap.c.obj) (bzero) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + esp-idf/json/libjson.a(cJSON.c.obj) (_ctype_) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (environ) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) (__errno) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) (fclose) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) (ferror) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) (__sflush_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) (fgets) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) (_cleanup_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (fopen) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fprintf) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fputc) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (fputs) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) (fread) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) (_fseek_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) (_fseeko_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) (ftell) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) (_ftello_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) (__sfvwrite_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) (_fwalk) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fwrite) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) (gmtime) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime.o) (gmtime_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (_global_impure_ptr) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-itoa.o) + esp-idf/newlib/libnewlib.a(abort.c.obj) (itoa) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + esp-idf/log/liblog.a(log_freertos.c.obj) (localtime_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) (__smakebuf_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) (memchr) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (memcmp) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) (memcpy) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) (memmove) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + esp-idf/pthread/libpthread.a(pthread.c.obj) (memset) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) (mktime) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) (__month_lengths) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + esp-idf/heap/libheap.a(heap_caps.c.obj) (printf) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) (_putc_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) (putchar) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + esp-idf/heap/libheap.a(heap_caps.c.obj) (puts) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) (qsort) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) (rand) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (_reclaim_reent) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) (__srefill_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-remove.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) (remove) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rename.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) (rename) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setbuf.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) (setbuf) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setbuf.o) (setvbuf) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + esp-idf/log/liblog.a(log_freertos.c.obj) (snprintf) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + esp-idf/bt/libbt.a(ble_uuid.c.obj) (sprintf) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + esp-idf/bt/libbt.a(bt.c.obj) (sscanf) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) (__sread) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcat.o) + esp-idf/freertos/libfreertos.a(port.c.obj) (strcat) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) (strchr) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + esp-idf/log/liblog.a(log.c.obj) (strcmp) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (strcpy) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strcspn) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + esp-idf/main/libmain.a(app_main.c.obj) (strdup) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) (_strdup_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (strerror_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcat.o) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) (strlcat) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) (strlcpy) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + esp-idf/log/liblog.a(log.c.obj) (strlen) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (strncmp) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + esp-idf/bt/libbt.a(os_mempool.c.obj) (strncpy) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) (strndup) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) (_strndup_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) (strnlen) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) (strrchr) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) (strstr) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + esp-idf/json/libjson.a(cJSON.c.obj) (strtod) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) (strtok) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) (__strtok_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) (_strtol_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) (_svfprintf_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) (__ssvfscanf_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) (gettimeofday) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) (__tzcalc_limits) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) (__tz_lock) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) (_tzset_unlocked) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) (_tzset_unlocked_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) (_timezone) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-utoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-itoa.o) (__utoa) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) (_vfprintf_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + esp-idf/log/liblog.a(log.c.obj) (vprintf) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) (vsnprintf) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) (__swbuf_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (__swsetup_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) (div) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) (_dtoa_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) (__sflags) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) (__gethex) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) (__match) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) (_getenv_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) (__gettzinfo) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) (iswspace) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace_l.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) (iswspace_l) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lnumeric.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) (_C_numeric_locale) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) (__global_locale_ptr) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) (_localeconv_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) (_mbrtowc_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) (__ascii_mbtowc) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) (_Balloc) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) (frexp) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_nan.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) (nan) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) (__sccl) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) (nanf) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) (siscanf) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) (_strerror_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) (_strtoll_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) (_strtoul_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) (_strtoull_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) (__chclass) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) (_sungetc_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) (_user_strerror) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) (__submore) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) (__sprint_r) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) (__ascii_wctomb) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) (__env_lock) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfdi.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) (__fixdfdi) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdidf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) (__floatdidf) +/home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +is_set_afh_pending 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) +lmp_tx_stored 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) +phy_rxbb_dc 0x78 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +le_scan_duplicate_option + 0x54 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) +mesh_self_xonseq 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +ctx 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) +phy_chan_gain_table + 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_rxrf_dc 0x84 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +btdm_slp_err 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) +vflash_mem 0x800 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vflash.o) +phy_chan_pwr_index 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +net80211_funcs 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_mesh_manual_nwk 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_mesh_self_map_addr + 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +eb_space 0xc0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +g_cnxMgr 0xf38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +s_ni 0x158 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +g_misc_nvs 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) +DefFreqCalTimer 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +bt_wifi_chan_data 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +s_wifi_nvs 0x500 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +gChmCxt 0xfc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +g_ic 0x2a8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +chip7_sleep_params 0xc4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_chan_target_power + 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +btdm_pwr_state 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) +g_mesh_xon_cfg_qsize + 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_xon 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +set_most_tpw 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +SigInMacISR 0x190 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +freq_i2c_addr 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +mesh_conn_leave 0x2c8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +s_dp 0x21c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +s_fix_rate 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +llm_elt 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) +g_wifi_menuconfig 0x58 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +gScanStruct 0x11c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +g_log_level 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) +g_mesh_cfg_attemps 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +sta_con_timer 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +s_tx_cacheq 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +mesh_xmit_state_mbox + 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +phy_version_str 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +chip7_phy_init_ctrl + 0x50 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +g_mesh_current_parent + 0x54 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_log_mod 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) +g_mesh_self_sta_addr + 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +s_sd 0x5bc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +g_mesh_ext_vote_state + 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +is_rd_rem_ext_feats_sent_cs + 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) +g_mesh_ext_cfg 0xd0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_pm 0x1d0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +ApFreqCalTimer 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +g_mesh_ie 0x3a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +chip7_phy_api_ctrl 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +action_q 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +wpa_crypto_funcs 0x74 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) +adc_ana_conf_org 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +host_ch_class 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) +g_mesh_chain 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +if_ctrl 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + +Discarded input sections + + .literal 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .text 0x0000000000000000 0x6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .debug_line 0x0000000000000000 0x50 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .debug_line_str + 0x0000000000000000 0xbe /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .debug_info 0x0000000000000000 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .debug_abbrev 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .debug_str 0x0000000000000000 0xcc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crti.o + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crti.o + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crti.o + .literal 0x0000000000000000 0x44 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtbegin.o + .fini.literal 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtbegin.o + .init.literal 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtbegin.o + .text 0x0000000000000000 0xa2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtbegin.o + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtbegin.o + .bss 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtbegin.o + .ctors 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtbegin.o + .tm_clone_table + 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtbegin.o + .fini 0x0000000000000000 0x6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtbegin.o + .init 0x0000000000000000 0x6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtbegin.o + .text 0x0000000000000000 0x0 CMakeFiles/wifi_prov_mgr.elf.dir/project_elf_src_esp32.c.obj + .data 0x0000000000000000 0x0 CMakeFiles/wifi_prov_mgr.elf.dir/project_elf_src_esp32.c.obj + .bss 0x0000000000000000 0x0 CMakeFiles/wifi_prov_mgr.elf.dir/project_elf_src_esp32.c.obj + .comment 0x0000000000000000 0x30 CMakeFiles/wifi_prov_mgr.elf.dir/project_elf_src_esp32.c.obj + .text 0x0000000000000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .literal.pthread_list_find_item + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_find + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.get_default_pthread_core + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_delete + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_set_cfg + 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_get_cfg + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_get_default_config + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_create + 0x0000000000000000 0x80 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_join + 0x0000000000000000 0x54 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_detach + 0x0000000000000000 0x30 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_exit + 0x0000000000000000 0x48 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_task_func + 0x0000000000000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_cancel + 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.sched_yield + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_self + 0x0000000000000000 0x2c esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_once + 0x0000000000000000 0x18 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_timedlock + 0x0000000000000000 0x1c esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_trylock + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutexattr_settype + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_attr_init + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_attr_destroy + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .data 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_list_find_item + 0x0000000000000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_get_handle_by_desc + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_get_desc_by_handle + 0x0000000000000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_find + 0x0000000000000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.get_default_pthread_core + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_delete + 0x0000000000000000 0x2b esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_set_cfg + 0x0000000000000000 0x51 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_get_cfg + 0x0000000000000000 0x32 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_get_default_config + 0x0000000000000000 0x20 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_create + 0x0000000000000000 0x1ad esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_join + 0x0000000000000000 0x121 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_detach + 0x0000000000000000 0x8a esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_exit.str1.4 + 0x0000000000000000 0x34 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_exit + 0x0000000000000000 0xb6 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_task_func + 0x0000000000000000 0x32 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_cancel.str1.4 + 0x0000000000000000 0x2b esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_cancel + 0x0000000000000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.sched_yield + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_self.str1.4 + 0x0000000000000000 0x2d esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_self + 0x0000000000000000 0x5b esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_equal + 0x0000000000000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_once.str1.4 + 0x0000000000000000 0x2a esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_once + 0x0000000000000000 0x58 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_timedlock + 0x0000000000000000 0xfe esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_trylock + 0x0000000000000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_init + 0x0000000000000000 0x38 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_destroy + 0x0000000000000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_gettype + 0x0000000000000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_settype + 0x0000000000000000 0x26 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_init + 0x0000000000000000 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_destroy + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_getstacksize + 0x0000000000000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_setstacksize + 0x0000000000000000 0x23 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_getdetachstate + 0x0000000000000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_setdetachstate + 0x0000000000000000 0x25 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__FUNCTION__$2 + 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__FUNCTION__$4 + 0x0000000000000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$7 + 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$8 + 0x0000000000000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_threads_list + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_internal_local_storage_destructor_callback + 0x0000000000000000 0xc esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .data 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_internal_local_storage_destructor_callback + 0x0000000000000000 0x2a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .literal.pthread_rwlock_init + 0x0000000000000000 0x18 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_init_if_static + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.checkrw_lock + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_destroy + 0x0000000000000000 0x18 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_rdlock + 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_tryrdlock + 0x0000000000000000 0xc esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_wrlock + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_trywrlock + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_unlock + 0x0000000000000000 0x24 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .data 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_init + 0x0000000000000000 0x78 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_init_if_static + 0x0000000000000000 0x3c esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.checkrw_lock + 0x0000000000000000 0x21 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_destroy + 0x0000000000000000 0x64 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_rdlock + 0x0000000000000000 0x56 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_tryrdlock + 0x0000000000000000 0x3e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_wrlock + 0x0000000000000000 0x5e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_trywrlock + 0x0000000000000000 0x4e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .rodata.pthread_rwlock_unlock.str1.4 + 0x0000000000000000 0x6e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_unlock + 0x0000000000000000 0x85 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x16 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.sem_destroy + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_init + 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_post + 0x0000000000000000 0xc esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_timedwait + 0x0000000000000000 0x28 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_trywait + 0x0000000000000000 0xc esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_wait + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_getvalue + 0x0000000000000000 0xc esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .data 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_destroy + 0x0000000000000000 0x21 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_init + 0x0000000000000000 0x4c esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_post + 0x0000000000000000 0x39 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_timedwait + 0x0000000000000000 0x100 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_trywait + 0x0000000000000000 0x35 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_wait + 0x0000000000000000 0x24 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_getvalue + 0x0000000000000000 0x34 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.pthread_cond_init + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.s_check_and_init_if_static + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_signal + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_broadcast + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_timedwait + 0x0000000000000000 0x38 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_wait + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_destroy + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .data 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_init + 0x0000000000000000 0x7 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_init + 0x0000000000000000 0x32 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.s_check_and_init_if_static + 0x0000000000000000 0x4a esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_signal + 0x0000000000000000 0x38 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_broadcast + 0x0000000000000000 0x3f esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_timedwait + 0x0000000000000000 0x173 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_wait + 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_destroy + 0x0000000000000000 0x4c esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_include_pthread_cond_var_impl + 0x0000000000000000 0x5 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_frame 0x0000000000000000 0xe8 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_info 0x0000000000000000 0xca6 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_abbrev 0x0000000000000000 0x300 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_loc 0x0000000000000000 0x496 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_aranges + 0x0000000000000000 0x60 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_ranges 0x0000000000000000 0x50 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_line 0x0000000000000000 0xccf esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_str 0x0000000000000000 0x7a0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.__ubsan_maybe_debugbreak + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_default_handler + 0x0000000000000000 0x10 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_type_mismatch + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_type_mismatch_v1 + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_add_overflow + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_sub_overflow + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_mul_overflow + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_negate_overflow + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_divrem_overflow + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_shift_out_of_bounds + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_out_of_bounds + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_missing_return + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_vla_bound_not_positive + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_load_invalid_value + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_nonnull_arg + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_nonnull_return + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_builtin_unreachable + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_pointer_overflow + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_invalid_builtin + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_maybe_debugbreak + 0x0000000000000000 0x11 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__ubsan_default_handler.str1.4 + 0x0000000000000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_default_handler + 0x0000000000000000 0x44 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_type_mismatch + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_type_mismatch_v1 + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_add_overflow + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_sub_overflow + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_mul_overflow + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_negate_overflow + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_divrem_overflow + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_shift_out_of_bounds + 0x0000000000000000 0x1a esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_out_of_bounds + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_missing_return + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_vla_bound_not_positive + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_load_invalid_value + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_nonnull_arg + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_nonnull_return + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_builtin_unreachable + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_pointer_overflow + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_invalid_builtin + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x23 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x1e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x1b esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0x26 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$7 + 0x0000000000000000 0x1e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$8 + 0x0000000000000000 0x1d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$9 + 0x0000000000000000 0x23 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$10 + 0x0000000000000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$11 + 0x0000000000000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$12 + 0x0000000000000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$13 + 0x0000000000000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$14 + 0x0000000000000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$15 + 0x0000000000000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$16 + 0x0000000000000000 0x1d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .literal.esp_get_minimum_free_heap_size + 0x0000000000000000 0x8 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .literal.esp_get_idf_version + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .text.esp_get_minimum_free_heap_size + 0x0000000000000000 0x10 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .rodata.esp_get_idf_version.str1.4 + 0x0000000000000000 0x1a esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .text.esp_get_idf_version + 0x0000000000000000 0x8 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .data 0x0000000000000000 0x18 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .literal.rtc_clk_select_rtc_slow_clk + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text.rtc_clk_select_rtc_slow_clk + 0x0000000000000000 0xe esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .iram1.0.literal + 0x0000000000000000 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.1.literal + 0x0000000000000000 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.4.literal + 0x0000000000000000 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.6.literal + 0x0000000000000000 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.0 0x0000000000000000 0x53 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.1 0x0000000000000000 0x53 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.4 0x0000000000000000 0x53 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.6 0x0000000000000000 0x52 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .literal.esp_startup_start_app_other_cores_default + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text.esp_startup_start_app_other_cores_default + 0x0000000000000000 0xf esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .literal.esp_brownout_disable + 0x0000000000000000 0x10 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .text.esp_brownout_disable + 0x0000000000000000 0x34 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .literal.esp_register_freertos_idle_hook + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_register_freertos_tick_hook + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_idle_hook + 0x0000000000000000 0x10 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_tick_hook_for_cpu + 0x0000000000000000 0x10 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_tick_hook + 0x0000000000000000 0x10 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_register_freertos_idle_hook + 0x0000000000000000 0x15 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_register_freertos_tick_hook + 0x0000000000000000 0x15 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_idle_hook + 0x0000000000000000 0x2e esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_tick_hook_for_cpu + 0x0000000000000000 0x40 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_tick_hook + 0x0000000000000000 0x2e esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .literal.efuse_hal_get_mac + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_get_mac + 0x0000000000000000 0x17 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_blk_version + 0x0000000000000000 0x7 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_get_rated_freq_mhz + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_set_timing + 0x0000000000000000 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_read + 0x0000000000000000 0xc esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_clear_program_registers + 0x0000000000000000 0x44 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_program + 0x0000000000000000 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_is_coding_error_in_block + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_get_rated_freq_mhz + 0x0000000000000000 0x2d esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_set_timing + 0x0000000000000000 0x70 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_read + 0x0000000000000000 0x3e esp-idf/hal/libhal.a(efuse_hal.c.obj) + .rodata.efuse_hal_clear_program_registers.str1.4 + 0x0000000000000000 0x9f esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_clear_program_registers + 0x0000000000000000 0xe5 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_program + 0x0000000000000000 0x44 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_is_coding_error_in_block + 0x0000000000000000 0x57 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x22 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.wdt_hal_deinit + 0x0000000000000000 0xc esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .text.wdt_hal_deinit + 0x0000000000000000 0xcb esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .literal.uart_hal_txfifo_rst + 0x0000000000000000 0xc esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .literal.uart_hal_tx_break + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .literal.uart_hal_read_rxfifo + 0x0000000000000000 0x2c esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text.uart_hal_txfifo_rst + 0x0000000000000000 0x2e esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text.uart_hal_tx_break + 0x0000000000000000 0x5e esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text.uart_hal_read_rxfifo + 0x0000000000000000 0xe9 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x14 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .literal.esp_log_set_vprintf + 0x0000000000000000 0xc esp-idf/log/liblog.a(log.c.obj) + .literal.esp_log_level_get + 0x0000000000000000 0x8 esp-idf/log/liblog.a(log.c.obj) + .text 0x0000000000000000 0x0 esp-idf/log/liblog.a(log.c.obj) + .data 0x0000000000000000 0x0 esp-idf/log/liblog.a(log.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/log/liblog.a(log.c.obj) + .text.esp_log_set_vprintf + 0x0000000000000000 0x1b esp-idf/log/liblog.a(log.c.obj) + .text.esp_log_level_get + 0x0000000000000000 0x15 esp-idf/log/liblog.a(log.c.obj) + .literal.esp_log_system_timestamp + 0x0000000000000000 0x30 esp-idf/log/liblog.a(log_freertos.c.obj) + .text 0x0000000000000000 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .data 0x0000000000000000 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .rodata.esp_log_system_timestamp.str1.4 + 0x0000000000000000 0x15 esp-idf/log/liblog.a(log_freertos.c.obj) + .text.esp_log_system_timestamp + 0x0000000000000000 0xdb esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.bufferLock$1 + 0x0000000000000000 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.buffer$2 0x0000000000000000 0x12 esp-idf/log/liblog.a(log_freertos.c.obj) + .literal.heap_caps_register_failed_alloc_callback + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_malloc_extmem_enable + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.6.literal + 0x0000000000000000 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.8.literal + 0x0000000000000000 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.7.literal + 0x0000000000000000 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_total_size + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_minimum_free_size + 0x0000000000000000 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_print_heap_info + 0x0000000000000000 0x38 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_check_integrity + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_check_integrity_all + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_check_integrity_addr + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_dump + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_dump_all + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_allocated_size + 0x0000000000000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.15.literal + 0x0000000000000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.16.literal + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_aligned_calloc + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_register_failed_alloc_callback + 0x0000000000000000 0x15 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_malloc_extmem_enable + 0x0000000000000000 0xa esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.6 0x0000000000000000 0x8b esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.8 0x0000000000000000 0x8a esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.7 0x0000000000000000 0x8a esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_total_size + 0x0000000000000000 0x2c esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_minimum_free_size + 0x0000000000000000 0x2d esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.heap_caps_print_heap_info.str1.4 + 0x0000000000000000 0xf4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_print_heap_info + 0x0000000000000000 0x7f esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity + 0x0000000000000000 0x57 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity_all + 0x0000000000000000 0x13 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity_addr + 0x0000000000000000 0x23 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_dump + 0x0000000000000000 0x3d esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_dump_all + 0x0000000000000000 0xe esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.heap_caps_get_allocated_size.str1.4 + 0x0000000000000000 0x5 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_allocated_size + 0x0000000000000000 0x2e esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.15 0x0000000000000000 0x98 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.16 0x0000000000000000 0xe esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_aligned_calloc + 0x0000000000000000 0x34 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x1d esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0x19 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$7 + 0x0000000000000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .literal.multi_heap_dump_tlsf + 0x0000000000000000 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_get_first_block + 0x0000000000000000 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_get_next_block + 0x0000000000000000 0x24 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_aligned_alloc_impl_offs + 0x0000000000000000 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_aligned_alloc_impl + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_check + 0x0000000000000000 0x24 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_dump + 0x0000000000000000 0x2c esp-idf/heap/libheap.a(multi_heap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_dump_tlsf.str1.4 + 0x0000000000000000 0x32 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_dump_tlsf + 0x0000000000000000 0x1e esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_block_owner + 0x0000000000000000 0x7 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_block_address_impl + 0x0000000000000000 0x7 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_first_block + 0x0000000000000000 0x25 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_get_next_block.str1.4 + 0x0000000000000000 0x4a esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_next_block + 0x0000000000000000 0x56 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_is_free + 0x0000000000000000 0xa esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_aligned_alloc_impl_offs + 0x0000000000000000 0x72 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_aligned_alloc_impl + 0x0000000000000000 0x15 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_check + 0x0000000000000000 0x52 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_dump.str1.4 + 0x0000000000000000 0x1c esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_dump + 0x0000000000000000 0x4a esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_minimum_free_size_impl + 0x0000000000000000 0xe esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x11 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0xb esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x1a esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x1b esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.tlsf_check + 0x0000000000000000 0x18 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_check_pool + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_remove_pool + 0x0000000000000000 0x44 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_memalign_offs + 0x0000000000000000 0xd8 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_memalign + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(tlsf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.integrity_walker + 0x0000000000000000 0x2e esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_check + 0x0000000000000000 0x127 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_check_pool + 0x0000000000000000 0x1a esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_align_size + 0x0000000000000000 0x7 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_block_size_min + 0x0000000000000000 0x7 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_remove_pool + 0x0000000000000000 0x142 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_destroy + 0x0000000000000000 0x5 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_memalign_offs.str1.4 + 0x0000000000000000 0x6b esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_memalign_offs + 0x0000000000000000 0x6b2 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_memalign + 0x0000000000000000 0x15 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$7 + 0x0000000000000000 0x13 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$13 + 0x0000000000000000 0x9 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$16 + 0x0000000000000000 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$17 + 0x0000000000000000 0xa esp-idf/heap/libheap.a(tlsf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .rodata.soc_memory_type_count + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(memory_layout.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .literal.esp_cpu_reset + 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .literal.esp_cpu_set_watchpoint + 0x0000000000000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_reset + 0x0000000000000000 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_clear_breakpoint + 0x0000000000000000 0x2d esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_set_watchpoint + 0x0000000000000000 0x71 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_clear_watchpoint + 0x0000000000000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .literal.esp_clk_rtc_time + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_clk_private_lock + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_clk_private_unlock + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_rtc_time + 0x0000000000000000 0xf esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_private_lock + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_private_unlock + 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_intr_mark_shared + 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.esp_intr_reserve + 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.1.literal + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.6.literal + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.7.literal + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.esp_intr_free + 0x0000000000000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.esp_intr_free_cb + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.esp_intr_dump + 0x0000000000000000 0x94 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_mark_shared + 0x0000000000000000 0x61 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_reserve + 0x0000000000000000 0x51 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.1 0x0000000000000000 0x91 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_get_intno + 0x0000000000000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.6 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.7 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.esp_intr_free.str1.4 + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_free + 0x0000000000000000 0x122 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_free_cb + 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.esp_intr_dump.str1.4 + 0x0000000000000000 0x123 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_dump + 0x0000000000000000 0x1ce esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.rtc_isr_deregister + 0x0000000000000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .text.rtc_isr_deregister + 0x0000000000000000 0x71 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .literal.esp_sleep_config_gpio_isolate + 0x0000000000000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .literal.esp_sleep_enable_gpio_switch + 0x0000000000000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .iram1.0.literal + 0x0000000000000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.esp_sleep_config_gpio_isolate.str1.4 + 0x0000000000000000 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .text.esp_sleep_config_gpio_isolate + 0x0000000000000000 0x83 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.esp_sleep_enable_gpio_switch.str1.4 + 0x0000000000000000 0x5b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .text.esp_sleep_enable_gpio_switch + 0x0000000000000000 0x85 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x1a5 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .iram1.0 0x0000000000000000 0x1fc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .literal.s_register_config_driver + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .literal.spi_timing_get_flash_timing_param + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.s_register_config_driver + 0x0000000000000000 0x43 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_flash_tuning + 0x0000000000000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_psram_tuning + 0x0000000000000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_enter_low_speed_mode + 0x0000000000000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_enter_high_speed_mode + 0x0000000000000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.spi_timing_is_tuned + 0x0000000000000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.spi_timing_get_flash_timing_param + 0x0000000000000000 0x9 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_set_pin_drive_strength + 0x0000000000000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .bss.s_tuning_cfg_drv + 0x0000000000000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .literal.rtc_clk_32k_bootstrap + 0x0000000000000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_enabled + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_8m_enabled + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apll_enable + 0x0000000000000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apll_coeff_set + 0x0000000000000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_fast_src_get + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apll_coeff_calc + 0x0000000000000000 0xc4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_xtal_freq_update + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_xtal + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_config_fast + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apb_freq_get + 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_clk8m_enable + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_clk8m_disable + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_8m_enabled + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_bootstrap + 0x0000000000000000 0x202 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enabled + 0x0000000000000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_8m_enabled + 0x0000000000000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apll_enable + 0x0000000000000000 0x8e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apll_coeff_set + 0x0000000000000000 0xe5 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_fast_src_get + 0x0000000000000000 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apll_coeff_calc + 0x0000000000000000 0x228 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_xtal_freq_update + 0x0000000000000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_xtal + 0x0000000000000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_config_fast + 0x0000000000000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apb_freq_get + 0x0000000000000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_clk8m_enable + 0x0000000000000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_clk8m_disable + 0x0000000000000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_8m_enabled + 0x0000000000000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_vddsdio_get_config + 0x0000000000000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_vddsdio_set_config + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.rtc_vddsdio_get_config + 0x0000000000000000 0xef esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.rtc_vddsdio_set_config + 0x0000000000000000 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_clk_cal_ratio + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_time_us_to_slowclk + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_cal_ratio + 0x0000000000000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_time_us_to_slowclk + 0x0000000000000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_time_slowclk_to_us + 0x0000000000000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .literal.sar_periph_ctrl_power_enable + 0x0000000000000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_power_disable + 0x0000000000000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_oneshot_power_acquire + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_oneshot_power_release + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_continuous_power_acquire + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_continuous_power_release + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_power_enable + 0x0000000000000000 0x5b esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_power_disable + 0x0000000000000000 0x5f esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_oneshot_power_acquire + 0x0000000000000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_oneshot_power_release + 0x0000000000000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_continuous_power_acquire + 0x0000000000000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_continuous_power_release + 0x0000000000000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .iram1.1.literal + 0x0000000000000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.4.literal + 0x0000000000000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.5.literal + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.6.literal + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .literal.regi2c_saradc_enable + 0x0000000000000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .literal.regi2c_saradc_disable + 0x0000000000000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.1 0x0000000000000000 0x5f esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.4 0x0000000000000000 0x6b esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.5 0x0000000000000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.6 0x0000000000000000 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text.regi2c_saradc_enable + 0x0000000000000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .rodata.regi2c_saradc_disable.str1.4 + 0x0000000000000000 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text.regi2c_saradc_disable + 0x0000000000000000 0x41 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .bss.s_i2c_saradc_enable_cnt + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .dram1.0 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .literal.xQueueGenericGetStaticBuffers + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueGetMutexHolderFromISR + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueCreateCountingSemaphoreStatic + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueuePeek + 0x0000000000000000 0x54 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueuePeekFromISR + 0x0000000000000000 0x38 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.uxQueueSpacesAvailable + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueIsQueueFullFromISR + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.vQueueWaitForMessageRestricted + 0x0000000000000000 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueCreateSet + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueAddToSet + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueRemoveFromSet + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueSelectFromSet + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueSelectFromSetFromISR + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGenericGetStaticBuffers.str1.4 + 0x0000000000000000 0xf esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueGenericGetStaticBuffers + 0x0000000000000000 0x44 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGetMutexHolderFromISR.str1.4 + 0x0000000000000000 0xb esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueGetMutexHolderFromISR + 0x0000000000000000 0x25 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateCountingSemaphoreStatic + 0x0000000000000000 0x4f esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueuePeek + 0x0000000000000000 0x12c esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueuePeekFromISR.str1.4 + 0x0000000000000000 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueuePeekFromISR + 0x0000000000000000 0x94 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueSpacesAvailable + 0x0000000000000000 0x3a esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueIsQueueFullFromISR + 0x0000000000000000 0x2c esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.vQueueWaitForMessageRestricted + 0x0000000000000000 0x2e esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateSet + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueAddToSet + 0x0000000000000000 0x36 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueRemoveFromSet + 0x0000000000000000 0x39 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueSelectFromSet + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueSelectFromSetFromISR + 0x0000000000000000 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$8 + 0x0000000000000000 0xb esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$16 + 0x0000000000000000 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$19 + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$21 + 0x0000000000000000 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.prvTaskIsTaskSuspended + 0x0000000000000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.pxGetNextTaskList + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.eTaskGetState + 0x0000000000000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskResume + 0x0000000000000000 0x40 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskResumeFromISR + 0x0000000000000000 0x4c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskEndScheduler + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetNumberOfTasks + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetHandle + 0x0000000000000000 0x4c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetIdleTaskHandle + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskAbortDelay + 0x0000000000000000 0x48 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskPlaceOnEventListRestricted + 0x0000000000000000 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskSetTimeOutState + 0x0000000000000000 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskMissedYield + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskPriorityGetFromISR + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetStaticBuffers + 0x0000000000000000 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskSetThreadLocalStoragePointer + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetStackHighWaterMark2 + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetStackHighWaterMark + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.pxTaskGetStackStart + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskDelayUntil + 0x0000000000000000 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskDelayUntil + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskCatchUpTicks + 0x0000000000000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.ulTaskNotifyTake + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskNotifyWait + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGenericNotifyFromISR + 0x0000000000000000 0x6c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGenericNotifyStateClear + 0x0000000000000000 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.ulTaskGenericNotifyValueClear + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.pxTaskGetNext + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetSnapshotAll + 0x0000000000000000 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvSearchForNameWithinSingleList + 0x0000000000000000 0x60 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskCheckFreeStackSpace + 0x0000000000000000 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvTaskIsTaskSuspended.str1.4 + 0x0000000000000000 0x6 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskIsTaskSuspended + 0x0000000000000000 0x49 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pxGetNextTaskList + 0x0000000000000000 0x84 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.eTaskGetState + 0x0000000000000000 0xce esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskResume.str1.4 + 0x0000000000000000 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskResume + 0x0000000000000000 0xa7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskResumeFromISR + 0x0000000000000000 0xf5 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskEndScheduler + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetNumberOfTasks + 0x0000000000000000 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGetHandle.str1.4 + 0x0000000000000000 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetHandle + 0x0000000000000000 0xa7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGetIdleTaskHandle.str1.4 + 0x0000000000000000 0x37 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetIdleTaskHandle + 0x0000000000000000 0x35 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskAbortDelay + 0x0000000000000000 0xce esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskPlaceOnEventListRestricted + 0x0000000000000000 0x5b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetTimeOutState + 0x0000000000000000 0x43 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskMissedYield + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskPriorityGetFromISR + 0x0000000000000000 0x26 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGetStaticBuffers.str1.4 + 0x0000000000000000 0x3d esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetStaticBuffers + 0x0000000000000000 0x60 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetThreadLocalStoragePointer + 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetStackHighWaterMark2 + 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetStackHighWaterMark + 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pxTaskGetStackStart + 0x0000000000000000 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskDelayUntil + 0x0000000000000000 0xb3 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskDelayUntil + 0x0000000000000000 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskCatchUpTicks + 0x0000000000000000 0x52 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.ulTaskNotifyTake + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskNotifyWait + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotifyFromISR + 0x0000000000000000 0x1d7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGenericNotifyStateClear.str1.4 + 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotifyStateClear + 0x0000000000000000 0x5e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.ulTaskGenericNotifyValueClear + 0x0000000000000000 0x42 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pxTaskGetNext + 0x0000000000000000 0x55 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetSnapshotAll + 0x0000000000000000 0x63 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$11 + 0x0000000000000000 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$14 + 0x0000000000000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$21 + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$22 + 0x0000000000000000 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$24 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$25 + 0x0000000000000000 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$26 + 0x0000000000000000 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$30 + 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$31 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$32 + 0x0000000000000000 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$35 + 0x0000000000000000 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$37 + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.non_ready_task_lists + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vPortEndScheduler + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.vPortAssertIfInISR + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.xPortEnterCriticalTimeoutCompliance + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.vPortExitCriticalCompliance + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.vPortSetStackWatchpoint + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortEndScheduler + 0x0000000000000000 0x9 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vPortAssertIfInISR.str1.4 + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortAssertIfInISR + 0x0000000000000000 0x1f esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.xPortEnterCriticalTimeoutCompliance.str1.4 + 0x0000000000000000 0x33 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.xPortEnterCriticalTimeoutCompliance + 0x0000000000000000 0x28 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortExitCriticalCompliance + 0x0000000000000000 0x27 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.xPortGetTickRateHz + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortSetStackWatchpoint + 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(port.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .literal.xt_clock_freq + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .text.xt_clock_freq + 0x0000000000000000 0xd esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .literal.xPortGetFreeHeapSize + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .literal.xPortGetMinimumEverFreeHeapSize + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .text.xPortGetFreeHeapSize + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .text.xPortGetMinimumEverFreeHeapSize + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .literal.vApplicationGetTimerTaskMemory + 0x0000000000000000 0x24 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .text.vApplicationGetTimerTaskMemory + 0x0000000000000000 0x4b esp-idf/freertos/libfreertos.a(port_common.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1f esp-idf/freertos/libfreertos.a(port_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) + .literal.__assert + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(assert.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) + .text.__assert + 0x0000000000000000 0x11 esp-idf/newlib/libnewlib.a(assert.c.obj) + .literal.memalign + 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(heap.c.obj) + .literal.posix_memalign + 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.memalign + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.posix_memalign + 0x0000000000000000 0x29 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_trim + 0x0000000000000000 0x7 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_usable_size + 0x0000000000000000 0x7 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_stats + 0x0000000000000000 0x5 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.mallopt 0x0000000000000000 0x7 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.mallinfo + 0x0000000000000000 0x2f esp-idf/newlib/libnewlib.a(heap.c.obj) + .iram1.12.literal + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.14.literal + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.17.literal + 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.19.literal + 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.20.literal + 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.21.literal + 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.12 0x0000000000000000 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.14 0x0000000000000000 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.17 0x0000000000000000 0x17 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.19 0x0000000000000000 0x19 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.20 0x0000000000000000 0x19 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.21 0x0000000000000000 0x17 esp-idf/newlib/libnewlib.a(locks.c.obj) + .literal.pthread_condattr_setclock + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .rodata.pthread_condattr_setclock.str1.4 + 0x0000000000000000 0x43 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text.pthread_condattr_setclock + 0x0000000000000000 0x22 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text.pthread_sigmask + 0x0000000000000000 0x7 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text.sigfillset + 0x0000000000000000 0xd esp-idf/newlib/libnewlib.a(pthread.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1a esp-idf/newlib/libnewlib.a(pthread.c.obj) + .literal.esp_reent_cleanup + 0x0000000000000000 0x28 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .text.esp_reent_cleanup + 0x0000000000000000 0xd5 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .literal._write_r_console + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal._read_r_console + 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal._fstat_r_console + 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal._fsync_console + 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal.system + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal.fcntl + 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text._write_r_console + 0x0000000000000000 0x2f esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text._read_r_console + 0x0000000000000000 0x36 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text._fstat_r_console + 0x0000000000000000 0x26 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text._fsync_console + 0x0000000000000000 0x23 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text.system 0x0000000000000000 0x11 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text.fcntl 0x0000000000000000 0x3c esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal.adjtime + 0x0000000000000000 0x3c esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.usleep + 0x0000000000000000 0x10 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.sleep + 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.clock_settime + 0x0000000000000000 0x10 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.clock_gettime + 0x0000000000000000 0x1c esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.clock_getres + 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.adjtime 0x0000000000000000 0xf5 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.usleep 0x0000000000000000 0x2c esp-idf/newlib/libnewlib.a(time.c.obj) + .text.sleep 0x0000000000000000 0x13 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_settime + 0x0000000000000000 0x52 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_gettime + 0x0000000000000000 0x91 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_getres + 0x0000000000000000 0x27 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.esp_time_impl_get_time + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .text.esp_time_impl_get_time + 0x0000000000000000 0xf esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .literal._ZL20signal_waiting_tasksv + 0x0000000000000000 0xc esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal._ZL18wait_for_guard_objP7guard_t + 0x0000000000000000 0x34 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal._ZL19static_init_preparev + 0x0000000000000000 0x24 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.__cxa_guard_acquire + 0x0000000000000000 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.__cxa_guard_release + 0x0000000000000000 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.__cxa_guard_abort + 0x0000000000000000 0x38 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL20signal_waiting_tasksv + 0x0000000000000000 0x26 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZL18wait_for_guard_objP7guard_t.str1.4 + 0x0000000000000000 0x50 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL18wait_for_guard_objP7guard_t + 0x0000000000000000 0xc1 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL19static_init_preparev + 0x0000000000000000 0x4a esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_acquire.str1.4 + 0x0000000000000000 0x2e esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_acquire + 0x0000000000000000 0xa7 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_release.str1.4 + 0x0000000000000000 0x6f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_release + 0x0000000000000000 0xa3 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_abort.str1.4 + 0x0000000000000000 0xa7 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_abort + 0x0000000000000000 0xc2 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL31s_static_init_max_waiting_count + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL27s_static_init_waiting_count + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .data._ZL15s_init_spinlock + 0x0000000000000000 0x8 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL22s_static_init_wait_sem + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL19s_static_init_mutex + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.print_timer_info + 0x0000000000000000 0xc esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.0.literal + 0x0000000000000000 0x2c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .literal.esp_timer_deinit + 0x0000000000000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .literal.esp_timer_dump + 0x0000000000000000 0x40 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.11.literal + 0x0000000000000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.12.literal + 0x0000000000000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.13.literal + 0x0000000000000000 0xc esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.print_timer_info.str1.4 + 0x0000000000000000 0x1f esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.print_timer_info + 0x0000000000000000 0x33 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.0 0x0000000000000000 0xf3 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_deinit + 0x0000000000000000 0x3d esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.esp_timer_dump.str1.4 + 0x0000000000000000 0x3d esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_dump + 0x0000000000000000 0xcd esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.11 0x0000000000000000 0x3f esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.12 0x0000000000000000 0x50 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.13 0x0000000000000000 0x45 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .iram1.1 0x0000000000000000 0x8 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .literal.esp_timer_impl_lock + 0x0000000000000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .literal.esp_timer_impl_unlock + 0x0000000000000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .iram1.0.literal + 0x0000000000000000 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_lock + 0x0000000000000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_unlock + 0x0000000000000000 0xe esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .iram1.0 0x0000000000000000 0x12 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .literal.esp_timer_impl_set + 0x0000000000000000 0x18 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_advance + 0x0000000000000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_deinit + 0x0000000000000000 0x18 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_get_alarm_reg + 0x0000000000000000 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_set + 0x0000000000000000 0x3e esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_advance + 0x0000000000000000 0x1e esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_deinit + 0x0000000000000000 0x54 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_get_alarm_reg + 0x0000000000000000 0x57 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .iram1.0.literal + 0x0000000000000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .iram1.1.literal + 0x0000000000000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .literal.phy_set_pwdet_power + 0x0000000000000000 0xc esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .literal.phy_set_tsens_power + 0x0000000000000000 0xc esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .literal.phy_get_tsens_value + 0x0000000000000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .iram1.0 0x0000000000000000 0xb esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .iram1.1 0x0000000000000000 0xb esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .text.phy_set_pwdet_power + 0x0000000000000000 0x28 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .text.phy_set_tsens_power + 0x0000000000000000 0x28 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .text.phy_get_tsens_value + 0x0000000000000000 0x10 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .bss.s_wifi_tsens_xpd_flag + 0x0000000000000000 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .bss.s_wifi_pwdet_xpd_flag + 0x0000000000000000 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .literal.set_global_fd_sets + 0x0000000000000000 0x10 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register_with_id + 0x0000000000000000 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_unregister_with_id + 0x0000000000000000 0x18 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_unregister + 0x0000000000000000 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register_fd_with_local_fd + 0x0000000000000000 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register_fd + 0x0000000000000000 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_unregister_fd + 0x0000000000000000 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.call_end_selects + 0x0000000000000000 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_pread + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_pwrite + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_fcntl_r + 0x0000000000000000 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_ioctl + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_fsync + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_utime + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_opendir + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_readdir + 0x0000000000000000 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_readdir_r + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_telldir + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_seekdir + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_rewinddir + 0x0000000000000000 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_closedir + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_mkdir + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_rmdir + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_access + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_truncate + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_ftruncate + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_select + 0x0000000000000000 0x90 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcgetattr + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcsetattr + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcdrain + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcflush + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcflow + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcgetsid + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcsendbreak + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .text 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .data 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_safe_fd_isset + 0x0000000000000000 0x42 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.set_global_fd_sets + 0x0000000000000000 0xf8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_with_id + 0x0000000000000000 0x22 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister_with_id + 0x0000000000000000 0x79 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister + 0x0000000000000000 0x4f esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fd_with_local_fd + 0x0000000000000000 0x99 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fd + 0x0000000000000000 0x15 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister_fd + 0x0000000000000000 0x85 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.call_end_selects + 0x0000000000000000 0x31 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_pread + 0x0000000000000000 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_pwrite + 0x0000000000000000 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_fcntl_r + 0x0000000000000000 0x72 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_ioctl + 0x0000000000000000 0x99 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_fsync + 0x0000000000000000 0x73 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_utime + 0x0000000000000000 0x57 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_opendir + 0x0000000000000000 0x5c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_readdir + 0x0000000000000000 0x49 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_readdir_r + 0x0000000000000000 0x56 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_telldir + 0x0000000000000000 0x4f esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_seekdir + 0x0000000000000000 0x4e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_rewinddir + 0x0000000000000000 0xf esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_closedir + 0x0000000000000000 0x4e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_mkdir + 0x0000000000000000 0x57 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_rmdir + 0x0000000000000000 0x54 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_access + 0x0000000000000000 0x57 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_truncate + 0x0000000000000000 0x57 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_ftruncate + 0x0000000000000000 0x78 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_select + 0x0000000000000000 0x440 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcgetattr + 0x0000000000000000 0x78 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcsetattr + 0x0000000000000000 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcdrain 0x0000000000000000 0x73 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcflush 0x0000000000000000 0x78 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcflow 0x0000000000000000 0x78 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcgetsid + 0x0000000000000000 0x73 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcsendbreak + 0x0000000000000000 0x75 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .data 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .literal.uart_rx_char_via_driver + 0x0000000000000000 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.uart_tx_char_via_driver + 0x0000000000000000 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_register + 0x0000000000000000 0x1c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_port_set_rx_line_endings + 0x0000000000000000 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_port_set_tx_line_endings + 0x0000000000000000 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_set_rx_line_endings + 0x0000000000000000 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_set_tx_line_endings + 0x0000000000000000 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_use_nonblocking + 0x0000000000000000 0x1c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_use_driver + 0x0000000000000000 0x1c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .data 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_rx_char_via_driver + 0x0000000000000000 0x31 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_tx_char_via_driver + 0x0000000000000000 0x14 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.esp_vfs_dev_uart_register.str1.4 + 0x0000000000000000 0x57 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_register + 0x0000000000000000 0x27 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_port_set_rx_line_endings + 0x0000000000000000 0x23 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_port_set_tx_line_endings + 0x0000000000000000 0x23 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_set_rx_line_endings + 0x0000000000000000 0x19 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_set_tx_line_endings + 0x0000000000000000 0x19 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_use_nonblocking + 0x0000000000000000 0x3c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_use_driver + 0x0000000000000000 0x3c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1a esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(hli_vectors.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(hli_vectors.S.obj) + .literal.hli_queue_shutdown + 0x0000000000000000 0x18 esp-idf/bt/libbt.a(hli_api.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(hli_api.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(hli_api.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(hli_api.c.obj) + .text.hli_queue_shutdown + 0x0000000000000000 0x2f esp-idf/bt/libbt.a(hli_api.c.obj) + .literal.nvs_sec_provider_deregister + 0x0000000000000000 0x8 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .text.nvs_sec_provider_deregister + 0x0000000000000000 0x22 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .text 0x0000000000000000 0x0 esp-idf/main/libmain.a(app_main.c.obj) + .data 0x0000000000000000 0x0 esp-idf/main/libmain.a(app_main.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/main/libmain.a(app_main.c.obj) + .rodata.WIFI_CONNECTED_EVENT + 0x0000000000000000 0x4 esp-idf/main/libmain.a(app_main.c.obj) + .literal.wifi_prov_mgr_set_app_info + 0x0000000000000000 0x60 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .literal.wifi_prov_mgr_endpoint_unregister + 0x0000000000000000 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .literal.wifi_prov_mgr_disable_auto_stop + 0x0000000000000000 0x38 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .literal.wifi_prov_mgr_wait + 0x0000000000000000 0x44 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .literal.wifi_prov_mgr_reset_provisioning + 0x0000000000000000 0x14 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .text.wifi_prov_mgr_set_app_info + 0x0000000000000000 0x122 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .text.wifi_prov_mgr_endpoint_unregister + 0x0000000000000000 0x87 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .text.wifi_prov_mgr_disable_auto_stop + 0x0000000000000000 0x93 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .text.wifi_prov_mgr_wait + 0x0000000000000000 0xb3 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .rodata.wifi_prov_mgr_reset_provisioning.str1.4 + 0x0000000000000000 0x39 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .text.wifi_prov_mgr_reset_provisioning + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .rodata.__func__$8 + 0x0000000000000000 0x13 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .rodata.__func__$19 + 0x0000000000000000 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .rodata.__func__$20 + 0x0000000000000000 0x22 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .rodata.__func__$23 + 0x0000000000000000 0x1b esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .rodata.WIFI_PROV_MGR_PVT_EVENT + 0x0000000000000000 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + .literal.wifi_prov_scheme_ble_set_mfg_data + 0x0000000000000000 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + .literal.wifi_prov_scheme_ble_event_cb_free_bt + 0x0000000000000000 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + .literal.wifi_prov_scheme_ble_event_cb_free_ble + 0x0000000000000000 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + .rodata.wifi_prov_scheme_ble_set_mfg_data.str1.4 + 0x0000000000000000 0x3d esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + .text.wifi_prov_scheme_ble_set_mfg_data + 0x0000000000000000 0x62 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + .text.wifi_prov_scheme_ble_event_cb_free_bt + 0x0000000000000000 0x4a esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + .rodata.wifi_prov_scheme_ble_event_cb_free_ble.str1.4 + 0x0000000000000000 0x64 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + .text.wifi_prov_scheme_ble_event_cb_free_ble + 0x0000000000000000 0x4a esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + .literal.cmd_get_status__get_packed_size + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.cmd_get_status__pack + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.cmd_get_status__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.cmd_get_status__unpack + 0x0000000000000000 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.cmd_get_status__free_unpacked + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.resp_get_status__get_packed_size + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.resp_get_status__pack + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.resp_get_status__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.resp_get_status__unpack + 0x0000000000000000 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.resp_get_status__free_unpacked + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.cmd_set_config__get_packed_size + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.cmd_set_config__pack + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.cmd_set_config__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.cmd_set_config__unpack + 0x0000000000000000 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.cmd_set_config__free_unpacked + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.resp_set_config__get_packed_size + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.resp_set_config__pack + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.resp_set_config__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.resp_set_config__unpack + 0x0000000000000000 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.resp_set_config__free_unpacked + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.cmd_apply_config__get_packed_size + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.cmd_apply_config__pack + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.cmd_apply_config__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.cmd_apply_config__unpack + 0x0000000000000000 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.cmd_apply_config__free_unpacked + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.resp_apply_config__get_packed_size + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.resp_apply_config__pack + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.resp_apply_config__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.resp_apply_config__unpack + 0x0000000000000000 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.resp_apply_config__free_unpacked + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.wi_fi_config_payload__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.cmd_get_status__get_packed_size + 0x0000000000000000 0x28 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.cmd_get_status__pack + 0x0000000000000000 0x2a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.cmd_get_status__pack_to_buffer + 0x0000000000000000 0x2a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.cmd_get_status__unpack + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.cmd_get_status__free_unpacked + 0x0000000000000000 0x2a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.resp_get_status__get_packed_size.str1.4 + 0x0000000000000000 0x39 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.resp_get_status__get_packed_size + 0x0000000000000000 0x28 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.resp_get_status__pack + 0x0000000000000000 0x2a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.resp_get_status__pack_to_buffer + 0x0000000000000000 0x2a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.resp_get_status__unpack + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.resp_get_status__free_unpacked + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.cmd_set_config__get_packed_size.str1.4 + 0x0000000000000000 0x38 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.cmd_set_config__get_packed_size + 0x0000000000000000 0x29 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.cmd_set_config__pack + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.cmd_set_config__pack_to_buffer + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.cmd_set_config__unpack + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.cmd_set_config__free_unpacked + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.resp_set_config__get_packed_size.str1.4 + 0x0000000000000000 0x39 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.resp_set_config__get_packed_size + 0x0000000000000000 0x29 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.resp_set_config__pack + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.resp_set_config__pack_to_buffer + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.resp_set_config__unpack + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.resp_set_config__free_unpacked + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.cmd_apply_config__get_packed_size.str1.4 + 0x0000000000000000 0x3a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.cmd_apply_config__get_packed_size + 0x0000000000000000 0x29 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.cmd_apply_config__pack + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.cmd_apply_config__pack_to_buffer + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.cmd_apply_config__unpack + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.cmd_apply_config__free_unpacked + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.resp_apply_config__get_packed_size.str1.4 + 0x0000000000000000 0x3b esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.resp_apply_config__get_packed_size + 0x0000000000000000 0x29 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.resp_apply_config__pack + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.resp_apply_config__pack_to_buffer + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.resp_apply_config__unpack + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.resp_apply_config__free_unpacked + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .text.wi_fi_config_payload__pack_to_buffer + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x25 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x21 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x22 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$7 + 0x0000000000000000 0x23 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$8 + 0x0000000000000000 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$9 + 0x0000000000000000 0x21 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$10 + 0x0000000000000000 0x17 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$11 + 0x0000000000000000 0x22 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$12 + 0x0000000000000000 0x1f esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$13 + 0x0000000000000000 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$14 + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$15 + 0x0000000000000000 0x21 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$16 + 0x0000000000000000 0x1e esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$17 + 0x0000000000000000 0x1f esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$18 + 0x0000000000000000 0x15 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$19 + 0x0000000000000000 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$20 + 0x0000000000000000 0x1f esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$21 + 0x0000000000000000 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$22 + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$23 + 0x0000000000000000 0x21 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$24 + 0x0000000000000000 0x1e esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$25 + 0x0000000000000000 0x1f esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$26 + 0x0000000000000000 0x15 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$27 + 0x0000000000000000 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.cmd_scan_start__get_packed_size + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.cmd_scan_start__pack + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.cmd_scan_start__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.cmd_scan_start__unpack + 0x0000000000000000 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.cmd_scan_start__free_unpacked + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.resp_scan_start__get_packed_size + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.resp_scan_start__pack + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.resp_scan_start__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.resp_scan_start__unpack + 0x0000000000000000 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.resp_scan_start__free_unpacked + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.cmd_scan_status__get_packed_size + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.cmd_scan_status__pack + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.cmd_scan_status__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.cmd_scan_status__unpack + 0x0000000000000000 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.cmd_scan_status__free_unpacked + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.resp_scan_status__get_packed_size + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.resp_scan_status__pack + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.resp_scan_status__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.resp_scan_status__unpack + 0x0000000000000000 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.resp_scan_status__free_unpacked + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.cmd_scan_result__get_packed_size + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.cmd_scan_result__pack + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.cmd_scan_result__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.cmd_scan_result__unpack + 0x0000000000000000 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.cmd_scan_result__free_unpacked + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.wi_fi_scan_result__get_packed_size + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.wi_fi_scan_result__pack + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.wi_fi_scan_result__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.wi_fi_scan_result__unpack + 0x0000000000000000 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.wi_fi_scan_result__free_unpacked + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.resp_scan_result__get_packed_size + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.resp_scan_result__pack + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.resp_scan_result__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.resp_scan_result__unpack + 0x0000000000000000 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.resp_scan_result__free_unpacked + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.wi_fi_scan_payload__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.cmd_scan_start__get_packed_size + 0x0000000000000000 0x28 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.cmd_scan_start__pack + 0x0000000000000000 0x2a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.cmd_scan_start__pack_to_buffer + 0x0000000000000000 0x2a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.cmd_scan_start__unpack + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.cmd_scan_start__free_unpacked + 0x0000000000000000 0x2a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.resp_scan_start__get_packed_size.str1.4 + 0x0000000000000000 0x39 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.resp_scan_start__get_packed_size + 0x0000000000000000 0x28 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.resp_scan_start__pack + 0x0000000000000000 0x2a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.resp_scan_start__pack_to_buffer + 0x0000000000000000 0x2a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.resp_scan_start__unpack + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.resp_scan_start__free_unpacked + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.cmd_scan_status__get_packed_size.str1.4 + 0x0000000000000000 0x39 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.cmd_scan_status__get_packed_size + 0x0000000000000000 0x29 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.cmd_scan_status__pack + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.cmd_scan_status__pack_to_buffer + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.cmd_scan_status__unpack + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.cmd_scan_status__free_unpacked + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.resp_scan_status__get_packed_size.str1.4 + 0x0000000000000000 0x3a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.resp_scan_status__get_packed_size + 0x0000000000000000 0x29 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.resp_scan_status__pack + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.resp_scan_status__pack_to_buffer + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.resp_scan_status__unpack + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.resp_scan_status__free_unpacked + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.cmd_scan_result__get_packed_size.str1.4 + 0x0000000000000000 0x39 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.cmd_scan_result__get_packed_size + 0x0000000000000000 0x29 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.cmd_scan_result__pack + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.cmd_scan_result__pack_to_buffer + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.cmd_scan_result__unpack + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.cmd_scan_result__free_unpacked + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.wi_fi_scan_result__get_packed_size.str1.4 + 0x0000000000000000 0x3b esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.wi_fi_scan_result__get_packed_size + 0x0000000000000000 0x29 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.wi_fi_scan_result__pack + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.wi_fi_scan_result__pack_to_buffer + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.wi_fi_scan_result__unpack + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.wi_fi_scan_result__free_unpacked + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.resp_scan_result__get_packed_size.str1.4 + 0x0000000000000000 0x3a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.resp_scan_result__get_packed_size + 0x0000000000000000 0x29 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.resp_scan_result__pack + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.resp_scan_result__pack_to_buffer + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.resp_scan_result__unpack + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.resp_scan_result__free_unpacked + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .text.wi_fi_scan_payload__pack_to_buffer + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x23 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x21 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0x17 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$7 + 0x0000000000000000 0x22 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$8 + 0x0000000000000000 0x21 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$9 + 0x0000000000000000 0x22 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$10 + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$11 + 0x0000000000000000 0x23 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$12 + 0x0000000000000000 0x1f esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$13 + 0x0000000000000000 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$14 + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$15 + 0x0000000000000000 0x21 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$16 + 0x0000000000000000 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$17 + 0x0000000000000000 0x21 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$18 + 0x0000000000000000 0x17 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$19 + 0x0000000000000000 0x22 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$20 + 0x0000000000000000 0x1f esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$21 + 0x0000000000000000 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$22 + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$23 + 0x0000000000000000 0x21 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$24 + 0x0000000000000000 0x1f esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$25 + 0x0000000000000000 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$26 + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$27 + 0x0000000000000000 0x21 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$28 + 0x0000000000000000 0x1e esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$29 + 0x0000000000000000 0x1f esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$30 + 0x0000000000000000 0x15 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$31 + 0x0000000000000000 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.cmd_ctrl_reset__get_packed_size + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.cmd_ctrl_reset__pack + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.cmd_ctrl_reset__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.cmd_ctrl_reset__unpack + 0x0000000000000000 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.cmd_ctrl_reset__free_unpacked + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.resp_ctrl_reset__get_packed_size + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.resp_ctrl_reset__pack + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.resp_ctrl_reset__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.resp_ctrl_reset__unpack + 0x0000000000000000 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.resp_ctrl_reset__free_unpacked + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.cmd_ctrl_reprov__get_packed_size + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.cmd_ctrl_reprov__pack + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.cmd_ctrl_reprov__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.cmd_ctrl_reprov__unpack + 0x0000000000000000 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.cmd_ctrl_reprov__free_unpacked + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.resp_ctrl_reprov__get_packed_size + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.resp_ctrl_reprov__pack + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.resp_ctrl_reprov__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.resp_ctrl_reprov__unpack + 0x0000000000000000 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.resp_ctrl_reprov__free_unpacked + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.wi_fi_ctrl_payload__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .text.cmd_ctrl_reset__get_packed_size + 0x0000000000000000 0x28 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .text.cmd_ctrl_reset__pack + 0x0000000000000000 0x2a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .text.cmd_ctrl_reset__pack_to_buffer + 0x0000000000000000 0x2a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .text.cmd_ctrl_reset__unpack + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .text.cmd_ctrl_reset__free_unpacked + 0x0000000000000000 0x2a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.resp_ctrl_reset__get_packed_size.str1.4 + 0x0000000000000000 0x39 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .text.resp_ctrl_reset__get_packed_size + 0x0000000000000000 0x28 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .text.resp_ctrl_reset__pack + 0x0000000000000000 0x2a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .text.resp_ctrl_reset__pack_to_buffer + 0x0000000000000000 0x2a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .text.resp_ctrl_reset__unpack + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .text.resp_ctrl_reset__free_unpacked + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.cmd_ctrl_reprov__get_packed_size.str1.4 + 0x0000000000000000 0x39 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .text.cmd_ctrl_reprov__get_packed_size + 0x0000000000000000 0x29 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .text.cmd_ctrl_reprov__pack + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .text.cmd_ctrl_reprov__pack_to_buffer + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .text.cmd_ctrl_reprov__unpack + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .text.cmd_ctrl_reprov__free_unpacked + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.resp_ctrl_reprov__get_packed_size.str1.4 + 0x0000000000000000 0x3a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .text.resp_ctrl_reprov__get_packed_size + 0x0000000000000000 0x29 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .text.resp_ctrl_reprov__pack + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .text.resp_ctrl_reprov__pack_to_buffer + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .text.resp_ctrl_reprov__unpack + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .text.resp_ctrl_reprov__free_unpacked + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .text.wi_fi_ctrl_payload__pack_to_buffer + 0x0000000000000000 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x23 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x21 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0x17 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.__func__$7 + 0x0000000000000000 0x22 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.__func__$8 + 0x0000000000000000 0x1f esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.__func__$9 + 0x0000000000000000 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.__func__$10 + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.__func__$11 + 0x0000000000000000 0x21 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.__func__$12 + 0x0000000000000000 0x1f esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.__func__$13 + 0x0000000000000000 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.__func__$14 + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.__func__$15 + 0x0000000000000000 0x21 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.__func__$16 + 0x0000000000000000 0x1e esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.__func__$17 + 0x0000000000000000 0x1f esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.__func__$18 + 0x0000000000000000 0x15 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.__func__$19 + 0x0000000000000000 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.wifi_connected_state__get_packed_size + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .literal.wifi_connected_state__pack + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .literal.wifi_connected_state__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .literal.wifi_connected_state__unpack + 0x0000000000000000 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .literal.wifi_connected_state__free_unpacked + 0x0000000000000000 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .rodata.wifi_connected_state__get_packed_size.str1.4 + 0x0000000000000000 0x81 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .text.wifi_connected_state__get_packed_size + 0x0000000000000000 0x28 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .text.wifi_connected_state__pack + 0x0000000000000000 0x2a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .text.wifi_connected_state__pack_to_buffer + 0x0000000000000000 0x2a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .text.wifi_connected_state__unpack + 0x0000000000000000 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .text.wifi_connected_state__free_unpacked + 0x0000000000000000 0x2a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x24 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x25 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x1b esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x26 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .literal.protocomm_open_session + 0x0000000000000000 0x10 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + .literal.protocomm_close_session + 0x0000000000000000 0x10 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + .literal.protocomm_unset_security + 0x0000000000000000 0x8 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + .literal.protocomm_unset_version + 0x0000000000000000 0x8 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + .text 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + .data 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + .rodata.protocomm_open_session.str1.4 + 0x0000000000000000 0x42 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + .text.protocomm_open_session + 0x0000000000000000 0x48 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + .rodata.protocomm_close_session.str1.4 + 0x0000000000000000 0x41 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + .text.protocomm_close_session + 0x0000000000000000 0x48 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + .text.protocomm_unset_security + 0x0000000000000000 0x4c esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + .text.protocomm_unset_version + 0x0000000000000000 0x39 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + .text 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) + .data 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) + .text 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(security0.c.obj) + .data 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(security0.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(security0.c.obj) + .text 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + .data 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + .text 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + .data 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + .literal.calculate_x + 0x0000000000000000 0x38 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + .literal.esp_srp_srv_pubkey + 0x0000000000000000 0x40 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + .rodata.calculate_x.str1.4 + 0x0000000000000000 0x2 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + .text.calculate_x + 0x0000000000000000 0x9c esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + .rodata.esp_srp_srv_pubkey.str1.4 + 0x0000000000000000 0xd esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + .text.esp_srp_srv_pubkey + 0x0000000000000000 0xe5 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + .literal.esp_mpi_new_from_hex + 0x0000000000000000 0x14 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + .text 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + .data 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + .text.esp_mpi_new_from_hex + 0x0000000000000000 0x36 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + .text 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .data 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .literal.s0_session_cmd__get_packed_size + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .literal.s0_session_cmd__pack + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .literal.s0_session_cmd__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .literal.s0_session_cmd__unpack + 0x0000000000000000 0x8 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .literal.s0_session_cmd__free_unpacked + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .literal.s0_session_resp__get_packed_size + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .literal.s0_session_resp__pack + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .literal.s0_session_resp__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .literal.s0_session_resp__unpack + 0x0000000000000000 0x8 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .literal.s0_session_resp__free_unpacked + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .literal.sec0_payload__get_packed_size + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .literal.sec0_payload__pack + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .literal.sec0_payload__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .literal.sec0_payload__unpack + 0x0000000000000000 0x8 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .literal.sec0_payload__free_unpacked + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .text 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .data 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .rodata.s0_session_cmd__get_packed_size.str1.4 + 0x0000000000000000 0x67 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .text.s0_session_cmd__get_packed_size + 0x0000000000000000 0x28 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .text.s0_session_cmd__pack + 0x0000000000000000 0x2a esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .text.s0_session_cmd__pack_to_buffer + 0x0000000000000000 0x2a esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .text.s0_session_cmd__unpack + 0x0000000000000000 0x16 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .text.s0_session_cmd__free_unpacked + 0x0000000000000000 0x2a esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .rodata.s0_session_resp__get_packed_size.str1.4 + 0x0000000000000000 0x39 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .text.s0_session_resp__get_packed_size + 0x0000000000000000 0x28 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .text.s0_session_resp__pack + 0x0000000000000000 0x2a esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .text.s0_session_resp__pack_to_buffer + 0x0000000000000000 0x2a esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .text.s0_session_resp__unpack + 0x0000000000000000 0x16 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .text.s0_session_resp__free_unpacked + 0x0000000000000000 0x2c esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .rodata.sec0_payload__get_packed_size.str1.4 + 0x0000000000000000 0x36 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .text.sec0_payload__get_packed_size + 0x0000000000000000 0x29 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .text.sec0_payload__pack + 0x0000000000000000 0x2c esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .text.sec0_payload__pack_to_buffer + 0x0000000000000000 0x2c esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .text.sec0_payload__unpack + 0x0000000000000000 0x16 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .text.sec0_payload__free_unpacked + 0x0000000000000000 0x2c esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1c esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x1d esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x13 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x1e esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x1f esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x20 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0x16 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .rodata.__func__$7 + 0x0000000000000000 0x21 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .rodata.__func__$8 + 0x0000000000000000 0x1e esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .rodata.__func__$9 + 0x0000000000000000 0x1f esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .rodata.__func__$10 + 0x0000000000000000 0x15 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .rodata.__func__$11 + 0x0000000000000000 0x20 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .literal.session_cmd1__get_packed_size + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.session_cmd1__pack + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.session_cmd1__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.session_cmd1__unpack + 0x0000000000000000 0x8 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.session_cmd1__free_unpacked + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.session_resp1__get_packed_size + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.session_resp1__pack + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.session_resp1__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.session_resp1__unpack + 0x0000000000000000 0x8 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.session_resp1__free_unpacked + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.session_cmd0__get_packed_size + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.session_cmd0__pack + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.session_cmd0__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.session_cmd0__unpack + 0x0000000000000000 0x8 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.session_cmd0__free_unpacked + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.session_resp0__get_packed_size + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.session_resp0__pack + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.session_resp0__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.session_resp0__unpack + 0x0000000000000000 0x8 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.session_resp0__free_unpacked + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.sec1_payload__get_packed_size + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.sec1_payload__pack + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.sec1_payload__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.sec1_payload__unpack + 0x0000000000000000 0x8 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.sec1_payload__free_unpacked + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .data 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.session_cmd1__get_packed_size.str1.4 + 0x0000000000000000 0x67 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.session_cmd1__get_packed_size + 0x0000000000000000 0x28 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.session_cmd1__pack + 0x0000000000000000 0x2a esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.session_cmd1__pack_to_buffer + 0x0000000000000000 0x2a esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.session_cmd1__unpack + 0x0000000000000000 0x16 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.session_cmd1__free_unpacked + 0x0000000000000000 0x2a esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.session_resp1__get_packed_size.str1.4 + 0x0000000000000000 0x37 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.session_resp1__get_packed_size + 0x0000000000000000 0x28 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.session_resp1__pack + 0x0000000000000000 0x2a esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.session_resp1__pack_to_buffer + 0x0000000000000000 0x2a esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.session_resp1__unpack + 0x0000000000000000 0x16 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.session_resp1__free_unpacked + 0x0000000000000000 0x2c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.session_cmd0__get_packed_size.str1.4 + 0x0000000000000000 0x36 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.session_cmd0__get_packed_size + 0x0000000000000000 0x29 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.session_cmd0__pack + 0x0000000000000000 0x2c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.session_cmd0__pack_to_buffer + 0x0000000000000000 0x2c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.session_cmd0__unpack + 0x0000000000000000 0x16 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.session_cmd0__free_unpacked + 0x0000000000000000 0x2c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.session_resp0__get_packed_size.str1.4 + 0x0000000000000000 0x37 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.session_resp0__get_packed_size + 0x0000000000000000 0x29 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.session_resp0__pack + 0x0000000000000000 0x2c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.session_resp0__pack_to_buffer + 0x0000000000000000 0x2c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.session_resp0__unpack + 0x0000000000000000 0x16 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.session_resp0__free_unpacked + 0x0000000000000000 0x2c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.sec1_payload__get_packed_size.str1.4 + 0x0000000000000000 0x36 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.sec1_payload__get_packed_size + 0x0000000000000000 0x29 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.sec1_payload__pack + 0x0000000000000000 0x2c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.sec1_payload__pack_to_buffer + 0x0000000000000000 0x2c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.sec1_payload__unpack + 0x0000000000000000 0x16 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .text.sec1_payload__free_unpacked + 0x0000000000000000 0x2c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x1d esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x13 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x1e esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x1d esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x1e esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0x14 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.__func__$7 + 0x0000000000000000 0x1f esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.__func__$8 + 0x0000000000000000 0x1c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.__func__$9 + 0x0000000000000000 0x1d esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.__func__$10 + 0x0000000000000000 0x13 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.__func__$11 + 0x0000000000000000 0x1e esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.__func__$12 + 0x0000000000000000 0x1d esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.__func__$13 + 0x0000000000000000 0x1e esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.__func__$14 + 0x0000000000000000 0x14 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.__func__$15 + 0x0000000000000000 0x1f esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.__func__$16 + 0x0000000000000000 0x1c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.__func__$17 + 0x0000000000000000 0x1d esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.__func__$18 + 0x0000000000000000 0x13 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.__func__$19 + 0x0000000000000000 0x1e esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.s2_session_cmd0__get_packed_size + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.s2_session_cmd0__pack + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.s2_session_cmd0__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.s2_session_cmd0__unpack + 0x0000000000000000 0x8 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.s2_session_cmd0__free_unpacked + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.s2_session_resp0__get_packed_size + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.s2_session_resp0__pack + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.s2_session_resp0__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.s2_session_resp0__unpack + 0x0000000000000000 0x8 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.s2_session_resp0__free_unpacked + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.s2_session_cmd1__get_packed_size + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.s2_session_cmd1__pack + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.s2_session_cmd1__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.s2_session_cmd1__unpack + 0x0000000000000000 0x8 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.s2_session_cmd1__free_unpacked + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.s2_session_resp1__get_packed_size + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.s2_session_resp1__pack + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.s2_session_resp1__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.s2_session_resp1__unpack + 0x0000000000000000 0x8 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.s2_session_resp1__free_unpacked + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.sec2_payload__get_packed_size + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.sec2_payload__pack + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.sec2_payload__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.sec2_payload__unpack + 0x0000000000000000 0x8 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.sec2_payload__free_unpacked + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .data 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.s2_session_cmd0__get_packed_size.str1.4 + 0x0000000000000000 0x6b esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.s2_session_cmd0__get_packed_size + 0x0000000000000000 0x28 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.s2_session_cmd0__pack + 0x0000000000000000 0x2a esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.s2_session_cmd0__pack_to_buffer + 0x0000000000000000 0x2a esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.s2_session_cmd0__unpack + 0x0000000000000000 0x16 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.s2_session_cmd0__free_unpacked + 0x0000000000000000 0x2a esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.s2_session_resp0__get_packed_size.str1.4 + 0x0000000000000000 0x3a esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.s2_session_resp0__get_packed_size + 0x0000000000000000 0x28 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.s2_session_resp0__pack + 0x0000000000000000 0x2a esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.s2_session_resp0__pack_to_buffer + 0x0000000000000000 0x2a esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.s2_session_resp0__unpack + 0x0000000000000000 0x16 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.s2_session_resp0__free_unpacked + 0x0000000000000000 0x2c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.s2_session_cmd1__get_packed_size.str1.4 + 0x0000000000000000 0x39 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.s2_session_cmd1__get_packed_size + 0x0000000000000000 0x29 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.s2_session_cmd1__pack + 0x0000000000000000 0x2c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.s2_session_cmd1__pack_to_buffer + 0x0000000000000000 0x2c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.s2_session_cmd1__unpack + 0x0000000000000000 0x16 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.s2_session_cmd1__free_unpacked + 0x0000000000000000 0x2c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.s2_session_resp1__get_packed_size.str1.4 + 0x0000000000000000 0x3a esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.s2_session_resp1__get_packed_size + 0x0000000000000000 0x29 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.s2_session_resp1__pack + 0x0000000000000000 0x2c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.s2_session_resp1__pack_to_buffer + 0x0000000000000000 0x2c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.s2_session_resp1__unpack + 0x0000000000000000 0x16 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.s2_session_resp1__free_unpacked + 0x0000000000000000 0x2c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.sec2_payload__get_packed_size.str1.4 + 0x0000000000000000 0x36 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.sec2_payload__get_packed_size + 0x0000000000000000 0x29 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.sec2_payload__pack + 0x0000000000000000 0x2c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.sec2_payload__pack_to_buffer + 0x0000000000000000 0x2c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.sec2_payload__unpack + 0x0000000000000000 0x16 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .text.sec2_payload__free_unpacked + 0x0000000000000000 0x2c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x1d esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x13 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x1e esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x20 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x21 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0x17 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.__func__$7 + 0x0000000000000000 0x22 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.__func__$8 + 0x0000000000000000 0x1f esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.__func__$9 + 0x0000000000000000 0x20 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.__func__$10 + 0x0000000000000000 0x16 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.__func__$11 + 0x0000000000000000 0x21 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.__func__$12 + 0x0000000000000000 0x20 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.__func__$13 + 0x0000000000000000 0x21 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.__func__$14 + 0x0000000000000000 0x17 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.__func__$15 + 0x0000000000000000 0x22 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.__func__$16 + 0x0000000000000000 0x1f esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.__func__$17 + 0x0000000000000000 0x20 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.__func__$18 + 0x0000000000000000 0x16 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.__func__$19 + 0x0000000000000000 0x21 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.session_data__pack_to_buffer + 0x0000000000000000 0x18 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + .text 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + .data 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + .text.session_data__pack_to_buffer + 0x0000000000000000 0x2a esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x1d esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + .literal.esp_bt_controller_get_status + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(bt.c.obj) + .literal.esp_ble_tx_power_set + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(bt.c.obj) + .literal.esp_ble_tx_power_get + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(bt.c.obj) + .literal.esp_bredr_tx_power_set + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(bt.c.obj) + .literal.esp_bredr_tx_power_get + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(bt.c.obj) + .literal.esp_bt_sleep_enable + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(bt.c.obj) + .literal.esp_bt_sleep_disable + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(bt.c.obj) + .literal.esp_bredr_sco_datapath_set + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(bt.c.obj) + .literal.esp_ble_scan_dupilcate_list_flush + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(bt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(bt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(bt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(bt.c.obj) + .text.esp_bt_controller_get_status + 0x0000000000000000 0xa esp-idf/bt/libbt.a(bt.c.obj) + .text.esp_ble_tx_power_set + 0x0000000000000000 0x16 esp-idf/bt/libbt.a(bt.c.obj) + .text.esp_ble_tx_power_get + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(bt.c.obj) + .text.esp_bredr_tx_power_set + 0x0000000000000000 0x20 esp-idf/bt/libbt.a(bt.c.obj) + .text.esp_bredr_tx_power_get + 0x0000000000000000 0x16 esp-idf/bt/libbt.a(bt.c.obj) + .text.esp_bt_sleep_enable + 0x0000000000000000 0x39 esp-idf/bt/libbt.a(bt.c.obj) + .text.esp_bt_sleep_disable + 0x0000000000000000 0x39 esp-idf/bt/libbt.a(bt.c.obj) + .text.esp_bredr_sco_datapath_set + 0x0000000000000000 0x1e esp-idf/bt/libbt.a(bt.c.obj) + .text.esp_ble_scan_dupilcate_list_flush + 0x0000000000000000 0x1d esp-idf/bt/libbt.a(bt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(addr.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(addr.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(addr.c.obj) + .literal.ble_svc_gap_device_name_write_access + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .literal.ble_svc_gap_appearance_write_access + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .literal.ble_svc_gap_device_name_read_access + 0x0000000000000000 0xc esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .literal.ble_svc_gap_appearance_read_access + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .literal.ble_svc_gap_access + 0x0000000000000000 0x3c esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .literal.ble_svc_gap_device_appearance + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .literal.ble_svc_gap_device_appearance_set + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .literal.ble_svc_gap_set_chr_changed_cb + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .literal.ble_svc_gap_init + 0x0000000000000000 0x20 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .rodata.ble_svc_gap_device_name_write_access.str1.4 + 0x0000000000000000 0x56 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .text.ble_svc_gap_device_name_write_access + 0x0000000000000000 0x15 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .text.ble_svc_gap_appearance_write_access + 0x0000000000000000 0x15 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .text.ble_svc_gap_device_name_read_access + 0x0000000000000000 0x21 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .text.ble_svc_gap_appearance_read_access + 0x0000000000000000 0x20 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .rodata.ble_svc_gap_access.str1.4 + 0x0000000000000000 0xc esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .text.ble_svc_gap_access + 0x0000000000000000 0xac esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .text.ble_svc_gap_device_appearance + 0x0000000000000000 0xb esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .text.ble_svc_gap_device_appearance_set + 0x0000000000000000 0xd esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .text.ble_svc_gap_set_chr_changed_cb + 0x0000000000000000 0xa esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .rodata.ble_svc_gap_init.str1.4 + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .text.ble_svc_gap_init + 0x0000000000000000 0x3f esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x24 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x25 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x13 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x11 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .rodata.ble_svc_gap_defs + 0x0000000000000000 0x20 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .data.__compound_literal$3 + 0x0000000000000000 0x48 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .data.__compound_literal$2 + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .data.__compound_literal$1 + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .data.__compound_literal$0 + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .bss.ble_svc_gap_appearance + 0x0000000000000000 0x2 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .bss.ble_svc_gap_chr_changed_cb_fn + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .literal.ble_store_util_delete_oldest_peer + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_store_util.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_store_util.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_store_util.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_store_util.c.obj) + .text.ble_store_util_delete_oldest_peer + 0x0000000000000000 0x22 esp-idf/bt/libbt.a(ble_store_util.c.obj) + .literal.ble_hs_id_rnd_reset + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + .text.ble_hs_id_rnd_reset + 0x0000000000000000 0xf esp-idf/bt/libbt.a(ble_hs_id.c.obj) + .literal.ble_hs_synced + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) + .literal.ble_hs_sched_start + 0x0000000000000000 0xc esp-idf/bt/libbt.a(ble_hs.c.obj) + .literal.ble_hs_notifications_sched + 0x0000000000000000 0xc esp-idf/bt/libbt.a(ble_hs.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + .text.ble_hs_synced + 0x0000000000000000 0x15 esp-idf/bt/libbt.a(ble_hs.c.obj) + .text.ble_hs_sched_start + 0x0000000000000000 0x18 esp-idf/bt/libbt.a(ble_hs.c.obj) + .text.ble_hs_notifications_sched + 0x0000000000000000 0x17 esp-idf/bt/libbt.a(ble_hs.c.obj) + .bss.ble_hs_stats + 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + .literal.ble_att_preferred_mtu + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att.c.obj) + .literal.ble_att_set_preferred_mtu + 0x0000000000000000 0x14 esp-idf/bt/libbt.a(ble_att.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_att.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_att.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_att.c.obj) + .text.ble_att_preferred_mtu + 0x0000000000000000 0xb esp-idf/bt/libbt.a(ble_att.c.obj) + .text.ble_att_set_preferred_mtu + 0x0000000000000000 0x55 esp-idf/bt/libbt.a(ble_att.c.obj) + .bss.ble_att_stats + 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_att.c.obj) + .literal.ble_gattc_read_tx + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_read_uuid_tx + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_log_find_inc_svcs + 0x0000000000000000 0x18 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_log_disc_all_chrs + 0x0000000000000000 0x18 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_log_disc_all_dscs + 0x0000000000000000 0x18 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_log_read + 0x0000000000000000 0x18 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_log_read_long + 0x0000000000000000 0x18 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_log_read_mult + 0x0000000000000000 0x38 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_log_write + 0x0000000000000000 0x1c esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_log_write_long + 0x0000000000000000 0x18 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_log_write_reliable + 0x0000000000000000 0x38 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_mtu_tx + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_log_uuid + 0x0000000000000000 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_log_disc_svc_uuid + 0x0000000000000000 0x1c esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_log_disc_chr_uuid + 0x0000000000000000 0x28 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_log_read_uuid + 0x0000000000000000 0x28 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_read_mult_tx + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_exchange_mtu + 0x0000000000000000 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_disc_all_svcs + 0x0000000000000000 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_disc_svc_by_uuid + 0x0000000000000000 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_find_inc_svcs + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_disc_all_chrs + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_disc_chrs_by_uuid + 0x0000000000000000 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_disc_all_dscs + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_read + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_read_by_uuid + 0x0000000000000000 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_read_long + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_read_mult + 0x0000000000000000 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_write_no_rsp + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_write_no_rsp_flat + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_write + 0x0000000000000000 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_write_flat + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_write_long + 0x0000000000000000 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_write_reliable + 0x0000000000000000 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_notify_custom + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_notify + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_indicate_custom + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_indicate + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_any_jobs + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_read_tx + 0x0000000000000000 0x13 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_read_uuid_tx + 0x0000000000000000 0x18 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .rodata.ble_gattc_log_find_inc_svcs.str1.4 + 0x0000000000000000 0x53 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_log_find_inc_svcs + 0x0000000000000000 0x30 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .rodata.ble_gattc_log_disc_all_chrs.str1.4 + 0x0000000000000000 0x1f esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_log_disc_all_chrs + 0x0000000000000000 0x30 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .rodata.ble_gattc_log_disc_all_dscs.str1.4 + 0x0000000000000000 0x55 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_log_disc_all_dscs + 0x0000000000000000 0x2e esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_log_read + 0x0000000000000000 0x28 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .rodata.ble_gattc_log_read_long.str1.4 + 0x0000000000000000 0xc esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_log_read_long + 0x0000000000000000 0x2a esp-idf/bt/libbt.a(ble_gattc.c.obj) + .rodata.ble_gattc_log_read_mult.str1.4 + 0x0000000000000000 0x7a esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_log_read_mult + 0x0000000000000000 0x74 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .rodata.ble_gattc_log_write.str1.4 + 0x0000000000000000 0x46 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_log_write + 0x0000000000000000 0x32 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .rodata.ble_gattc_log_write_long.str1.4 + 0x0000000000000000 0xd esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_log_write_long + 0x0000000000000000 0x30 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .rodata.ble_gattc_log_write_reliable.str1.4 + 0x0000000000000000 0x11 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_log_write_reliable + 0x0000000000000000 0x78 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_mtu_tx + 0x0000000000000000 0x3c esp-idf/bt/libbt.a(ble_gattc.c.obj) + .rodata.ble_gattc_log_uuid.str1.4 + 0x0000000000000000 0x1b esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_log_uuid + 0x0000000000000000 0x2a esp-idf/bt/libbt.a(ble_gattc.c.obj) + .rodata.ble_gattc_log_disc_svc_uuid.str1.4 + 0x0000000000000000 0x20 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_log_disc_svc_uuid + 0x0000000000000000 0x2e esp-idf/bt/libbt.a(ble_gattc.c.obj) + .rodata.ble_gattc_log_disc_chr_uuid.str1.4 + 0x0000000000000000 0x60 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_log_disc_chr_uuid + 0x0000000000000000 0x52 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .rodata.ble_gattc_log_read_uuid.str1.4 + 0x0000000000000000 0xf esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_log_read_uuid + 0x0000000000000000 0x4b esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_read_mult_tx + 0x0000000000000000 0x15 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .rodata.ble_gattc_exchange_mtu.str1.4 + 0x0000000000000000 0xe esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_exchange_mtu + 0x0000000000000000 0x40 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .rodata.ble_gattc_disc_all_svcs.str1.4 + 0x0000000000000000 0x17 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_disc_all_svcs + 0x0000000000000000 0x46 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_disc_svc_by_uuid + 0x0000000000000000 0x4f esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_find_inc_svcs + 0x0000000000000000 0x4b esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_disc_all_chrs + 0x0000000000000000 0x4b esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_disc_chrs_by_uuid + 0x0000000000000000 0x5b esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_disc_all_dscs + 0x0000000000000000 0x4c esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_read + 0x0000000000000000 0x46 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_read_by_uuid + 0x0000000000000000 0x5e esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_read_long + 0x0000000000000000 0x4a esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_read_mult + 0x0000000000000000 0x5f esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_write_no_rsp + 0x0000000000000000 0x26 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_write_no_rsp_flat + 0x0000000000000000 0x2c esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_write + 0x0000000000000000 0x5a esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_write_flat + 0x0000000000000000 0x30 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_write_long + 0x0000000000000000 0x5c esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_write_reliable + 0x0000000000000000 0x8e esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_notify_custom + 0x0000000000000000 0x15 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_notify + 0x0000000000000000 0x13 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_indicate_custom + 0x0000000000000000 0x15 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_indicate + 0x0000000000000000 0x13 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_any_jobs + 0x0000000000000000 0x11 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .bss.ble_gattc_stats + 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_store_delete_our_sec + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_store.c.obj) + .literal.ble_store_delete_peer_sec + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_store.c.obj) + .literal.ble_store_key_from_value + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_store.c.obj) + .literal.ble_store_clear + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_store.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) + .text.ble_store_delete_our_sec + 0x0000000000000000 0x11 esp-idf/bt/libbt.a(ble_store.c.obj) + .text.ble_store_delete_peer_sec + 0x0000000000000000 0x11 esp-idf/bt/libbt.a(ble_store.c.obj) + .text.ble_store_key_from_value + 0x0000000000000000 0x2c esp-idf/bt/libbt.a(ble_store.c.obj) + .rodata.ble_store_clear.str1.4 + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_store.c.obj) + .text.ble_store_clear + 0x0000000000000000 0x49 esp-idf/bt/libbt.a(ble_store.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) + .literal.ble_att_clt_tx_mtu + 0x0000000000000000 0x28 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + .literal.ble_att_clt_tx_read_mult + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + .literal.ble_att_clt_tx_write_req + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + .literal.ble_att_clt_tx_write_cmd + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + .text.ble_att_clt_tx_mtu + 0x0000000000000000 0xaa esp-idf/bt/libbt.a(ble_att_clt.c.obj) + .text.ble_att_clt_tx_read_mult + 0x0000000000000000 0x4e esp-idf/bt/libbt.a(ble_att_clt.c.obj) + .text.ble_att_clt_tx_write_req + 0x0000000000000000 0x46 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + .text.ble_att_clt_tx_write_cmd + 0x0000000000000000 0x46 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + .literal.ble_hs_mbuf_bare_pkt + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + .text.ble_hs_mbuf_bare_pkt + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + .literal.ble_att_error_rsp_parse + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_error_rsp_write + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_mtu_req_parse + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_mtu_rsp_parse + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_mtu_req_write + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_mtu_rsp_write + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_find_info_req_parse + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_find_info_req_write + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_find_info_rsp_parse + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_find_info_rsp_write + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_find_type_value_req_parse + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_find_type_value_req_write + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_read_type_req_parse + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_read_type_req_write + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_read_type_rsp_parse + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_read_type_rsp_write + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_read_req_parse + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_read_req_write + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_read_blob_req_parse + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_read_blob_req_write + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_read_mult_req_write + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_read_mult_rsp_write + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_read_group_type_req_parse + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_read_group_type_req_write + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_read_group_type_rsp_parse + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_read_group_type_rsp_write + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_write_req_parse + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_write_cmd_parse + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_write_req_write + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_write_cmd_write + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_prep_write_req_parse + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_prep_write_req_write + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_prep_write_rsp_parse + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_prep_write_rsp_write + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_exec_write_req_parse + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_exec_write_req_write + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_exec_write_rsp_write + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_notify_req_parse + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_notify_req_write + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_indicate_req_parse + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_indicate_req_write + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .literal.ble_att_indicate_rsp_write + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_init_parse + 0x0000000000000000 0x7 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_init_write + 0x0000000000000000 0xa esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_error_rsp_parse + 0x0000000000000000 0x2b esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_error_rsp_write + 0x0000000000000000 0x2b esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_mtu_req_parse + 0x0000000000000000 0x1f esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_mtu_rsp_parse + 0x0000000000000000 0x1f esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_mtu_req_write + 0x0000000000000000 0x1f esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_mtu_rsp_write + 0x0000000000000000 0x1f esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_find_info_req_parse + 0x0000000000000000 0x2b esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_find_info_req_write + 0x0000000000000000 0x2b esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_find_info_rsp_parse + 0x0000000000000000 0x19 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_find_info_rsp_write + 0x0000000000000000 0x19 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_find_type_value_req_parse + 0x0000000000000000 0x37 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_find_type_value_req_write + 0x0000000000000000 0x37 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_read_type_req_parse + 0x0000000000000000 0x2b esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_read_type_req_write + 0x0000000000000000 0x2b esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_read_type_rsp_parse + 0x0000000000000000 0x19 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_read_type_rsp_write + 0x0000000000000000 0x19 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_read_req_parse + 0x0000000000000000 0x1f esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_read_req_write + 0x0000000000000000 0x1f esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_read_blob_req_parse + 0x0000000000000000 0x2b esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_read_blob_req_write + 0x0000000000000000 0x2b esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_read_mult_req_parse + 0x0000000000000000 0x5 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_read_mult_req_write + 0x0000000000000000 0x13 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_read_mult_rsp_parse + 0x0000000000000000 0x5 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_read_mult_rsp_write + 0x0000000000000000 0x13 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_read_group_type_req_parse + 0x0000000000000000 0x2b esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_read_group_type_req_write + 0x0000000000000000 0x2b esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_read_group_type_rsp_parse + 0x0000000000000000 0x19 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_read_group_type_rsp_write + 0x0000000000000000 0x19 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_write_req_parse + 0x0000000000000000 0x1f esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_write_cmd_parse + 0x0000000000000000 0x1f esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_write_req_write + 0x0000000000000000 0x1f esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_write_cmd_write + 0x0000000000000000 0x1f esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_prep_write_req_parse + 0x0000000000000000 0x2b esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_prep_write_req_write + 0x0000000000000000 0x2b esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_prep_write_rsp_parse + 0x0000000000000000 0x2b esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_prep_write_rsp_write + 0x0000000000000000 0x2b esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_exec_write_req_parse + 0x0000000000000000 0x19 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_exec_write_req_write + 0x0000000000000000 0x19 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_exec_write_rsp_parse + 0x0000000000000000 0x5 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_exec_write_rsp_write + 0x0000000000000000 0x13 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_notify_req_parse + 0x0000000000000000 0x1f esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_notify_req_write + 0x0000000000000000 0x1f esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_indicate_req_parse + 0x0000000000000000 0x1f esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_indicate_req_write + 0x0000000000000000 0x1f esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_indicate_rsp_parse + 0x0000000000000000 0x5 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text.ble_att_indicate_rsp_write + 0x0000000000000000 0x13 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_log.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_log.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_log.c.obj) + .bss.ble_hs_log + 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_log.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + .literal.ble_gap_wl_busy + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_wl_tx_add + 0x0000000000000000 0xc esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_disc_tx_params + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_conn_create_tx + 0x0000000000000000 0xc esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_master_set_timer + 0x0000000000000000 0xc esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_log_wl + 0x0000000000000000 0x34 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_log_duration + 0x0000000000000000 0x20 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_log_disc + 0x0000000000000000 0x14 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_log_conn + 0x0000000000000000 0x28 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_conn_find_by_addr + 0x0000000000000000 0x14 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_set_priv_mode + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_read_le_phy + 0x0000000000000000 0x18 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_set_prefered_default_le_phy + 0x0000000000000000 0xc esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_set_prefered_le_phy + 0x0000000000000000 0x18 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_set_event_cb + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_wl_tx_clear + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_wl_tx_rmv + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_wl_set + 0x0000000000000000 0x3c esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_disc_cancel + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_disc_ext_validate + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_disc_validate + 0x0000000000000000 0xc esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_disc + 0x0000000000000000 0x58 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_connect + 0x0000000000000000 0x64 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_conn_cancel + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_set_data_len + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_read_sugg_def_data_len + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_write_sugg_def_data_len + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_security_initiate + 0x0000000000000000 0x28 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_pair_initiate + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_encryption_initiate + 0x0000000000000000 0xc esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_conn_rssi + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_disc_fill_dflts + 0x0000000000000000 0x35 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_wl_busy + 0x0000000000000000 0x31 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_wl_tx_add + 0x0000000000000000 0x35 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_disc_tx_params + 0x0000000000000000 0x59 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_conn_create_tx + 0x0000000000000000 0xb2 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_master_set_timer + 0x0000000000000000 0x28 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_log_wl + 0x0000000000000000 0x9d esp-idf/bt/libbt.a(ble_gap.c.obj) + .rodata.ble_gap_log_duration.str1.4 + 0x0000000000000000 0x52 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_log_duration + 0x0000000000000000 0x40 esp-idf/bt/libbt.a(ble_gap.c.obj) + .rodata.ble_gap_log_disc.str1.4 + 0x0000000000000000 0x66 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_log_disc + 0x0000000000000000 0x3e esp-idf/bt/libbt.a(ble_gap.c.obj) + .rodata.ble_gap_log_conn.str1.4 + 0x0000000000000000 0xd4 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_log_conn + 0x0000000000000000 0x9a esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_conn_find_by_addr + 0x0000000000000000 0x4a esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_set_priv_mode + 0x0000000000000000 0x21 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_read_le_phy + 0x0000000000000000 0x63 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_set_prefered_default_le_phy + 0x0000000000000000 0x68 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_set_prefered_le_phy + 0x0000000000000000 0xa2 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_set_event_cb + 0x0000000000000000 0x31 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_wl_tx_clear + 0x0000000000000000 0x18 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_wl_tx_rmv + 0x0000000000000000 0x42 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_wl_set + 0x0000000000000000 0xc4 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_ext_disc + 0x0000000000000000 0x7 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_disc_cancel + 0x0000000000000000 0x28 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_disc_ext_validate + 0x0000000000000000 0x46 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_disc_validate + 0x0000000000000000 0x5c esp-idf/bt/libbt.a(ble_gap.c.obj) + .rodata.ble_gap_disc.str1.4 + 0x0000000000000000 0x3d esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_disc + 0x0000000000000000 0x12c esp-idf/bt/libbt.a(ble_gap.c.obj) + .rodata.ble_gap_connect.str1.4 + 0x0000000000000000 0x3b esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_connect + 0x0000000000000000 0x160 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_conn_cancel + 0x0000000000000000 0x28 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_set_data_len + 0x0000000000000000 0x16 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_read_sugg_def_data_len + 0x0000000000000000 0x11 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_write_sugg_def_data_len + 0x0000000000000000 0x13 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_security_initiate + 0x0000000000000000 0xc6 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_pair_initiate + 0x0000000000000000 0x20 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_encryption_initiate + 0x0000000000000000 0x50 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_conn_rssi + 0x0000000000000000 0x21 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_enh_read_transmit_power_level + 0x0000000000000000 0x7 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_read_remote_transmit_power_level + 0x0000000000000000 0x7 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_set_path_loss_reporting_param + 0x0000000000000000 0x7 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_set_path_loss_reporting_enable + 0x0000000000000000 0x7 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_set_transmit_power_reporting_enable + 0x0000000000000000 0x7 esp-idf/bt/libbt.a(ble_gap.c.obj) + .bss.ble_gap_stats + 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + .rodata.ble_gap_conn_params_dflt + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_uuid_copy + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_uuid.c.obj) + .literal.ble_uuid_to_str + 0x0000000000000000 0x18 esp-idf/bt/libbt.a(ble_uuid.c.obj) + .literal.ble_uuid_to_any + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_uuid.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_uuid.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_uuid.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_uuid.c.obj) + .text.ble_uuid_copy + 0x0000000000000000 0x3a esp-idf/bt/libbt.a(ble_uuid.c.obj) + .rodata.ble_uuid_to_str.str1.4 + 0x0000000000000000 0x55 esp-idf/bt/libbt.a(ble_uuid.c.obj) + .text.ble_uuid_to_str + 0x0000000000000000 0x97 esp-idf/bt/libbt.a(ble_uuid.c.obj) + .text.ble_uuid_to_any + 0x0000000000000000 0x3e esp-idf/bt/libbt.a(ble_uuid.c.obj) + .literal.ble_hs_pvcy_set_mode + 0x0000000000000000 0xc esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + .literal.ble_hs_pvcy_rpa_config + 0x0000000000000000 0x18 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + .text.ble_hs_pvcy_set_mode + 0x0000000000000000 0x3c esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + .text.ble_hs_pvcy_rpa_config + 0x0000000000000000 0x46 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + .rodata.ble_hs_pvcy_default_irk + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + .literal.ble_hs_flow_stop + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + .text.ble_hs_flow_stop + 0x0000000000000000 0x13 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + .literal.ble_l2cap_reconfig + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .text.ble_l2cap_create_server + 0x0000000000000000 0x7 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .text.ble_l2cap_connect + 0x0000000000000000 0x7 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .text.ble_l2cap_get_chan_info + 0x0000000000000000 0x62 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .text.ble_l2cap_enhanced_connect + 0x0000000000000000 0x7 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .text.ble_l2cap_reconfig + 0x0000000000000000 0x5c esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .text.ble_l2cap_disconnect + 0x0000000000000000 0x7 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .text.ble_l2cap_send + 0x0000000000000000 0x7 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .text.ble_l2cap_recv_ready + 0x0000000000000000 0x7 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .bss.ble_l2cap_stats + 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + .literal.ble_gatts_find_svc_entry + 0x0000000000000000 0xc esp-idf/bt/libbt.a(ble_gatts.c.obj) + .literal.ble_gatts_find_svc_chr_attr + 0x0000000000000000 0x14 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .literal.ble_gatts_chr_updated + 0x0000000000000000 0x34 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .literal.ble_gatts_find_svc + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .literal.ble_gatts_find_chr + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .literal.ble_gatts_find_dsc + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .literal.ble_gatts_svc_set_visibility + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .literal.ble_gatts_lcl_svc_foreach + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .literal.ble_gatts_reset + 0x0000000000000000 0x14 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .text.ble_gatts_find_svc_entry + 0x0000000000000000 0x32 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .text.ble_gatts_find_svc_chr_attr + 0x0000000000000000 0x7a esp-idf/bt/libbt.a(ble_gatts.c.obj) + .text.ble_gatts_chr_updated + 0x0000000000000000 0xea esp-idf/bt/libbt.a(ble_gatts.c.obj) + .text.ble_gatts_find_svc + 0x0000000000000000 0x25 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .text.ble_gatts_find_chr + 0x0000000000000000 0x2e esp-idf/bt/libbt.a(ble_gatts.c.obj) + .text.ble_gatts_find_dsc + 0x0000000000000000 0x63 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .text.ble_gatts_svc_set_visibility + 0x0000000000000000 0x45 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .text.ble_gatts_lcl_svc_foreach + 0x0000000000000000 0x2a esp-idf/bt/libbt.a(ble_gatts.c.obj) + .text.ble_gatts_reset + 0x0000000000000000 0x2c esp-idf/bt/libbt.a(ble_gatts.c.obj) + .bss.ble_gatts_stats + 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .literal.ble_hs_adv_parse_uuids16 + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .literal.ble_hs_adv_parse_uuids32 + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .literal.ble_hs_adv_parse_uuids128 + 0x0000000000000000 0xc esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .literal.ble_hs_adv_parse_one_field + 0x0000000000000000 0x24 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .literal.ble_hs_adv_set_flat + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .literal.ble_hs_adv_set_fields_mbuf + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .literal.ble_hs_adv_parse_fields + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .text.ble_hs_adv_parse_uuids16 + 0x0000000000000000 0x40 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .text.ble_hs_adv_parse_uuids32 + 0x0000000000000000 0x44 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .text.ble_hs_adv_parse_uuids128 + 0x0000000000000000 0x4a esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .text.ble_hs_adv_parse_one_field + 0x0000000000000000 0x2e7 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .text.ble_hs_adv_set_flat + 0x0000000000000000 0x20 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .text.ble_hs_adv_set_fields_mbuf + 0x0000000000000000 0x18 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .text.ble_hs_adv_parse_fields + 0x0000000000000000 0x3c esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .bss.ble_hs_adv_uuids128 + 0x0000000000000000 0x11 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .bss.ble_hs_adv_uuids32 + 0x0000000000000000 0x38 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .bss.ble_hs_adv_uuids16 + 0x0000000000000000 0x38 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .literal.ble_hs_hci_frag_num_mbufs + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .literal.ble_hs_hci_frag_num_mbufs_free + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .literal.ble_hs_hci_get_le_supported_feat + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .text.ble_hs_hci_frag_num_mbufs + 0x0000000000000000 0xb esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .text.ble_hs_hci_frag_num_mbufs_free + 0x0000000000000000 0xb esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .text.ble_hs_hci_get_le_supported_feat + 0x0000000000000000 0xa esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .literal.ble_hs_hci_util_read_rssi + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .literal.ble_hs_hci_util_set_data_len + 0x0000000000000000 0xc esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .literal.ble_hs_hci_util_read_sugg_def_data_len + 0x0000000000000000 0x28 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .literal.ble_hs_hci_util_write_sugg_def_data_len + 0x0000000000000000 0xc esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .literal.ble_hs_hci_read_chan_map + 0x0000000000000000 0xc esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .literal.ble_hs_hci_set_chan_class + 0x0000000000000000 0xc esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .text.ble_hs_hci_util_read_rssi + 0x0000000000000000 0x32 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .text.ble_hs_hci_util_set_data_len + 0x0000000000000000 0x5f esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .rodata.ble_hs_hci_util_read_sugg_def_data_len.str1.4 + 0x0000000000000000 0x9c esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .text.ble_hs_hci_util_read_sugg_def_data_len + 0x0000000000000000 0x7e esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .text.ble_hs_hci_util_write_sugg_def_data_len + 0x0000000000000000 0x4c esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .text.ble_hs_hci_read_chan_map + 0x0000000000000000 0x38 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .text.ble_hs_hci_set_chan_class + 0x0000000000000000 0x26 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .literal.ble_rpa_get_peer_dev_records + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .literal.ble_rpa_get_num_peer_dev_records + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .literal.ble_rpa_set_num_peer_dev_records + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .literal.ble_hs_resolv_nrpa_enable + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .literal.ble_hs_resolv_nrpa_disable + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .text.ble_rpa_get_peer_dev_records + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .text.ble_rpa_get_num_peer_dev_records + 0x0000000000000000 0xa esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .text.ble_rpa_set_num_peer_dev_records + 0x0000000000000000 0xa esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .text.ble_hs_resolv_nrpa_enable + 0x0000000000000000 0xd esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .text.ble_hs_resolv_nrpa_disable + 0x0000000000000000 0xd esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_store_config.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_store_config.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_store_config.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(nimble_port.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(nimble_port.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(nimble_port.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(endian.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(endian.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(endian.c.obj) + .text.put_le24 + 0x0000000000000000 0x14 esp-idf/bt/libbt.a(endian.c.obj) + .text.put_le64 + 0x0000000000000000 0x2f esp-idf/bt/libbt.a(endian.c.obj) + .text.get_le24 + 0x0000000000000000 0x1a esp-idf/bt/libbt.a(endian.c.obj) + .text.get_le64 + 0x0000000000000000 0x41 esp-idf/bt/libbt.a(endian.c.obj) + .text.put_be16 + 0x0000000000000000 0xe esp-idf/bt/libbt.a(endian.c.obj) + .text.put_be24 + 0x0000000000000000 0x14 esp-idf/bt/libbt.a(endian.c.obj) + .text.put_be32 + 0x0000000000000000 0x1a esp-idf/bt/libbt.a(endian.c.obj) + .text.put_be64 + 0x0000000000000000 0x2f esp-idf/bt/libbt.a(endian.c.obj) + .text.get_be16 + 0x0000000000000000 0x11 esp-idf/bt/libbt.a(endian.c.obj) + .text.get_be24 + 0x0000000000000000 0x1a esp-idf/bt/libbt.a(endian.c.obj) + .text.get_be64 + 0x0000000000000000 0x41 esp-idf/bt/libbt.a(endian.c.obj) + .literal.os_mempool_unregister + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(os_mempool.c.obj) + .literal.os_mempool_is_sane + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(os_mempool.c.obj) + .literal.os_mempool_info_get_next + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(os_mempool.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(os_mempool.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(os_mempool.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(os_mempool.c.obj) + .text.os_mempool_unregister + 0x0000000000000000 0x4a esp-idf/bt/libbt.a(os_mempool.c.obj) + .text.os_mempool_is_sane + 0x0000000000000000 0x22 esp-idf/bt/libbt.a(os_mempool.c.obj) + .text.os_mempool_info_get_next + 0x0000000000000000 0x38 esp-idf/bt/libbt.a(os_mempool.c.obj) + .literal.mem_malloc_mempool_gen + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(mem.c.obj) + .literal.mem_malloc_mempool + 0x0000000000000000 0xc esp-idf/bt/libbt.a(mem.c.obj) + .literal.mem_malloc_mempool_ext + 0x0000000000000000 0xc esp-idf/bt/libbt.a(mem.c.obj) + .literal.mem_malloc_mbuf_pool + 0x0000000000000000 0xc esp-idf/bt/libbt.a(mem.c.obj) + .literal.mem_malloc_mbufpkt_pool + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(mem.c.obj) + .literal.mem_pullup_obj + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(mem.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(mem.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(mem.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(mem.c.obj) + .text.mem_malloc_mempool_gen + 0x0000000000000000 0x38 esp-idf/bt/libbt.a(mem.c.obj) + .text.mem_malloc_mempool + 0x0000000000000000 0x40 esp-idf/bt/libbt.a(mem.c.obj) + .text.mem_malloc_mempool_ext + 0x0000000000000000 0x40 esp-idf/bt/libbt.a(mem.c.obj) + .text.mem_malloc_mbuf_pool + 0x0000000000000000 0x5c esp-idf/bt/libbt.a(mem.c.obj) + .text.mem_malloc_mbufpkt_pool + 0x0000000000000000 0x1a esp-idf/bt/libbt.a(mem.c.obj) + .text.mem_pullup_obj + 0x0000000000000000 0x18 esp-idf/bt/libbt.a(mem.c.obj) + .literal.os_mqueue_init + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(os_mbuf.c.obj) + .literal.os_mqueue_get + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(os_mbuf.c.obj) + .literal.os_mqueue_put + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(os_mbuf.c.obj) + .literal.os_msys_count + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(os_mbuf.c.obj) + .literal.os_msys_num_free + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(os_mbuf.c.obj) + .literal.os_msys_get + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(os_mbuf.c.obj) + .literal.os_mbuf_dup + 0x0000000000000000 0x14 esp-idf/bt/libbt.a(os_mbuf.c.obj) + .literal.os_mbuf_widen + 0x0000000000000000 0x18 esp-idf/bt/libbt.a(os_mbuf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) + .text.os_mqueue_init + 0x0000000000000000 0x1e esp-idf/bt/libbt.a(os_mbuf.c.obj) + .text.os_mqueue_get + 0x0000000000000000 0x2f esp-idf/bt/libbt.a(os_mbuf.c.obj) + .text.os_mqueue_put + 0x0000000000000000 0x4c esp-idf/bt/libbt.a(os_mbuf.c.obj) + .text.os_msys_count + 0x0000000000000000 0x1b esp-idf/bt/libbt.a(os_mbuf.c.obj) + .text.os_msys_num_free + 0x0000000000000000 0x1b esp-idf/bt/libbt.a(os_mbuf.c.obj) + .text.os_msys_get + 0x0000000000000000 0x1d esp-idf/bt/libbt.a(os_mbuf.c.obj) + .text.os_mbuf_len + 0x0000000000000000 0x19 esp-idf/bt/libbt.a(os_mbuf.c.obj) + .text.os_mbuf_dup + 0x0000000000000000 0x99 esp-idf/bt/libbt.a(os_mbuf.c.obj) + .text.os_mbuf_widen + 0x0000000000000000 0x10c esp-idf/bt/libbt.a(os_mbuf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(os_msys_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(os_msys_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(os_msys_init.c.obj) + .literal.npl_freertos_funcs_get + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .text.npl_freertos_funcs_get + 0x0000000000000000 0xa esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .text.npl_freertos_mempool_deinit + 0x0000000000000000 0x5 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .literal.ble_hci_trans_cfg_hs + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .literal.ble_hci_trans_ll_acl_tx + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .text.ble_hci_trans_cfg_hs + 0x0000000000000000 0x19 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .text.ble_hci_trans_ll_acl_tx + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .text.ble_hci_trans_reset + 0x0000000000000000 0x7 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .bss.ble_hci_rx_acl_hs_arg + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .bss.ble_hci_rx_acl_hs_cb + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .bss.ble_hci_rx_cmd_hs_arg + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .bss.ble_hci_rx_cmd_hs_cb + 0x0000000000000000 0x4 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .iram1.2.literal + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + .iram1.3.literal + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + .iram1.2 0x0000000000000000 0x12 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + .iram1.3 0x0000000000000000 0x14 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + .literal.ble_transport_alloc_acl_from_hs + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(transport.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(transport.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(transport.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(transport.c.obj) + .text.ble_transport_alloc_acl_from_hs + 0x0000000000000000 0x19 esp-idf/bt/libbt.a(transport.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + .text.ble_hs_conn_chan_find_by_dcid + 0x0000000000000000 0x1a esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + .text.ble_hs_conn_chan_exist + 0x0000000000000000 0x19 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + .literal.ble_sm_slave_initiate + 0x0000000000000000 0x20 esp-idf/bt/libbt.a(ble_sm.c.obj) + .literal.ble_sm_inject_io + 0x0000000000000000 0x64 esp-idf/bt/libbt.a(ble_sm.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + .text.ble_sm_slave_initiate + 0x0000000000000000 0x84 esp-idf/bt/libbt.a(ble_sm.c.obj) + .text.ble_sm_inject_io + 0x0000000000000000 0x215 esp-idf/bt/libbt.a(ble_sm.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + .literal.ble_att_svr_entry_free + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .literal.ble_att_svr_read_local + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .literal.ble_att_svr_write_local + 0x0000000000000000 0xc esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .literal.ble_att_svr_hide_range + 0x0000000000000000 0xc esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .literal.ble_att_svr_restore_range + 0x0000000000000000 0xc esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .literal.ble_att_svr_reset + 0x0000000000000000 0x14 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .text.ble_att_svr_move_entries + 0x0000000000000000 0x7e esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .text.ble_att_svr_entry_free + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .text.ble_att_svr_read_local + 0x0000000000000000 0x36 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .text.ble_att_svr_write_local + 0x0000000000000000 0x24 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .text.ble_att_svr_hide_range + 0x0000000000000000 0x17 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .text.ble_att_svr_restore_range + 0x0000000000000000 0x17 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .text.ble_att_svr_reset + 0x0000000000000000 0x45 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .literal.ble_hs_atomic_conn_insert + 0x0000000000000000 0xc esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + .literal.ble_hs_atomic_conn_set_flags + 0x0000000000000000 0xc esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + .text.ble_hs_atomic_conn_insert + 0x0000000000000000 0x19 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + .text.ble_hs_atomic_conn_set_flags + 0x0000000000000000 0x4a esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + .literal.mbedtls_free_keypair + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + .text.mbedtls_free_keypair + 0x0000000000000000 0xe esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + .literal.ble_sm_sc_oob_confirm + 0x0000000000000000 0x8 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + .literal.ble_sm_sc_oob_generate_data + 0x0000000000000000 0x10 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + .text.ble_sm_sc_oob_confirm + 0x0000000000000000 0x73 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + .text.ble_sm_sc_oob_data_check + 0x0000000000000000 0x47 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + .text.ble_sm_sc_oob_generate_data + 0x0000000000000000 0x2d esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(btdm_log.o) + .text 0x0000000000000000 0x7a /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(btdm_log.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(btdm_log.o) + .rodata.str1.1 + 0x0000000000000000 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(btdm_log.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(co_utils.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(co_utils.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(co_utils.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(co_utils.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg_task.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg_task.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg_task.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_msg.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_msg.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_msg.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_msg.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_msg.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_msg.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_lmppdu.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_lmppdu.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_lmppdu.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sco.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sco.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sco.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sniff.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sniff.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sniff.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_inq.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_inq.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_inq.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_inq.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_pscan.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_pscan.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_pscan.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_pscan.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sched.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sched.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sched.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sched.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sscan.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sscan.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sscan.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_task.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_task.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_task.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_util.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_util.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_util.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_util.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_util.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_util.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_hci.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_hci.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_hci.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_task.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_task.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_task.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(osi.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(osi.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(sdk_config.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(sdk_config.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(sdk_config.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(syscntl.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(syscntl.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(syscntl.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vflash.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vflash.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_sp.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_sp.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_sp.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ecc_p256.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ecc_p256.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ecc_p256.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(emi.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(emi.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(emi.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(intc.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(intc.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(intc.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(intc.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(led.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(led.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(led.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ll.o) + .literal 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ll.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ll.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ll.o) + .literal.unknown_field_pack_to_buffer + 0x0000000000000000 0x4 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.get_packed_payload_length + 0x0000000000000000 0x2c esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.pack_buffer_packed_payload + 0x0000000000000000 0x24 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.protobuf_c_service_invoke_internal + 0x0000000000000000 0x14 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.protobuf_c_version + 0x0000000000000000 0x4 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.protobuf_c_version_number + 0x0000000000000000 0x4 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.protobuf_c_buffer_simple_append + 0x0000000000000000 0xc esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.protobuf_c_message_pack_to_buffer + 0x0000000000000000 0x2c esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.required_field_pack_to_buffer + 0x0000000000000000 0x44 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.oneof_field_pack_to_buffer + 0x0000000000000000 0x4 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.optional_field_pack_to_buffer + 0x0000000000000000 0x4 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.unlabeled_field_pack_to_buffer + 0x0000000000000000 0x8 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.repeated_field_pack_to_buffer + 0x0000000000000000 0x28 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.protobuf_c_message_check + 0x0000000000000000 0x4 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.protobuf_c_service_generated_init + 0x0000000000000000 0x20 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.protobuf_c_enum_descriptor_get_value_by_name + 0x0000000000000000 0x8 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.protobuf_c_enum_descriptor_get_value + 0x0000000000000000 0x4 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.protobuf_c_message_descriptor_get_field_by_name + 0x0000000000000000 0x8 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.protobuf_c_message_descriptor_get_field + 0x0000000000000000 0x4 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.protobuf_c_service_descriptor_get_method_by_name + 0x0000000000000000 0x8 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text 0x0000000000000000 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .data 0x0000000000000000 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.unknown_field_pack_to_buffer + 0x0000000000000000 0x36 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.get_packed_payload_length + 0x0000000000000000 0x175 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.pack_buffer_packed_payload + 0x0000000000000000 0x1ca esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .rodata.protobuf_c_service_invoke_internal.str1.4 + 0x0000000000000000 0x2e esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.protobuf_c_service_invoke_internal + 0x0000000000000000 0x38 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .rodata.protobuf_c_version.str1.4 + 0x0000000000000000 0x6 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.protobuf_c_version + 0x0000000000000000 0x8 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.protobuf_c_version_number + 0x0000000000000000 0x8 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.protobuf_c_buffer_simple_append + 0x0000000000000000 0x68 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.protobuf_c_message_pack_to_buffer + 0x0000000000000000 0xdd esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.required_field_pack_to_buffer + 0x0000000000000000 0x2b7 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.oneof_field_pack_to_buffer + 0x0000000000000000 0x4c esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.optional_field_pack_to_buffer + 0x0000000000000000 0x4c esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.unlabeled_field_pack_to_buffer + 0x0000000000000000 0x25 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .rodata.repeated_field_pack_to_buffer.str1.4 + 0x0000000000000000 0x13 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.repeated_field_pack_to_buffer + 0x0000000000000000 0xa2 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.protobuf_c_message_check + 0x0000000000000000 0x13c esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .rodata.protobuf_c_service_generated_init.str1.4 + 0x0000000000000000 0x3c esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.protobuf_c_service_generated_init + 0x0000000000000000 0x38 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.protobuf_c_service_destroy + 0x0000000000000000 0xc esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.protobuf_c_enum_descriptor_get_value_by_name + 0x0000000000000000 0x7e esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.protobuf_c_enum_descriptor_get_value + 0x0000000000000000 0x22 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.protobuf_c_message_descriptor_get_field_by_name + 0x0000000000000000 0x82 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.protobuf_c_message_descriptor_get_field + 0x0000000000000000 0x24 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.protobuf_c_service_descriptor_get_method_by_name + 0x0000000000000000 0x7e esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x22 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x23 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0x1b esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .rodata.__func__$7 + 0x0000000000000000 0x1a esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .rodata.__func__$8 + 0x0000000000000000 0x1e esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .rodata.__func__$9 + 0x0000000000000000 0x1e esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .rodata.__func__$10 + 0x0000000000000000 0x22 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.case_insensitive_strcmp + 0x0000000000000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.utf16_literal_to_utf8 + 0x0000000000000000 0x20 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.parse_string + 0x0000000000000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.create_reference + 0x0000000000000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.skip_utf8_bom + 0x0000000000000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.parse_number + 0x0000000000000000 0x30 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.get_object_item + 0x0000000000000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_GetErrorPtr + 0x0000000000000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_Version + 0x0000000000000000 0xc esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_InitHooks + 0x0000000000000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.parse_object + 0x0000000000000000 0x24 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.parse_value + 0x0000000000000000 0x28 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.parse_array + 0x0000000000000000 0x18 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_SetNumberHelper + 0x0000000000000000 0x24 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_ParseWithLengthOpts + 0x0000000000000000 0x20 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_ParseWithOpts + 0x0000000000000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_Parse + 0x0000000000000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_ParseWithLength + 0x0000000000000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_PrintUnformatted + 0x0000000000000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_PrintBuffered + 0x0000000000000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_PrintPreallocated + 0x0000000000000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_GetArrayItem + 0x0000000000000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_GetObjectItem + 0x0000000000000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_GetObjectItemCaseSensitive + 0x0000000000000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_HasObjectItem + 0x0000000000000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_AddItemToObjectCS + 0x0000000000000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_AddItemReferenceToArray + 0x0000000000000000 0xc esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_AddItemReferenceToObject + 0x0000000000000000 0xc esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_DetachItemFromArray + 0x0000000000000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_DeleteItemFromArray + 0x0000000000000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_DetachItemFromObject + 0x0000000000000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_DetachItemFromObjectCaseSensitive + 0x0000000000000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_DeleteItemFromObject + 0x0000000000000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_DeleteItemFromObjectCaseSensitive + 0x0000000000000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_InsertItemInArray + 0x0000000000000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_ReplaceItemViaPointer + 0x0000000000000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_ReplaceItemInArray + 0x0000000000000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateNull + 0x0000000000000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_AddNullToObject + 0x0000000000000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateTrue + 0x0000000000000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_AddTrueToObject + 0x0000000000000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateFalse + 0x0000000000000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_AddFalseToObject + 0x0000000000000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateBool + 0x0000000000000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_AddBoolToObject + 0x0000000000000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateStringReference + 0x0000000000000000 0xc esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateObjectReference + 0x0000000000000000 0xc esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateArrayReference + 0x0000000000000000 0xc esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateRaw + 0x0000000000000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_AddRawToObject + 0x0000000000000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_AddArrayToObject + 0x0000000000000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_AddObjectToObject + 0x0000000000000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateIntArray + 0x0000000000000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateFloatArray + 0x0000000000000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateDoubleArray + 0x0000000000000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateStringArray + 0x0000000000000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_Minify + 0x0000000000000000 0xc esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_GetNumberValue + 0x0000000000000000 0xc esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_GetStringValue + 0x0000000000000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_Compare + 0x0000000000000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_malloc + 0x0000000000000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_free + 0x0000000000000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_SetValuestring + 0x0000000000000000 0x18 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.replace_item_in_object + 0x0000000000000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_ReplaceItemInObject + 0x0000000000000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_ReplaceItemInObjectCaseSensitive + 0x0000000000000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .text 0x0000000000000000 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + .data 0x0000000000000000 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + .text.case_insensitive_strcmp + 0x0000000000000000 0x6c esp-idf/json/libjson.a(cJSON.c.obj) + .text.parse_hex4 + 0x0000000000000000 0x57 esp-idf/json/libjson.a(cJSON.c.obj) + .text.utf16_literal_to_utf8 + 0x0000000000000000 0x124 esp-idf/json/libjson.a(cJSON.c.obj) + .text.parse_string + 0x0000000000000000 0x186 esp-idf/json/libjson.a(cJSON.c.obj) + .text.buffer_skip_whitespace + 0x0000000000000000 0x38 esp-idf/json/libjson.a(cJSON.c.obj) + .text.get_array_item + 0x0000000000000000 0x28 esp-idf/json/libjson.a(cJSON.c.obj) + .text.skip_oneline_comment + 0x0000000000000000 0x24 esp-idf/json/libjson.a(cJSON.c.obj) + .text.skip_multiline_comment + 0x0000000000000000 0x2e esp-idf/json/libjson.a(cJSON.c.obj) + .text.minify_string + 0x0000000000000000 0x76 esp-idf/json/libjson.a(cJSON.c.obj) + .text.create_reference + 0x0000000000000000 0x36 esp-idf/json/libjson.a(cJSON.c.obj) + .rodata.skip_utf8_bom.str1.4 + 0x0000000000000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .text.skip_utf8_bom + 0x0000000000000000 0x34 esp-idf/json/libjson.a(cJSON.c.obj) + .text.parse_number + 0x0000000000000000 0xfa esp-idf/json/libjson.a(cJSON.c.obj) + .text.get_object_item + 0x0000000000000000 0x5f esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_GetErrorPtr + 0x0000000000000000 0xe esp-idf/json/libjson.a(cJSON.c.obj) + .rodata.cJSON_Version.str1.4 + 0x0000000000000000 0x9 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_Version + 0x0000000000000000 0x1a esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_InitHooks + 0x0000000000000000 0x60 esp-idf/json/libjson.a(cJSON.c.obj) + .text.parse_object + 0x0000000000000000 0x15d esp-idf/json/libjson.a(cJSON.c.obj) + .text.parse_value + 0x0000000000000000 0x121 esp-idf/json/libjson.a(cJSON.c.obj) + .text.parse_array + 0x0000000000000000 0x10c esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_SetNumberHelper + 0x0000000000000000 0x52 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_ParseWithLengthOpts + 0x0000000000000000 0xce esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_ParseWithOpts + 0x0000000000000000 0x20 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_Parse + 0x0000000000000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_ParseWithLength + 0x0000000000000000 0x15 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_PrintUnformatted + 0x0000000000000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_PrintBuffered + 0x0000000000000000 0x68 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_PrintPreallocated + 0x0000000000000000 0x4e esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_GetArraySize + 0x0000000000000000 0x1a esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_GetArrayItem + 0x0000000000000000 0x19 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_GetObjectItem + 0x0000000000000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_GetObjectItemCaseSensitive + 0x0000000000000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_HasObjectItem + 0x0000000000000000 0x16 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_AddItemToObjectCS + 0x0000000000000000 0x18 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_AddItemReferenceToArray + 0x0000000000000000 0x24 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_AddItemReferenceToObject + 0x0000000000000000 0x3a esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_DetachItemViaPointer + 0x0000000000000000 0x4c esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_DetachItemFromArray + 0x0000000000000000 0x24 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_DeleteItemFromArray + 0x0000000000000000 0x15 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_DetachItemFromObject + 0x0000000000000000 0x1c esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_DetachItemFromObjectCaseSensitive + 0x0000000000000000 0x1c esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_DeleteItemFromObject + 0x0000000000000000 0x15 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_DeleteItemFromObjectCaseSensitive + 0x0000000000000000 0x15 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_InsertItemInArray + 0x0000000000000000 0x42 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_ReplaceItemViaPointer + 0x0000000000000000 0x6a esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_ReplaceItemInArray + 0x0000000000000000 0x25 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateNull + 0x0000000000000000 0x16 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_AddNullToObject + 0x0000000000000000 0x2e esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateTrue + 0x0000000000000000 0x16 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_AddTrueToObject + 0x0000000000000000 0x2e esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateFalse + 0x0000000000000000 0x16 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_AddFalseToObject + 0x0000000000000000 0x2e esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateBool + 0x0000000000000000 0x1d esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_AddBoolToObject + 0x0000000000000000 0x2e esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateStringReference + 0x0000000000000000 0x24 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateObjectReference + 0x0000000000000000 0x24 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateArrayReference + 0x0000000000000000 0x24 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateRaw + 0x0000000000000000 0x34 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_AddRawToObject + 0x0000000000000000 0x2e esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_AddArrayToObject + 0x0000000000000000 0x2e esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_AddObjectToObject + 0x0000000000000000 0x2e esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateIntArray + 0x0000000000000000 0x84 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateFloatArray + 0x0000000000000000 0x84 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateDoubleArray + 0x0000000000000000 0x7c esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateStringArray + 0x0000000000000000 0x7c esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_Minify + 0x0000000000000000 0x9f esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_IsInvalid + 0x0000000000000000 0x16 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_IsFalse + 0x0000000000000000 0x18 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_IsTrue + 0x0000000000000000 0x19 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_IsBool + 0x0000000000000000 0x18 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_IsNull + 0x0000000000000000 0x19 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_IsNumber + 0x0000000000000000 0x19 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_GetNumberValue + 0x0000000000000000 0x1d esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_IsString + 0x0000000000000000 0x19 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_GetStringValue + 0x0000000000000000 0x18 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_IsArray + 0x0000000000000000 0x19 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_IsObject + 0x0000000000000000 0x19 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_IsRaw + 0x0000000000000000 0x19 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_Compare + 0x0000000000000000 0x176 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_malloc + 0x0000000000000000 0x11 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_free + 0x0000000000000000 0xf esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_SetValuestring + 0x0000000000000000 0x5e esp-idf/json/libjson.a(cJSON.c.obj) + .text.replace_item_in_object + 0x0000000000000000 0x5d esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_ReplaceItemInObject + 0x0000000000000000 0x15 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_ReplaceItemInObjectCaseSensitive + 0x0000000000000000 0x15 esp-idf/json/libjson.a(cJSON.c.obj) + .bss.version$0 + 0x0000000000000000 0xf esp-idf/json/libjson.a(cJSON.c.obj) + .bss.global_error + 0x0000000000000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .text 0x0000000000000000 0x0 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + .data 0x0000000000000000 0x0 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + .literal.qrcodegen_encodeBinary + 0x0000000000000000 0x8 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .literal.qrcodegen_encodeSegments + 0x0000000000000000 0x4 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .literal.qrcodegen_makeBytes + 0x0000000000000000 0x20 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .literal.qrcodegen_makeEci + 0x0000000000000000 0x34 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .text 0x0000000000000000 0x0 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .data 0x0000000000000000 0x0 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .text.qrcodegen_encodeBinary + 0x0000000000000000 0x46 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .text.qrcodegen_encodeSegments + 0x0000000000000000 0x20 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .rodata.qrcodegen_makeBytes.str1.4 + 0x0000000000000000 0x33 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .text.qrcodegen_makeBytes + 0x0000000000000000 0x6e esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .text.qrcodegen_makeEci + 0x0000000000000000 0xde esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x12 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x14 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .data 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .literal.xt_set_exception_handler + 0x0000000000000000 0x8 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .data 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .text.xt_set_exception_handler + 0x0000000000000000 0x46 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .UserEnter.text + 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .literal.esp_efuse_read_field_bit + 0x0000000000000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_field_cnt + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_blob + 0x0000000000000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_cnt + 0x0000000000000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_bit + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_reg + 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_block + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_reg + 0x0000000000000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_block + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_begin + 0x0000000000000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_cancel + 0x0000000000000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_commit + 0x0000000000000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_read_field_bit.str1.4 + 0x0000000000000000 0x3b esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_bit + 0x0000000000000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_cnt + 0x0000000000000000 0x49 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_blob + 0x0000000000000000 0x7f esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_write_field_cnt.str1.4 + 0x0000000000000000 0x59 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_cnt + 0x0000000000000000 0xa3 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_bit + 0x0000000000000000 0x4c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_reg + 0x0000000000000000 0x57 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_block + 0x0000000000000000 0x4d esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_reg + 0x0000000000000000 0x2e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_block + 0x0000000000000000 0x4d esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_begin.str1.4 + 0x0000000000000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_begin + 0x0000000000000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_cancel.str1.4 + 0x0000000000000000 0x76 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_cancel + 0x0000000000000000 0x61 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_commit.str1.4 + 0x0000000000000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_commit + 0x0000000000000000 0x7c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x13 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x19 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss.s_batch_writing_mode + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss.s_efuse_lock + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.fill_reg + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.set_cnt_in_reg + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.write_reg + 0x0000000000000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_reset + 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_efuses + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_update_virt_blocks + 0x0000000000000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_single_block + 0x0000000000000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_pending + 0x0000000000000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_blocks + 0x0000000000000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_cnt + 0x0000000000000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_reg + 0x0000000000000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_blob + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_get_read_register_address + 0x0000000000000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_is_correct_written_data + 0x0000000000000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.fill_reg + 0x0000000000000000 0x9d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.set_cnt_in_reg + 0x0000000000000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.write_reg + 0x0000000000000000 0x87 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_reset.str1.4 + 0x0000000000000000 0x8e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_reset + 0x0000000000000000 0x73 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_efuses + 0x0000000000000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_erase_virt_blocks + 0x0000000000000000 0x5 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_update_virt_blocks.str1.4 + 0x0000000000000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_update_virt_blocks + 0x0000000000000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_single_block.str1.4 + 0x0000000000000000 0x12a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_single_block + 0x0000000000000000 0xba esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_pending + 0x0000000000000000 0x60 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_blocks.str1.4 + 0x0000000000000000 0xd esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_blocks + 0x0000000000000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_cnt + 0x0000000000000000 0x4d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_write_reg.str1.4 + 0x0000000000000000 0x5d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_reg + 0x0000000000000000 0x4d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_blob + 0x0000000000000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_get_read_register_address.str1.4 + 0x0000000000000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_get_read_register_address + 0x0000000000000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_is_correct_written_data.str1.4 + 0x0000000000000000 0xdd esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_is_correct_written_data + 0x0000000000000000 0xa2 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x25 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0xa esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0xf esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_set_write_protect + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_read_protect + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_block_is_empty + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_dis_read + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_dis_read + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_dis_write + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_dis_write + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_key_block_unused + 0x0000000000000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_find_purpose + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_key + 0x0000000000000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_keys + 0x0000000000000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect + 0x0000000000000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_read_protect + 0x0000000000000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_block_is_empty + 0x0000000000000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_get_key_dis_read.str1.4 + 0x0000000000000000 0xa3 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_read + 0x0000000000000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_read + 0x0000000000000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_write + 0x0000000000000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_write + 0x0000000000000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_key_block_unused + 0x0000000000000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_purpose + 0x0000000000000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_keypurpose_dis_write + 0x0000000000000000 0x7 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_purpose + 0x0000000000000000 0x29 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_key + 0x0000000000000000 0xa0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_keys.str1.4 + 0x0000000000000000 0xa1 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_keys + 0x0000000000000000 0xff esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.s_table + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_VERSION + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_TP_HIGH + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_TP_LOW + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_TP_HIGH + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_TP_LOW + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLOCK2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLOCK1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_STATUS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_CACHE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_DECRYPT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_ENCRYPT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_JTAG_DISABLE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ABS_DONE_1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ABS_DONE_0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_SDIO_HOST + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CONSOLE_DEBUG_DISABLE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CODING_SCHEME + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_CRYPT_CONFIG + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MINOR + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VOL_LEVEL_HP_INV + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_VER_REV2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_CS0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_Q + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_CLK + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_XPD_SDIO_FORCE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_XPD_SDIO_TIEH + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_XPD_SDIO_REG + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC_VREF + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CLK8M_FREQ + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_VER_REV1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLK3_PART_RESERVE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_CPU_FREQ_RATED + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_CPU_FREQ_LOW + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_PACKAGE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_HD + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_CACHE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_PACKAGE_4BIT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_BT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_APP_CPU + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_UART_DOWNLOAD_DIS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_CRYPT_CNT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_KEY_STATUS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_CODING_SCHEME + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_FLASH_CRYPT_CONFIG + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLK3_PART_RESERVE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_MAC_VERSION + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_SECURE_VERSION + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC2_TP_HIGH + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC2_TP_LOW + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC1_TP_HIGH + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC1_TP_LOW + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_CUSTOM_MAC + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_CUSTOM_MAC_CRC + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_DL_CACHE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_DL_DECRYPT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_DL_ENCRYPT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CONSOLE_DEBUG_DISABLE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_JTAG_DISABLE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ABS_DONE_1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ABS_DONE_0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_STATUS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CODING_SCHEME + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_CRYPT_CONFIG + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK3_PART_RESERVE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_MAC_VERSION + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_VERSION + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_TP_HIGH + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_TP_LOW + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_TP_HIGH + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_TP_LOW + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CUSTOM_MAC + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CUSTOM_MAC_CRC + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_Q + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CLK + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_XPD_SDIO_FORCE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_XPD_SDIO_TIEH + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_XPD_SDIO_REG + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC_VREF + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CLK8M_FREQ + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_VOL_LEVEL_HP_INV + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_CACHE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_BT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_APP_CPU + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_MAC_CRC + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_MAC + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_UART_DOWNLOAD_DIS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_CRYPT_CNT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WR_DIS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_RD_DIS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_VERSION + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_TP_HIGH + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_TP_LOW + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_TP_HIGH + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_TP_LOW + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLOCK2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLOCK1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_STATUS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_CACHE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_DECRYPT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_ENCRYPT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.JTAG_DISABLE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ABS_DONE_1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ABS_DONE_0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_SDIO_HOST + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CONSOLE_DEBUG_DISABLE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CODING_SCHEME + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_CRYPT_CONFIG + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MINOR + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.VOL_LEVEL_HP_INV + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_VER_REV2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_CS0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_Q + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_CLK + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.XPD_SDIO_FORCE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.XPD_SDIO_TIEH + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.XPD_SDIO_REG + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC_VREF + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CLK8M_FREQ + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_VER_REV1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLK3_PART_RESERVE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_CPU_FREQ_RATED + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_CPU_FREQ_LOW + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_PACKAGE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_HD + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_CACHE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_PACKAGE_4BIT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_BT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_APP_CPU + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.UART_DOWNLOAD_DIS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_CRYPT_CNT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_KEY_STATUS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_CODING_SCHEME + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_FLASH_CRYPT_CONFIG + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLK3_PART_RESERVE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_MAC_VERSION + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_SECURE_VERSION + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC2_TP_HIGH + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC2_TP_LOW + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC1_TP_HIGH + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC1_TP_LOW + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_CUSTOM_MAC + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_CUSTOM_MAC_CRC + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_DL_CACHE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_DL_DECRYPT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_DL_ENCRYPT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CONSOLE_DEBUG_DISABLE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_JTAG_DISABLE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ABS_DONE_1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ABS_DONE_0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_STATUS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CODING_SCHEME + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_CRYPT_CONFIG + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK3_PART_RESERVE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_MAC_VERSION + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_VERSION + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_TP_HIGH + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_TP_LOW + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_TP_HIGH + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_TP_LOW + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CUSTOM_MAC + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CUSTOM_MAC_CRC + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_CS0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_Q + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_CLK + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_XPD_SDIO_FORCE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_XPD_SDIO_TIEH + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_XPD_SDIO_REG + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC_VREF + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CLK8M_FREQ + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_VOL_LEVEL_HP_INV + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_CACHE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_BT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_APP_CPU + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_MAC_CRC + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_MAC + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_UART_DOWNLOAD_DIS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_CRYPT_CNT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WR_DIS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_RD_DIS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .literal.apply_repeat_encoding + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_set_timing + 0x0000000000000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.read_r_data + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_clear_program_registers + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_apply_34_encoding + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_chip + 0x0000000000000000 0xbc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_apply_new_coding_scheme + 0x0000000000000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.apply_repeat_encoding + 0x0000000000000000 0x1f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_set_timing + 0x0000000000000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.read_r_data + 0x0000000000000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_clear_program_registers + 0x0000000000000000 0xb esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_34_encoding + 0x0000000000000000 0x8b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_burn_chip.str1.4 + 0x0000000000000000 0x2a7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip + 0x0000000000000000 0x264 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_apply_new_coding_scheme.str1.4 + 0x0000000000000000 0x4a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_new_coding_scheme + 0x0000000000000000 0x113 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.start_write_addr + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_write_addr_blocks + 0x0000000000000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss.write_mass_blocks + 0x0000000000000000 0x80 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.gpio_input_disable + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_od_enable + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_od_disable + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_iomux_out + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_output_disable + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_pullup_en + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_pulldown_en + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_input_enable + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_input_enable + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_set_drive_capability + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_get_drive_capability + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_sleep_input_enable + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_input_enable + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_sleep_input_disable + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_input_disable + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_sleep_output_enable + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_output_enable + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_sleep_output_disable + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_output_disable + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_sleep_pulldown_en + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_pulldown_en + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_sleep_pullup_en + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_pullup_en + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_sleep_pulldown_dis + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_pulldown_dis + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_sleep_pullup_dis + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_pullup_dis + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_sleep_sel_en + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_sleep_sel_dis + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_intr_enable_on_core + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_output_enable + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .iram1.0.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + .iram1.1.literal + 0x0000000000000000 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_isr_register_on_core_static + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_pullup_en + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_pullup_dis + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_pulldown_en + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_pulldown_dis + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_intr_type + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_intr_enable + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_intr_disable + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_level + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_get_level + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_pull_mode + 0x0000000000000000 0x54 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_direction + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_config + 0x0000000000000000 0x9c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_reset_pin + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_isr_handler_add + 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_isr_handler_remove + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_uninstall_isr_service + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_isr_register + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_install_isr_service + 0x0000000000000000 0x4c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_wakeup_enable + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_wakeup_disable + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_drive_capability + 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_get_drive_capability + 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_hold_en + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_hold_dis + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_deep_sleep_hold_en + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_deep_sleep_hold_dis + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_iomux_in + 0x0000000000000000 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_iomux_out + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_set_direction + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_set_pull_mode + 0x0000000000000000 0x54 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_sel_en + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_sel_dis + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_input_disable.str1.4 + 0x0000000000000000 0x3e esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_input_disable + 0x0000000000000000 0x81 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_od_enable + 0x0000000000000000 0x80 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_od_disable + 0x0000000000000000 0x80 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_ll_iomux_out.str1.4 + 0x0000000000000000 0xbd esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_iomux_out + 0x0000000000000000 0x7e esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_output_disable.str1.4 + 0x0000000000000000 0xc0 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_output_disable + 0x0000000000000000 0xe8 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_ll_pullup_en.str1.4 + 0x0000000000000000 0xac esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_pullup_en + 0x0000000000000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_pulldown_en + 0x0000000000000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_ll_input_enable.str1.4 + 0x0000000000000000 0xb8 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_input_enable + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_input_enable + 0x0000000000000000 0x74 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_ll_set_drive_capability.str1.4 + 0x0000000000000000 0xb8 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_set_drive_capability + 0x0000000000000000 0x4c esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_ll_get_drive_capability.str1.4 + 0x0000000000000000 0xba esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_get_drive_capability + 0x0000000000000000 0x3a esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_sleep_input_enable + 0x0000000000000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_input_enable + 0x0000000000000000 0x74 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_ll_sleep_input_disable.str1.4 + 0x0000000000000000 0xbc esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_sleep_input_disable + 0x0000000000000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_input_disable + 0x0000000000000000 0x72 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_sleep_output_enable + 0x0000000000000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_sleep_output_enable.str1.4 + 0x0000000000000000 0x1b esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_output_enable + 0x0000000000000000 0x74 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_sleep_output_disable + 0x0000000000000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_output_disable + 0x0000000000000000 0x74 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_sleep_pulldown_en + 0x0000000000000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_pulldown_en + 0x0000000000000000 0x89 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_sleep_pullup_en + 0x0000000000000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_pullup_en + 0x0000000000000000 0x89 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_sleep_pulldown_dis + 0x0000000000000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_pulldown_dis + 0x0000000000000000 0x89 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_sleep_pullup_dis + 0x0000000000000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_pullup_dis + 0x0000000000000000 0x89 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_sleep_sel_en + 0x0000000000000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_sleep_sel_dis + 0x0000000000000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_intr_enable_on_core + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_output_enable + 0x0000000000000000 0xc1 esp-idf/driver/libdriver.a(gpio.c.obj) + .iram1.0 0x0000000000000000 0x125 esp-idf/driver/libdriver.a(gpio.c.obj) + .iram1.1 0x0000000000000000 0x70 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_register_on_core_static + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pullup_en + 0x0000000000000000 0x9e esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pullup_dis + 0x0000000000000000 0xad esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pulldown_en + 0x0000000000000000 0x9e esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pulldown_dis + 0x0000000000000000 0xac esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_set_intr_type.str1.4 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_intr_type + 0x0000000000000000 0x12d esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_intr_enable + 0x0000000000000000 0x9a esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_intr_disable + 0x0000000000000000 0x71 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_level + 0x0000000000000000 0x106 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_get_level + 0x0000000000000000 0x3e esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_set_pull_mode.str1.4 + 0x0000000000000000 0x5e esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_pull_mode + 0x0000000000000000 0x11d esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_set_direction.str1.4 + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_direction + 0x0000000000000000 0xfd esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_config.str1.4 + 0x0000000000000000 0x11c esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_config + 0x0000000000000000 0x214 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_reset_pin.str1.4 + 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_reset_pin + 0x0000000000000000 0x75 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_isr_handler_add.str1.4 + 0x0000000000000000 0x49 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_handler_add + 0x0000000000000000 0xe5 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_handler_remove + 0x0000000000000000 0xce esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_uninstall_isr_service + 0x0000000000000000 0x4e esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_isr_register.str1.4 + 0x0000000000000000 0x81 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_register + 0x0000000000000000 0xbe esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_install_isr_service.str1.4 + 0x0000000000000000 0x23 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_install_isr_service + 0x0000000000000000 0xb2 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_wakeup_enable.str1.4 + 0x0000000000000000 0x5d esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_wakeup_enable + 0x0000000000000000 0xf7 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_wakeup_disable + 0x0000000000000000 0xb0 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_set_drive_capability.str1.4 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_drive_capability + 0x0000000000000000 0xd2 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_get_drive_capability.str1.4 + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_get_drive_capability + 0x0000000000000000 0xd2 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_hold_en.str1.4 + 0x0000000000000000 0x2f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_hold_en + 0x0000000000000000 0xb8 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_hold_dis + 0x0000000000000000 0xbe esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_deep_sleep_hold_en + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_deep_sleep_hold_dis + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_iomux_in + 0x0000000000000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_iomux_out + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_set_direction + 0x0000000000000000 0xe1 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_set_pull_mode + 0x0000000000000000 0x11d esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_sel_en + 0x0000000000000000 0x89 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_sel_dis + 0x0000000000000000 0x89 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$1 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$3 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$5 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0x1b esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$8 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$9 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$10 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$11 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$12 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$13 + 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$14 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$15 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$16 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$17 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$18 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$19 + 0x0000000000000000 0x1b esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$20 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$21 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$22 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$23 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$24 + 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$25 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$26 + 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$27 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$28 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$29 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$30 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$31 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$32 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$33 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$34 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$35 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$36 + 0x0000000000000000 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$37 + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$38 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$39 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$40 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$41 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$42 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$43 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$44 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$45 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$46 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$47 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$48 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$49 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$50 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$51 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$52 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$53 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$54 + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$55 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$56 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .data.gpio_context + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(gpio.c.obj) + .data._gpio_hal + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_frame 0x0000000000000000 0x640 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_info 0x0000000000000000 0x5ac8 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_abbrev 0x0000000000000000 0x576 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_loc 0x0000000000000000 0x26c2 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_aranges + 0x0000000000000000 0x228 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_ranges 0x0000000000000000 0x240 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_line 0x0000000000000000 0x590d esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_str 0x0000000000000000 0x1d12 esp-idf/driver/libdriver.a(gpio.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.rtcio_ll_iomux_func_sel + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtcio_ll_function_select + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtcio_ll_set_drive_capability + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtcio_ll_get_drive_capability + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtcio_ll_pullup_enable + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtcio_ll_pullup_disable + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtcio_ll_pulldown_enable + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtcio_ll_pulldown_disable + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtcio_ll_force_hold_enable + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtcio_ll_force_hold_disable + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_is_valid_gpio + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_io_number_get + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_init + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_deinit + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_level + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_get_level + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_drive_capability + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_get_drive_capability + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_direction + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_direction_in_sleep + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_pullup_en + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_pullup_dis + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_pulldown_en + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_pulldown_dis + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_iomux_func_sel + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_hold_en + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_hold_dis + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_force_hold_en_all + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_force_hold_dis_all + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_isolate + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_wakeup_enable + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_wakeup_disable + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtcio_ll_iomux_func_sel.str1.4 + 0x0000000000000000 0xeb esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtcio_ll_iomux_func_sel + 0x0000000000000000 0x63 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtcio_ll_function_select.str1.4 + 0x0000000000000000 0x174 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtcio_ll_function_select + 0x0000000000000000 0xab esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtcio_ll_set_drive_capability + 0x0000000000000000 0x72 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtcio_ll_get_drive_capability.str1.4 + 0x0000000000000000 0xba esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtcio_ll_get_drive_capability + 0x0000000000000000 0x54 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtcio_ll_pullup_enable + 0x0000000000000000 0x4b esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtcio_ll_pullup_disable + 0x0000000000000000 0x50 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtcio_ll_pulldown_enable + 0x0000000000000000 0x4b esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtcio_ll_pulldown_disable + 0x0000000000000000 0x50 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtcio_ll_force_hold_enable.str1.4 + 0x0000000000000000 0xac esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtcio_ll_force_hold_enable + 0x0000000000000000 0x5e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtcio_ll_force_hold_disable.str1.4 + 0x0000000000000000 0xac esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtcio_ll_force_hold_disable + 0x0000000000000000 0x67 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_is_valid_gpio + 0x0000000000000000 0x21 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_io_number_get + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_init.str1.4 + 0x0000000000000000 0x3b esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_init + 0x0000000000000000 0x5d esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_deinit + 0x0000000000000000 0x5d esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_level + 0x0000000000000000 0xa2 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_get_level + 0x0000000000000000 0x52 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_set_drive_capability.str1.4 + 0x0000000000000000 0x6d esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_drive_capability + 0x0000000000000000 0xde esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_get_drive_capability.str1.4 + 0x0000000000000000 0x39 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_get_drive_capability + 0x0000000000000000 0xc6 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction + 0x0000000000000000 0x5e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction_in_sleep + 0x0000000000000000 0x5e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_pullup_en + 0x0000000000000000 0x5c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_pullup_dis + 0x0000000000000000 0x5c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_pulldown_en + 0x0000000000000000 0x5c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_pulldown_dis + 0x0000000000000000 0x5c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_iomux_func_sel + 0x0000000000000000 0x5e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_hold_en + 0x0000000000000000 0x5c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_hold_dis + 0x0000000000000000 0x5c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_en_all + 0x0000000000000000 0x2e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_dis_all + 0x0000000000000000 0x2e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_isolate + 0x0000000000000000 0x5c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_enable + 0x0000000000000000 0x92 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_disable + 0x0000000000000000 0x7e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$0 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$1 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$2 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$4 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x1b esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$7 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$8 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$9 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$10 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$11 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$12 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$13 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$14 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$15 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$16 + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$17 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$18 + 0x0000000000000000 0x1e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$19 + 0x0000000000000000 0x1e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$20 + 0x0000000000000000 0x1e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$21 + 0x0000000000000000 0x1e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$22 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$23 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$24 + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$25 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$26 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$27 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_frame 0x0000000000000000 0x310 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_info 0x0000000000000000 0x2f98 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_abbrev 0x0000000000000000 0x3c0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_loc 0x0000000000000000 0x8fc esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_aranges + 0x0000000000000000 0x118 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_ranges 0x0000000000000000 0x108 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_line 0x0000000000000000 0x2419 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_str 0x0000000000000000 0x1766 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.uart_pattern_dequeue + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_pattern_link_free + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_try_set_iomux_pin + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_module_enable + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_enable_tx_write_fifo + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_check_buf_full + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_pattern_enqueue + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_rx_intr_handler_default + 0x0000000000000000 0x114 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_free_driver_obj + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_alloc_driver_obj + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_module_disable + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_get_sclk_freq + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_line_inverse + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_sw_flow_ctrl + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_hw_flow_ctrl + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_get_hw_flow_ctrl + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_clear_intr_status + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_enable_intr_mask + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_disable_intr_mask + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_pattern_pop_pos + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_pattern_get_pos + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_pattern_queue_reset + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_enable_pattern_det_baud_intr + 0x0000000000000000 0x50 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_disable_pattern_det_intr + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_enable_rx_intr + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_disable_rx_intr + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_disable_tx_intr + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_enable_tx_intr + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_tx_all + 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_pin + 0x0000000000000000 0xb4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_rts + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_dtr + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_tx_idle_num + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_param_config + 0x0000000000000000 0x8c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_intr_config + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_tx_chars + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_write_bytes + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_write_bytes_with_break + 0x0000000000000000 0x4c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_read_bytes + 0x0000000000000000 0x60 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_get_tx_buffer_free_size + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_driver_delete + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_driver_install + 0x0000000000000000 0xb0 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_mode + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_rx_full_threshold + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_tx_empty_threshold + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_rx_timeout + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_get_collision_flag + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_wakeup_threshold + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_get_wakeup_threshold + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_wait_tx_idle_polling + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_loop_back + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_always_rx_timeout + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_dequeue + 0x0000000000000000 0x36 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_find_pattern_from_last + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_link_free + 0x0000000000000000 0x42 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_try_set_iomux_pin + 0x0000000000000000 0x7a esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_module_enable + 0x0000000000000000 0x57 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_tx_write_fifo + 0x0000000000000000 0xa8 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_check_buf_full + 0x0000000000000000 0x6d esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_pattern_enqueue.str1.4 + 0x0000000000000000 0x51 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_enqueue + 0x0000000000000000 0x54 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_rx_intr_handler_default + 0x0000000000000000 0x8e2 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_free_driver_obj + 0x0000000000000000 0x72 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_alloc_driver_obj + 0x0000000000000000 0xce esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_module_disable + 0x0000000000000000 0x4b esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_sclk_freq + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_line_inverse + 0x0000000000000000 0x56 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_sw_flow_ctrl.str1.4 + 0x0000000000000000 0x76 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_sw_flow_ctrl + 0x0000000000000000 0xca esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_hw_flow_ctrl.str1.4 + 0x0000000000000000 0x6f esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_hw_flow_ctrl + 0x0000000000000000 0xb0 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_hw_flow_ctrl + 0x0000000000000000 0x56 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_clear_intr_status + 0x0000000000000000 0x3f esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_intr_mask + 0x0000000000000000 0x71 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_disable_intr_mask + 0x0000000000000000 0x70 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_pop_pos + 0x0000000000000000 0x84 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_get_pos + 0x0000000000000000 0x7a esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_queue_reset + 0x0000000000000000 0xb1 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_enable_pattern_det_baud_intr.str1.4 + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_pattern_det_baud_intr + 0x0000000000000000 0x13c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_disable_pattern_det_intr + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_rx_intr + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_disable_rx_intr + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_disable_tx_intr + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_enable_tx_intr.str1.4 + 0x0000000000000000 0x3b esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_tx_intr + 0x0000000000000000 0x99 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_tx_all + 0x0000000000000000 0x17d esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_pin.str1.4 + 0x0000000000000000 0x185 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_pin + 0x0000000000000000 0x38a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_rts.str1.4 + 0x0000000000000000 0x4c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_rts + 0x0000000000000000 0x9c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_dtr + 0x0000000000000000 0x56 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_tx_idle_num.str1.4 + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_tx_idle_num + 0x0000000000000000 0x86 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_param_config.str1.4 + 0x0000000000000000 0x2b esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_param_config + 0x0000000000000000 0x1a9 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_intr_config + 0x0000000000000000 0xed esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_tx_chars.str1.4 + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_tx_chars + 0x0000000000000000 0xbe esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_write_bytes + 0x0000000000000000 0x98 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_write_bytes_with_break.str1.4 + 0x0000000000000000 0x90 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_write_bytes_with_break + 0x0000000000000000 0xf0 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_read_bytes + 0x0000000000000000 0x1ac esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_get_tx_buffer_free_size.str1.4 + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_tx_buffer_free_size + 0x0000000000000000 0x9b esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_driver_delete.str1.4 + 0x0000000000000000 0x25 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_driver_delete + 0x0000000000000000 0x92 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_driver_install.str1.4 + 0x0000000000000000 0x21f esp-idf/driver/libdriver.a(uart.c.obj) + .rodata 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_driver_install + 0x0000000000000000 0x26e esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_mode.str1.4 + 0x0000000000000000 0x4c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_mode + 0x0000000000000000 0x11e esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_rx_full_threshold.str1.4 + 0x0000000000000000 0x7f esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_rx_full_threshold + 0x0000000000000000 0xc6 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_tx_empty_threshold.str1.4 + 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_tx_empty_threshold + 0x0000000000000000 0xc6 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_rx_timeout.str1.4 + 0x0000000000000000 0x3e esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_rx_timeout + 0x0000000000000000 0x96 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_get_collision_flag.str1.4 + 0x0000000000000000 0x63 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_collision_flag + 0x0000000000000000 0xd6 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_wakeup_threshold.str1.4 + 0x0000000000000000 0x3f esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_wakeup_threshold + 0x0000000000000000 0x8e esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_get_wakeup_threshold.str1.4 + 0x0000000000000000 0x31 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_wakeup_threshold + 0x0000000000000000 0x6c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_wait_tx_idle_polling + 0x0000000000000000 0x6b esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_loop_back + 0x0000000000000000 0x42 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_always_rx_timeout + 0x0000000000000000 0x57 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$49 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$48 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$47 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$46 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$45 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$44 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$43 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$42 + 0x0000000000000000 0x1b esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$41 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$40 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + .bss.pat_flg$39 + 0x0000000000000000 0x1 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$38 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$36 + 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$33 + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$32 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$31 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$30 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$27 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$26 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$25 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$24 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$23 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__func__$22 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$20 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$19 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$18 + 0x0000000000000000 0x22 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$17 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$16 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$15 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$14 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$13 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$12 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$11 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$10 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$9 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$8 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .literal.bootloader_mmap_get_free_pages + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_mmap + 0x0000000000000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_munmap + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_read + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_write + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_erase_sector + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_erase_range + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.0.literal + 0x0000000000000000 0x3c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.3.literal + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_enable_wp + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_spi_flash_reset + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.7.literal + 0x0000000000000000 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_get_spi_mode + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.6 0x0000000000000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_mmap_get_free_pages + 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_mmap.str1.4 + 0x0000000000000000 0x7c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_mmap + 0x0000000000000000 0x73 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_munmap + 0x0000000000000000 0x1d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_read + 0x0000000000000000 0x36 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_write + 0x0000000000000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_sector + 0x0000000000000000 0x15 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_range + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.0 0x0000000000000000 0x13a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.3 0x0000000000000000 0x3c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_enable_wp + 0x0000000000000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_spi_flash_reset + 0x0000000000000000 0x23 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.7 0x0000000000000000 0xc1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.13 0x0000000000000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_get_spi_mode + 0x0000000000000000 0x39 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .dram1.11 0x0000000000000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .dram1.10 0x0000000000000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .dram1.5 0x0000000000000000 0x11 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .bss.map 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.print_flash_info + 0x0000000000000000 0x6c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.update_flash_config + 0x0000000000000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.bootloader_flash_update_size + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.10.literal + 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.bootloader_configure_spi_pins + 0x0000000000000000 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.bootloader_init_spi_flash + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .rodata.print_flash_info.str1.4 + 0x0000000000000000 0xf8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.print_flash_info + 0x0000000000000000 0x11b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.update_flash_config + 0x0000000000000000 0x8e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.bootloader_flash_update_size + 0x0000000000000000 0xa esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.10 0x0000000000000000 0x1d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.bootloader_configure_spi_pins + 0x0000000000000000 0x17a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.bootloader_init_spi_flash + 0x0000000000000000 0x2b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.bootloader_clock_get_rated_freq_mhz + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .text.bootloader_clock_get_rated_freq_mhz + 0x0000000000000000 0xd esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .literal.esp_flash_write_protect_crypt_cnt + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_get_flash_encryption_mode + 0x0000000000000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_init_checks + 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_set_release_mode + 0x0000000000000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_cfg_verify_release_mode + 0x0000000000000000 0xe4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_write_protect_crypt_cnt + 0x0000000000000000 0xe esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_get_flash_encryption_mode + 0x0000000000000000 0x8a esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_init_checks.str1.4 + 0x0000000000000000 0x95 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_init_checks + 0x0000000000000000 0x46 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_set_release_mode.str1.4 + 0x0000000000000000 0x8e esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_set_release_mode + 0x0000000000000000 0xde esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_cfg_verify_release_mode.str1.4 + 0x0000000000000000 0x3d6 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_cfg_verify_release_mode + 0x0000000000000000 0x1f4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .iram1.17.literal + 0x0000000000000000 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map_get_max_consecutive_free_block_size + 0x0000000000000000 0x28 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map_reserve_block_with_caps + 0x0000000000000000 0x50 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map_dump_mapped_blocks + 0x0000000000000000 0x74 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.5.literal + 0x0000000000000000 0x5c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .literal.esp_mmu_paddr_to_vaddr + 0x0000000000000000 0x24 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.17 0x0000000000000000 0x23 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_get_max_consecutive_free_block_size + 0x0000000000000000 0xa9 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_reserve_block_with_caps + 0x0000000000000000 0xe0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_dump_mapped_blocks.str1.4 + 0x0000000000000000 0x152 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_dump_mapped_blocks + 0x0000000000000000 0x12e esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.5 0x0000000000000000 0x171 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_paddr_to_vaddr.str1.4 + 0x0000000000000000 0x33 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.esp_mmu_paddr_to_vaddr + 0x0000000000000000 0x7c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$0 + 0x0000000000000000 0x17 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$6 + 0x0000000000000000 0x24 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$7 + 0x0000000000000000 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.15 0x0000000000000000 0x1a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.14 0x0000000000000000 0x18 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.13 0x0000000000000000 0x1a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.12 0x0000000000000000 0x1b esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.11 0x0000000000000000 0x1e esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.10 0x0000000000000000 0x20 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.9 0x0000000000000000 0x19 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.8 0x0000000000000000 0x18 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.7 0x0000000000000000 0x1d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.6 0x0000000000000000 0x1f esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .literal.cache_register_writeback + 0x0000000000000000 0x4 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .text.cache_register_writeback + 0x0000000000000000 0xc esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .iram1.9.literal + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.10.literal + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.9 0x0000000000000000 0x2f esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.10 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .literal.s_merge_contiguous_pages + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_pages + 0x0000000000000000 0x28 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_dump + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_get_free_pages + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.spi_flash_phys2cache + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.s_find_non_contiguous_block_nums + 0x0000000000000000 0x25 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.s_pages_to_bytes + 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.s_merge_contiguous_pages + 0x0000000000000000 0x59 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_pages + 0x0000000000000000 0x107 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_dump + 0x0000000000000000 0x13 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_get_free_pages + 0x0000000000000000 0x21 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.spi_flash_phys2cache.str1.4 + 0x0000000000000000 0xe esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_phys2cache + 0x0000000000000000 0x41 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x15 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x19 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.9.literal + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.9 0x0000000000000000 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.12 0x0000000000000000 0x5 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .dram1.7 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.11.literal + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.find_region + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_read_id + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_read_unique_chip_id + 0x0000000000000000 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.8.literal + 0x0000000000000000 0x58 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.14.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.15.literal + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.17.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.18.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_get_protectable_regions + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.19.literal + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.20.literal + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.28.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.29.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_suspend_cmd_init + 0x0000000000000000 0x2c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_app_disable_protect + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.11 0x0000000000000000 0x32 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.find_region + 0x0000000000000000 0x3c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_read_id + 0x0000000000000000 0x38 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_read_unique_chip_id + 0x0000000000000000 0x84 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.8 0x0000000000000000 0x15e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.14 0x0000000000000000 0x38 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.15 0x0000000000000000 0x48 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.17 0x0000000000000000 0x58 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.18 0x0000000000000000 0x50 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_get_protectable_regions + 0x0000000000000000 0x54 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.19 0x0000000000000000 0xa4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.20 0x0000000000000000 0xd8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.28 0x0000000000000000 0x64 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.29 0x0000000000000000 0x60 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.esp_flash_suspend_cmd_init.str1.4 + 0x0000000000000000 0x93 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_suspend_cmd_init + 0x0000000000000000 0x7a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_app_disable_protect + 0x0000000000000000 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.acquire_spi_device + 0x0000000000000000 0x38 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .iram1.0.literal + 0x0000000000000000 0x38 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.spi_bus_remove_flash_device + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.spi_bus_add_flash_device + 0x0000000000000000 0x3c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.use_bus_lock + 0x0000000000000000 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.acquire_spi_device.str1.4 + 0x0000000000000000 0xa6 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.acquire_spi_device + 0x0000000000000000 0xce esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.str1.4 + 0x0000000000000000 0xc8 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .iram1.0 0x0000000000000000 0x13a esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.spi_bus_remove_flash_device + 0x0000000000000000 0x39 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.spi_bus_add_flash_device.str1.4 + 0x0000000000000000 0x2c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.spi_bus_add_flash_device + 0x0000000000000000 0x15b esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0xe esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x19 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .iram1.3.literal + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.5.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.2.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.4.literal + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.esp_flash_init_os_functions + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.esp_flash_deinit_os_functions + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.use_bus_lock + 0x0000000000000000 0xa esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.3 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.5 0x0000000000000000 0x1a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.2 0x0000000000000000 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.4 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_os_functions + 0x0000000000000000 0x6b esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_deinit_os_functions + 0x0000000000000000 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_main_bus_lock + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .rodata.esp_flash_spi23_default_os_functions + 0x0000000000000000 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.11.literal + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.9 0x0000000000000000 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.11 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .literal.memspi_host_erase_sector + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.memspi_host_erase_block + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.memspi_host_program_page + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_erase_chip + 0x0000000000000000 0x26 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.memspi_host_erase_sector.str1.4 + 0x0000000000000000 0x4c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_erase_sector + 0x0000000000000000 0x4a esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_erase_block + 0x0000000000000000 0x4b esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.memspi_host_program_page.str1.4 + 0x0000000000000000 0x1e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_program_page + 0x0000000000000000 0x52 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_read + 0x0000000000000000 0x32 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_set_write_protect + 0x0000000000000000 0x32 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal._esp_error_check_failed_without_abort + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .rodata._esp_error_check_failed_without_abort.str1.4 + 0x0000000000000000 0x1e esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .text._esp_error_check_failed_without_abort + 0x0000000000000000 0x2c esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .iram1.4.literal + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.5.literal + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.4 0x0000000000000000 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.5 0x0000000000000000 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .literal.delete_entry + 0x0000000000000000 0x58 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_stop + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_restart + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_add_user + 0x0000000000000000 0x28 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_reset_user + 0x0000000000000000 0x48 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_delete + 0x0000000000000000 0x20 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.unsubscribe_idle + 0x0000000000000000 0x2c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_reconfigure + 0x0000000000000000 0x44 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_deinit + 0x0000000000000000 0x3c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_delete_user + 0x0000000000000000 0x28 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_status + 0x0000000000000000 0x2c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.delete_entry + 0x0000000000000000 0x11a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_stop + 0x0000000000000000 0x35 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_restart + 0x0000000000000000 0x35 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_add_user + 0x0000000000000000 0x86 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_reset_user.str1.4 + 0x0000000000000000 0x36 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_reset_user + 0x0000000000000000 0xc2 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_delete + 0x0000000000000000 0x4a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.unsubscribe_idle.str1.4 + 0x0000000000000000 0x26 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.unsubscribe_idle + 0x0000000000000000 0x5b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_reconfigure.str1.4 + 0x0000000000000000 0x39 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_reconfigure + 0x0000000000000000 0xde esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_deinit.str1.4 + 0x0000000000000000 0x3d esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_deinit + 0x0000000000000000 0x9b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_delete_user + 0x0000000000000000 0x6c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_status + 0x0000000000000000 0x6a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$0 + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$1 + 0x0000000000000000 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$2 + 0x0000000000000000 0xd esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$3 + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$4 + 0x0000000000000000 0x18 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$6 + 0x0000000000000000 0x16 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$9 + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__func__$10 + 0x0000000000000000 0x11 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$11 + 0x0000000000000000 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_impl_timer_reconfigure + 0x0000000000000000 0x10 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .literal.esp_task_wdt_impl_timer_free + 0x0000000000000000 0x28 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .literal.esp_task_wdt_impl_timer_stop + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text.esp_task_wdt_impl_timer_reconfigure + 0x0000000000000000 0x51 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .rodata.esp_task_wdt_impl_timer_free.str1.4 + 0x0000000000000000 0x84 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text.esp_task_wdt_impl_timer_free + 0x0000000000000000 0x50 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text.esp_task_wdt_impl_timer_stop + 0x0000000000000000 0x29 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1d esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .iram1.0.literal + 0x0000000000000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .iram1.0 0x0000000000000000 0x22 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .literal.spi_cache_mode_switch + 0x0000000000000000 0x3c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_read_status + 0x0000000000000000 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_wait_idle + 0x0000000000000000 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_chip_internal + 0x0000000000000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_block_internal + 0x0000000000000000 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_sector_internal + 0x0000000000000000 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_read_data + 0x0000000000000000 0x34 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_enable_write + 0x0000000000000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_program_page_internal + 0x0000000000000000 0x40 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_read_statushigh + 0x0000000000000000 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_write_status + 0x0000000000000000 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_clear_bp + 0x0000000000000000 0x38 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_set_bp + 0x0000000000000000 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_config_readmode + 0x0000000000000000 0x2c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_chip + 0x0000000000000000 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_block + 0x0000000000000000 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_sector + 0x0000000000000000 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_write + 0x0000000000000000 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_write_encrypted + 0x0000000000000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_read + 0x0000000000000000 0x5c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_area + 0x0000000000000000 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_write_disable + 0x0000000000000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.spi_cache_mode_switch + 0x0000000000000000 0x286 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_read_status + 0x0000000000000000 0x63 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_wait_idle + 0x0000000000000000 0x32 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_chip_internal + 0x0000000000000000 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_block_internal + 0x0000000000000000 0x3c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_sector_internal + 0x0000000000000000 0x48 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .rodata.esp_rom_spiflash_read_data.str1.4 + 0x0000000000000000 0x170 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_read_data + 0x0000000000000000 0x12c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_enable_write + 0x0000000000000000 0x3d esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .rodata.esp_rom_spiflash_program_page_internal.str1.4 + 0x0000000000000000 0x13c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_program_page_internal + 0x0000000000000000 0x13a esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_read_statushigh + 0x0000000000000000 0x21 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_write_status + 0x0000000000000000 0x38 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_clear_bp + 0x0000000000000000 0xdc esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_set_bp + 0x0000000000000000 0x53 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_config_readmode + 0x0000000000000000 0x9e esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_chip + 0x0000000000000000 0x2a esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_block + 0x0000000000000000 0x6a esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_sector + 0x0000000000000000 0x6a esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_write + 0x0000000000000000 0xda esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_write_encrypted + 0x0000000000000000 0x5a esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_read + 0x0000000000000000 0x284 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_area + 0x0000000000000000 0xbe esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_write_disable + 0x0000000000000000 0x1d esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .rodata.__func__$16 + 0x0000000000000000 0x1b esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .rodata.__func__$14 + 0x0000000000000000 0x27 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_frame 0x0000000000000000 0x220 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_info 0x0000000000000000 0xfe7 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_abbrev 0x0000000000000000 0x32f esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_loc 0x0000000000000000 0xb8f esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_aranges + 0x0000000000000000 0xc8 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_ranges 0x0000000000000000 0xb8 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_line 0x0000000000000000 0x31a0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_str 0x0000000000000000 0x947 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.mmu_ll_entry_id_to_vaddr_base + 0x0000000000000000 0x1c esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_ll_find_entry_id_based_on_map_value + 0x0000000000000000 0xc esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_unmap_all + 0x0000000000000000 0x1c esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_init + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_paddr_to_vaddr + 0x0000000000000000 0x20 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_ll_entry_id_to_vaddr_base + 0x0000000000000000 0xaa esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_ll_find_entry_id_based_on_map_value + 0x0000000000000000 0x6a esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_unmap_all + 0x0000000000000000 0x8d esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_init + 0x0000000000000000 0xb esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_bytes_to_pages + 0x0000000000000000 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_paddr_to_vaddr + 0x0000000000000000 0x71 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1e esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x17 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .literal.rtcio_ll_input_disable + 0x0000000000000000 0x1c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_input_enable + 0x0000000000000000 0x1c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_enable_input_in_sleep + 0x0000000000000000 0x1c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_enable_output_in_sleep + 0x0000000000000000 0x1c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_enable_sleep_setting + 0x0000000000000000 0x1c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_disable_input_in_sleep + 0x0000000000000000 0x1c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_disable_output_in_sleep + 0x0000000000000000 0x1c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_disable_sleep_setting + 0x0000000000000000 0x1c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_pullup_disable + 0x0000000000000000 0x1c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_pulldown_disable + 0x0000000000000000 0x1c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_force_hold_enable + 0x0000000000000000 0x20 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_set_direction + 0x0000000000000000 0x20 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_set_direction_in_sleep + 0x0000000000000000 0x30 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_isolate + 0x0000000000000000 0x18 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.rtcio_ll_input_disable.str1.4 + 0x0000000000000000 0xef esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_input_disable + 0x0000000000000000 0x50 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.rtcio_ll_input_enable.str1.4 + 0x0000000000000000 0xb8 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_input_enable + 0x0000000000000000 0x4b esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.rtcio_ll_enable_input_in_sleep.str1.4 + 0x0000000000000000 0xb6 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_enable_input_in_sleep + 0x0000000000000000 0x4b esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_enable_output_in_sleep + 0x0000000000000000 0x4b esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_enable_sleep_setting + 0x0000000000000000 0x4b esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.rtcio_ll_disable_input_in_sleep.str1.4 + 0x0000000000000000 0xba esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_disable_input_in_sleep + 0x0000000000000000 0x50 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_disable_output_in_sleep + 0x0000000000000000 0x50 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_disable_sleep_setting + 0x0000000000000000 0x50 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_pullup_disable + 0x0000000000000000 0x50 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_pulldown_disable + 0x0000000000000000 0x50 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.rtcio_ll_force_hold_enable.str1.4 + 0x0000000000000000 0xac esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_force_hold_enable + 0x0000000000000000 0x5e esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction + 0x0000000000000000 0x1c2 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction_in_sleep + 0x0000000000000000 0x86 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_hal_isolate + 0x0000000000000000 0x4a esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1b esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x1a esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x18 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x1f esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x21 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x20 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0x1e esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$7 + 0x0000000000000000 0x20 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$8 + 0x0000000000000000 0x1f esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$9 + 0x0000000000000000 0x16 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$10 + 0x0000000000000000 0x17 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_frame 0x0000000000000000 0x160 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_info 0x0000000000000000 0x1b5f esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x2ed esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_loc 0x0000000000000000 0x3e2 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x88 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_ranges 0x0000000000000000 0x78 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_line 0x0000000000000000 0x128e esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_str 0x0000000000000000 0xc57 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.gpio_hal_intr_enable_on_core + 0x0000000000000000 0xc esp-idf/hal/libhal.a(gpio_hal.c.obj) + .literal.gpio_hal_intr_disable + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .text.gpio_hal_intr_enable_on_core + 0x0000000000000000 0x93 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .text.gpio_hal_intr_disable + 0x0000000000000000 0x6c esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_frame 0x0000000000000000 0x40 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_info 0x0000000000000000 0xcc3 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x206 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_loc 0x0000000000000000 0x2ea esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x28 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_ranges 0x0000000000000000 0x18 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_line 0x0000000000000000 0x4cb esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_str 0x0000000000000000 0x571 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .literal.uart_hal_set_sclk + 0x0000000000000000 0xc esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_hw_flow_ctrl + 0x0000000000000000 0x14 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_sw_flow_ctrl + 0x0000000000000000 0xc esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_at_cmd_char + 0x0000000000000000 0xc esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_tx_idle_num + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_txfifo_empty_thr + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_mode + 0x0000000000000000 0x8 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_inverse_signal + 0x0000000000000000 0x20 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_loop_back + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_init + 0x0000000000000000 0x10 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_rx_timeout + 0x0000000000000000 0x10 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_get_max_rx_timeout_thrd + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_sclk + 0x0000000000000000 0x3c esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_hw_flow_ctrl + 0x0000000000000000 0x72 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_hw_flow_ctrl + 0x0000000000000000 0x28 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_sw_flow_ctrl + 0x0000000000000000 0xfd esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_at_cmd_char + 0x0000000000000000 0xad esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_tx_idle_num + 0x0000000000000000 0x22 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_dtr + 0x0000000000000000 0x20 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_rxfifo_full_thr + 0x0000000000000000 0x1d esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_txfifo_empty_thr + 0x0000000000000000 0x20 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_wakeup_thrd + 0x0000000000000000 0x20 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_wakeup_thrd + 0x0000000000000000 0x13 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_mode + 0x0000000000000000 0x1bd esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_is_hw_rts_en + 0x0000000000000000 0xf esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_inverse_signal + 0x0000000000000000 0xe3 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_loop_back + 0x0000000000000000 0x20 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_init + 0x0000000000000000 0xca esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_symb_len + 0x0000000000000000 0x67 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_rx_timeout + 0x0000000000000000 0x6e esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_max_rx_timeout_thrd + 0x0000000000000000 0x27 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .rodata.GPIO_HOLD_MASK + 0x0000000000000000 0xa0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .dram1.0 0x0000000000000000 0x28 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .rodata.GPIO_PIN_MUX_REG + 0x0000000000000000 0xa0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_info 0x0000000000000000 0x2c3 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_abbrev 0x0000000000000000 0x9f esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_aranges + 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_line 0x0000000000000000 0x23f esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_str 0x0000000000000000 0x8ab esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .rodata.uart_periph_signal + 0x0000000000000000 0x48 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_info 0x0000000000000000 0x44e esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_abbrev 0x0000000000000000 0xfb esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_aranges + 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_line 0x0000000000000000 0x250 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_str 0x0000000000000000 0xbc5 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .rodata.spi_periph_signal + 0x0000000000000000 0x6c esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_info 0x0000000000000000 0x29c2 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_abbrev 0x0000000000000000 0x1d0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_aranges + 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_line 0x0000000000000000 0x25e esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_str 0x0000000000000000 0x220d esp-idf/soc/libsoc.a(spi_periph.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .text.esp_ptr_dma_ext_capable + 0x0000000000000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .text.esp_ptr_external_ram + 0x0000000000000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .literal.esp_mac_addr_len_get + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .literal.esp_iface_mac_addr_set + 0x0000000000000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .literal.esp_base_mac_addr_set + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .literal.esp_efuse_mac_get_custom + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .literal.esp_derive_local_mac + 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .literal.esp_base_mac_addr_get + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_mac_addr_len_get + 0x0000000000000000 0x2b esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_iface_mac_addr_set + 0x0000000000000000 0xad esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_base_mac_addr_set + 0x0000000000000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_efuse_mac_get_custom + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_derive_local_mac + 0x0000000000000000 0x69 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_base_mac_addr_get + 0x0000000000000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .literal.esp_gpio_is_pin_reserved + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .text.esp_gpio_is_pin_reserved + 0x0000000000000000 0x3d esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .literal.xEventGroupCreateStatic + 0x0000000000000000 0x30 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.xEventGroupGetBitsFromISR + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.xEventGroupSync + 0x0000000000000000 0x4c esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.xEventGroupGetStaticBuffer + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.vEventGroupSetBitsCallback + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.vEventGroupClearBitsCallback + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupCreateStatic + 0x0000000000000000 0x73 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupGetBitsFromISR + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupSync + 0x0000000000000000 0x10a esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.xEventGroupGetStaticBuffer.str1.4 + 0x0000000000000000 0x20 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupGetStaticBuffer + 0x0000000000000000 0x3d esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.vEventGroupSetBitsCallback + 0x0000000000000000 0xf esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.vEventGroupClearBitsCallback + 0x0000000000000000 0xf esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1b esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__func__$7 + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.esp_err_to_name_r + 0x0000000000000000 0x18 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.esp_err_to_name_r.str1.4 + 0x0000000000000000 0xc esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .text.esp_err_to_name_r + 0x0000000000000000 0x56 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .text.ets_timer_init + 0x0000000000000000 0x5 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .text.ets_timer_deinit + 0x0000000000000000 0x5 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .literal.esp_event_handler_instance_register + 0x0000000000000000 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .literal.esp_event_handler_instance_unregister + 0x0000000000000000 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .literal.esp_event_isr_post + 0x0000000000000000 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .literal.esp_event_loop_delete_default + 0x0000000000000000 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text.esp_event_handler_instance_register + 0x0000000000000000 0x25 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text.esp_event_handler_instance_unregister + 0x0000000000000000 0x21 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text.esp_event_isr_post + 0x0000000000000000 0x24 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text.esp_event_loop_delete_default + 0x0000000000000000 0x26 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .literal.handler_instances_remove_all + 0x0000000000000000 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.base_node_remove_all_handler + 0x0000000000000000 0xc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.loop_node_remove_all_handler + 0x0000000000000000 0xc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.esp_event_loop_delete + 0x0000000000000000 0x38 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.esp_event_handler_instance_register_with + 0x0000000000000000 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.esp_event_handler_instance_unregister_with + 0x0000000000000000 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.esp_event_isr_post_to + 0x0000000000000000 0x1c esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.handler_instances_remove_all + 0x0000000000000000 0x3c esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.base_node_remove_all_handler + 0x0000000000000000 0x46 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.loop_node_remove_all_handler + 0x0000000000000000 0x46 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_loop_delete + 0x0000000000000000 0xb8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_handler_instance_register_with + 0x0000000000000000 0x1d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_handler_instance_unregister_with + 0x0000000000000000 0x21 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_isr_post_to + 0x0000000000000000 0x9a esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_dump + 0x0000000000000000 0x7 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x16 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x16 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .group 0x0000000000000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZL24lookup_storage_from_namePKc + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZL15create_iteratorPN3nvs7StorageE10nvs_type_t + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_dump + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_init_partition_ptr + 0x0000000000000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_secure_init_partition + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_secure_init + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_erase_all + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_str + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_str + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_stats + 0x0000000000000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_used_entry_count + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_generate_keys + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_read_security_cfg + 0x0000000000000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_register_security_scheme + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_get_default_security_scheme + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_entry_find + 0x0000000000000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_entry_next + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_entry_info + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_release_iterator + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_erase_partition_ptr + 0x0000000000000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_deinit_partition + 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_deinit + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_setIsEimPKcT_ + 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_i16 + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_setIlEimPKcT_ + 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_i32 + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_setIxEimPKcT_ + 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_i64 + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_setIyEimPKcT_ + 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_u64 + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_getIsEimPKcPT_ + 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_i16 + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_getIlEimPKcPT_ + 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_i32 + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_getIxEimPKcPT_ + 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_i64 + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_getIyEimPKcPT_ + 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_u64 + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZZ27nvs_flash_read_security_cfgENKUlPhS_mE_clES_S_m + 0x0000000000000000 0x45 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZL24lookup_storage_from_namePKc + 0x0000000000000000 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZL15create_iteratorPN3nvs7StorageE10nvs_type_t + 0x0000000000000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_dump + 0x0000000000000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_init_partition_ptr + 0x0000000000000000 0x6e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_secure_init_partition + 0x0000000000000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_secure_init + 0x0000000000000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_erase_all + 0x0000000000000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_str + 0x0000000000000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_str + 0x0000000000000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_stats + 0x0000000000000000 0x5e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_used_entry_count + 0x0000000000000000 0x46 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_generate_keys + 0x0000000000000000 0xe8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_read_security_cfg + 0x0000000000000000 0xee esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_register_security_scheme + 0x0000000000000000 0x1d esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_get_default_security_scheme + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_generate_keys_v2 + 0x0000000000000000 0x35 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_read_security_cfg_v2 + 0x0000000000000000 0x35 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_entry_find + 0x0000000000000000 0x8f esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_entry_next + 0x0000000000000000 0x41 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_entry_info + 0x0000000000000000 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_release_iterator + 0x0000000000000000 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_erase_partition_ptr + 0x0000000000000000 0x5a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_deinit_partition + 0x0000000000000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_deinit + 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8set_itemIsEEiPKcT_ + 0x0000000000000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setIsEimPKcT_ + 0x0000000000000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_i16 + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8set_itemIlEEiPKcT_ + 0x0000000000000000 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setIlEimPKcT_ + 0x0000000000000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_i32 + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8set_itemIxEEiPKcT_ + 0x0000000000000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setIxEimPKcT_ + 0x0000000000000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_i64 + 0x0000000000000000 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8set_itemIyEEiPKcT_ + 0x0000000000000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setIyEimPKcT_ + 0x0000000000000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_u64 + 0x0000000000000000 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8get_itemIsEEiPKcRT_ + 0x0000000000000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getIsEimPKcPT_ + 0x0000000000000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_i16 + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8get_itemIlEEiPKcRT_ + 0x0000000000000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getIlEimPKcPT_ + 0x0000000000000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_i32 + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8get_itemIxEEiPKcRT_ + 0x0000000000000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getIxEimPKcPT_ + 0x0000000000000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_i64 + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8get_itemIyEEiPKcRT_ + 0x0000000000000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getIyEimPKcPT_ + 0x0000000000000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_u64 + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .bss._ZL26nvs_sec_default_scheme_cfg + 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemIsEEiPKcT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemIlEEiPKcT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemIxEEiPKcT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemIyEEiPKcT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemIsEEiPKcRT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemIlEEiPKcRT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemIxEEiPKcRT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemIyEEiPKcRT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x0000000000000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage9debugDumpEv + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage9fillStatsER11nvs_stats_t + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage13fillEntryInfoERNS_4ItemER16nvs_entry_info_t + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage9nextEntryEP21nvs_opaque_iterator_t + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage9findEntryEP21nvs_opaque_iterator_tPKc + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZNK3nvs7Storage7isValidEv + 0x0000000000000000 0x11 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9debugDumpEv + 0x0000000000000000 0x17 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9fillStatsER11nvs_stats_t + 0x0000000000000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage13fillEntryInfoERNS_4ItemER16nvs_entry_info_t + 0x0000000000000000 0x41 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9nextEntryEP21nvs_opaque_iterator_t + 0x0000000000000000 0x8a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9findEntryEP21nvs_opaque_iterator_tPKc + 0x0000000000000000 0x35 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9debugDumpEv + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9fillStatsER11nvs_stats_t + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple22calcEntriesInNamespaceERj + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9findEntryEP21nvs_opaque_iterator_tPKc + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9nextEntryEP21nvs_opaque_iterator_t + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9debugDumpEv + 0x0000000000000000 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9fillStatsER11nvs_stats_t + 0x0000000000000000 0x11 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple22calcEntriesInNamespaceERj + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9findEntryEP21nvs_opaque_iterator_tPKc + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9nextEntryEP21nvs_opaque_iterator_t + 0x0000000000000000 0x11 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .group 0x0000000000000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .group 0x0000000000000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x0000000000000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .literal._ZN3nvs19NVSPartitionManager21secure_init_partitionEPKcP13nvs_sec_cfg_t + 0x0000000000000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager17open_handles_sizeEv + 0x0000000000000000 0x7 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager21secure_init_partitionEPKcP13nvs_sec_cfg_t + 0x0000000000000000 0x8c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .rodata._ZTVN3nvs9NVSHandleE + 0x0000000000000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZTVN3nvs9NVSHandleE + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .group 0x0000000000000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page10setVersionEh + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page15pageStateToNameENS0_9PageStateE + 0x0000000000000000 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZNK3nvs4Page9debugDumpEv + 0x0000000000000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page11calcEntriesER11nvs_stats_t + 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page10setVersionEh + 0x0000000000000000 0x19 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZN3nvs4Page15pageStateToNameENS0_9PageStateE.str1.4 + 0x0000000000000000 0xbc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page15pageStateToNameENS0_9PageStateE + 0x0000000000000000 0x61 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZNK3nvs4Page9debugDumpEv.str1.4 + 0x0000000000000000 0x96 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZNK3nvs4Page9debugDumpEv + 0x0000000000000000 0xdb esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZN3nvs4Page11calcEntriesER11nvs_stats_t.str1.4 + 0x0000000000000000 0x4b esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page11calcEntriesER11nvs_stats_t + 0x0000000000000000 0x71 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x0000000000000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .group 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .group 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .group 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .literal._ZN3nvs11PageManager9fillStatsER11nvs_stats_t + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .literal._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZN3nvs11PageManager9fillStatsER11nvs_stats_t + 0x0000000000000000 0x45 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x0000000000000000 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.lit._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.prop._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x0000000000000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .literal._ZN3nvs16partition_lookup30lookup_nvs_encrypted_partitionEPKcP13nvs_sec_cfg_tPPNS_12NVSPartitionE + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .text._ZN3nvs16partition_lookup30lookup_nvs_encrypted_partitionEPKcP13nvs_sec_cfg_tPPNS_12NVSPartitionE + 0x0000000000000000 0x61 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .group 0x0000000000000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .literal._ZN3nvs21NVSEncryptedPartitionD5Ev + 0x0000000000000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .literal._ZN3nvs21NVSEncryptedPartition4readEjPvj + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .literal._ZN3nvs21NVSEncryptedPartition5writeEjPKvj + 0x0000000000000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .literal._ZN3nvs21NVSEncryptedPartitionC2EPK15esp_partition_t + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .literal._ZN3nvs21NVSEncryptedPartition4initEP13nvs_sec_cfg_t + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartitionD2Ev + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartition4readEjPvj + 0x0000000000000000 0x49 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartition5writeEjPKvj + 0x0000000000000000 0x95 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartitionD0Ev + 0x0000000000000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartitionC2EPK15esp_partition_t + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartition4initEP13nvs_sec_cfg_t + 0x0000000000000000 0x47 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .rodata._ZTVN3nvs9PartitionE + 0x0000000000000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .rodata._ZTVN3nvs21NVSEncryptedPartitionE + 0x0000000000000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_frame 0x0000000000000000 0xa0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_info 0x0000000000000000 0x399d esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_abbrev 0x0000000000000000 0x80f esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_loc 0x0000000000000000 0x2ed esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_aranges + 0x0000000000000000 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_ranges 0x0000000000000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_line 0x0000000000000000 0xef2 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_str 0x0000000000000000 0x26b1 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .comment 0x0000000000000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.lit._ZN3nvs21NVSEncryptedPartitionD5Ev + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.prop._ZN3nvs21NVSEncryptedPartitionD5Ev + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.prop._ZN3nvs21NVSEncryptedPartitionD2Ev + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.prop._ZN3nvs21NVSEncryptedPartitionD0Ev + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.prop._ZTVN3nvs9PartitionE + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.prop._ZTVN3nvs21NVSEncryptedPartitionE + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .literal.esp_phy_erase_cal_data_in_nvs + 0x0000000000000000 0x40 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_release_init_data + 0x0000000000000000 0x5 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.esp_phy_erase_cal_data_in_nvs.str1.4 + 0x0000000000000000 0xd2 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_erase_cal_data_in_nvs + 0x0000000000000000 0x9e esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.__func__$7 + 0x0000000000000000 0x1e esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .literal.esp_netif_next + 0x0000000000000000 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .text.esp_netif_next + 0x0000000000000000 0x3f esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .literal.esp_netif_dhcpc_option_api + 0x0000000000000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_lwip_ipc_call_fn + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_start_api + 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_stop_api + 0x0000000000000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcpc_stop_api + 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_hostname_api + 0x0000000000000000 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_ip_info_api + 0x0000000000000000 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_get_clients_by_mac_api + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_dns_info_api + 0x0000000000000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_dns_info_api + 0x0000000000000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_create_ip6_linklocal_api + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_netif_impl_name_api + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_join_ip6_multicast_group_api + 0x0000000000000000 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_leave_ip6_multicast_group_api + 0x0000000000000000 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_add_ip6_address_api + 0x0000000000000000 0x44 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_remove_ip6_address_api + 0x0000000000000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_default_netif + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_default_netif + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_ip4_addr + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_ip4addr_aton + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_str_to_ip4 + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_str_to_ip6 + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_deinit + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_tcpip_exec + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcpc_stop + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_start + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_stop + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_hostname + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_mac + 0x0000000000000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_option_api + 0x0000000000000000 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_ip_info + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_get_clients_by_mac + 0x0000000000000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_dns_info + 0x0000000000000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_dns_info + 0x0000000000000000 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_ip6_get_addr_type + 0x0000000000000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_create_ip6_linklocal + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_ip6_linklocal + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_ip6_global + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_all_ip6 + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_option + 0x0000000000000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcpc_option + 0x0000000000000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_netif_impl_name + 0x0000000000000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_join_ip6_multicast_group + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_leave_ip6_multicast_group + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_add_ip6_address + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_remove_ip6_address + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.tcpip_exec_api + 0x0000000000000000 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcpc_option_api + 0x0000000000000000 0x90 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_lwip_ipc_call_fn + 0x0000000000000000 0x21 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_start_api + 0x0000000000000000 0xc1 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_stop_api + 0x0000000000000000 0x3e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_dhcpc_stop_api.str1.4 + 0x0000000000000000 0x3e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcpc_stop_api + 0x0000000000000000 0x61 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_set_hostname_api.str1.4 + 0x0000000000000000 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_hostname_api + 0x0000000000000000 0x5d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_set_ip_info_api.str1.4 + 0x0000000000000000 0x46 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_ip_info_api + 0x0000000000000000 0x12a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_get_clients_by_mac_api + 0x0000000000000000 0x29 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_dns_info_api + 0x0000000000000000 0x52 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_dns_info_api + 0x0000000000000000 0x58 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_create_ip6_linklocal_api + 0x0000000000000000 0x26 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_netif_impl_name_api + 0x0000000000000000 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_join_ip6_multicast_group_api.str1.4 + 0x0000000000000000 0x3b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_join_ip6_multicast_group_api + 0x0000000000000000 0x4e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_leave_ip6_multicast_group_api.str1.4 + 0x0000000000000000 0x44 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_leave_ip6_multicast_group_api + 0x0000000000000000 0x56 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_add_ip6_address_api.str1.4 + 0x0000000000000000 0x7c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_add_ip6_address_api + 0x0000000000000000 0xe2 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_remove_ip6_address_api + 0x0000000000000000 0x40 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_default_netif + 0x0000000000000000 0x11 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_default_netif + 0x0000000000000000 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_ip4_addr + 0x0000000000000000 0x43 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_ip4addr_aton + 0x0000000000000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_str_to_ip4 + 0x0000000000000000 0x34 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_str_to_ip6 + 0x0000000000000000 0x34 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_handle_from_netif_impl + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_netif_impl + 0x0000000000000000 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_deinit + 0x0000000000000000 0x19 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_tcpip_exec + 0x0000000000000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_transmit + 0x0000000000000000 0x12 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcpc_stop + 0x0000000000000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_get_status + 0x0000000000000000 0x21 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_start + 0x0000000000000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_stop + 0x0000000000000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_hostname + 0x0000000000000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_mac + 0x0000000000000000 0x45 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_option_api + 0x0000000000000000 0x205 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_ip_info + 0x0000000000000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_get_clients_by_mac + 0x0000000000000000 0x45 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_dns_info + 0x0000000000000000 0x55 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_get_dns_info.str1.4 + 0x0000000000000000 0x34 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_dns_info + 0x0000000000000000 0x46 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_ip6_get_addr_type + 0x0000000000000000 0x60 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_create_ip6_linklocal + 0x0000000000000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_ip6_linklocal + 0x0000000000000000 0x51 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_ip6_global + 0x0000000000000000 0x76 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_all_ip6 + 0x0000000000000000 0xfa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_route_prio + 0x0000000000000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_option + 0x0000000000000000 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcpc_option + 0x0000000000000000 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_netif_impl_index + 0x0000000000000000 0x1d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_netif_impl_name + 0x0000000000000000 0x27 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_napt_enable + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_napt_disable + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_link_speed + 0x0000000000000000 0x7 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_join_ip6_multicast_group + 0x0000000000000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_leave_ip6_multicast_group + 0x0000000000000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_add_ip6_address + 0x0000000000000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_remove_ip6_address + 0x0000000000000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__FUNCTION__$0 + 0x0000000000000000 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__FUNCTION__$1 + 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x17 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .rodata.g_wifi_default_mesh_crypto_funcs + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .literal.sha384_vector + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.sha512_vector + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_hash_init + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_hash_update + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_hash_finish + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.hmac_sha384_vector + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.hmac_sha384 + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.aes_128_ctr_encrypt + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_mod_exp + 0x0000000000000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_dh_init + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.sha384_vector + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.sha512_vector + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_hash_init + 0x0000000000000000 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_hash_update + 0x0000000000000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_hash_finish + 0x0000000000000000 0x102 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.hmac_sha384_vector + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.hmac_sha384 + 0x0000000000000000 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.aes_128_ctr_encrypt + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_mod_exp + 0x0000000000000000 0xb9 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_dh_init + 0x0000000000000000 0x79 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_global_init + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_global_deinit + 0x0000000000000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .literal.os_sleep + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .text.os_sleep + 0x0000000000000000 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .literal.ccmp_aad_nonce_pv1 + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .literal.ccmp_encrypt_pv1 + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .literal.ccmp_256_decrypt + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .literal.ccmp_256_encrypt + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_aad_nonce_pv1 + 0x0000000000000000 0xd2 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_get_pn + 0x0000000000000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_encrypt_pv1 + 0x0000000000000000 0xe0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_256_decrypt + 0x0000000000000000 0x8c esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_256_encrypt + 0x0000000000000000 0xfc esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .literal.hwaddr_aton2 + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.printf_encode + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.wpa_ssid_txt + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.wpa_merge_byte_arrays + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.str_clear_free + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.os_gmtime + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.os_mktime + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.get_param + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.hwaddr_aton2 + 0x0000000000000000 0x69 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .rodata.printf_encode.str1.4 + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.printf_encode + 0x0000000000000000 0xcb esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.wpa_ssid_txt + 0x0000000000000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.__hide_aliasing_typecast + 0x0000000000000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.wpa_is_hex + 0x0000000000000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.has_ctrl_char + 0x0000000000000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.wpa_merge_byte_arrays + 0x0000000000000000 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.str_clear_free + 0x0000000000000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.os_gmtime + 0x0000000000000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.os_mktime + 0x0000000000000000 0xde esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.rssi_to_rcpi + 0x0000000000000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.get_param + 0x0000000000000000 0x57 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .bss.ssid_txt$0 + 0x0000000000000000 0x81 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .literal.esp_coex_preference_set + 0x0000000000000000 0x4 esp-idf/esp_coex/libesp_coex.a(coexist.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_coex/libesp_coex.a(coexist.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_coex/libesp_coex.a(coexist.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_coex/libesp_coex.a(coexist.c.obj) + .text.esp_coex_preference_set + 0x0000000000000000 0x10 esp-idf/esp_coex/libesp_coex.a(coexist.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .text.ieee80211_ftm_attach + 0x0000000000000000 0x5 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .literal.disconnect_and_destroy + 0x0000000000000000 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_wifi_set_default_wifi_ap_handlers + 0x0000000000000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_wifi_set_default_wifi_nan_handlers + 0x0000000000000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_wifi_clear_default_wifi_driver_and_handlers + 0x0000000000000000 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_attach_wifi_ap + 0x0000000000000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_create_default_wifi_ap + 0x0000000000000000 0x38 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_destroy_default_wifi + 0x0000000000000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_create_wifi + 0x0000000000000000 0x20 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_create_default_wifi_mesh_netifs + 0x0000000000000000 0x84 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.disconnect_and_destroy + 0x0000000000000000 0x2e esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_wifi_set_default_wifi_ap_handlers + 0x0000000000000000 0xd esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_wifi_set_default_wifi_nan_handlers + 0x0000000000000000 0xd esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_wifi_clear_default_wifi_driver_and_handlers + 0x0000000000000000 0x4d esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_attach_wifi_ap + 0x0000000000000000 0x11 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_create_default_wifi_ap + 0x0000000000000000 0x6a esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_destroy_default_wifi + 0x0000000000000000 0x17 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_create_wifi + 0x0000000000000000 0x53 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.esp_netif_create_default_wifi_mesh_netifs.str1.4 + 0x0000000000000000 0xa8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_create_default_wifi_mesh_netifs + 0x0000000000000000 0x140 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x2a esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x16 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x21 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_wifi_destroy_if_driver + 0x0000000000000000 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.esp_wifi_destroy_if_driver + 0x0000000000000000 0x26 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .data.memset_func + 0x0000000000000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.mbedtls_mpi_swap + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_read_string + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_read_file + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mpi_write_hlp + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_write_string + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_write_file + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_gen_prime + 0x0000000000000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_self_test + 0x0000000000000000 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mpi_get_digit + 0x0000000000000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_swap + 0x0000000000000000 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_read_string + 0x0000000000000000 0x131 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_read_file + 0x0000000000000000 0xad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mpi_write_hlp + 0x0000000000000000 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.mbedtls_mpi_write_string.str1.4 + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_write_string + 0x0000000000000000 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.mbedtls_mpi_write_file.str1.4 + 0x0000000000000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_write_file + 0x0000000000000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_gen_prime + 0x0000000000000000 0x23c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.mbedtls_mpi_self_test.str1.4 + 0x0000000000000000 0x46a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_self_test + 0x0000000000000000 0x302 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.gcd_pairs + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_core_ct_uint_table_lookup + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_add_if + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_montmul + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.exp_mod_precompute_window + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_get_mont_r2_unsafe + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_exp_mod_working_limbs + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_exp_mod + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_to_mont_rep + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_from_mont_rep + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.exp_mod_get_window_size + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_ct_uint_table_lookup + 0x0000000000000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_add_if + 0x0000000000000000 0x43 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_montmul_init + 0x0000000000000000 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_montmul + 0x0000000000000000 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.exp_mod_precompute_window + 0x0000000000000000 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_get_mont_r2_unsafe + 0x0000000000000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_exp_mod_working_limbs + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_exp_mod + 0x0000000000000000 0xf4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_check_zero_ct + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_to_mont_rep + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_from_mont_rep + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_cipher_aead_encrypt + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_aead_decrypt + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_list + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_info_from_string + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_set_iv + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_reset + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_update_ad + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_finish + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_write_tag + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_check_tag + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_crypt + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_auth_encrypt_ext + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_auth_decrypt_ext + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_aead_encrypt + 0x0000000000000000 0x71 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_aead_decrypt + 0x0000000000000000 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_list + 0x0000000000000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_info_from_string + 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_set_iv + 0x0000000000000000 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_reset + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_update_ad + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_finish + 0x0000000000000000 0x134 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_write_tag + 0x0000000000000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_check_tag + 0x0000000000000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_crypt + 0x0000000000000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_auth_encrypt_ext + 0x0000000000000000 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_auth_decrypt_ext + 0x0000000000000000 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .bss.supported_init + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .bss.mbedtls_cipher_supported + 0x0000000000000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .literal.mbedtls_ct_size_mask_lt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .literal.mbedtls_ct_size_mask_ge + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .literal.mbedtls_ct_base64_enc_char + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .literal.mbedtls_ct_memcpy_if_eq + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .literal.mbedtls_ct_memcpy_offset + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .literal.mbedtls_ct_hmac + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .literal.mbedtls_mpi_lt_mpi_ct + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text.mbedtls_ct_size_mask + 0x0000000000000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text.mbedtls_ct_size_mask_lt + 0x0000000000000000 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text.mbedtls_ct_size_mask_ge + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text.mbedtls_ct_size_bool_eq + 0x0000000000000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text.mbedtls_ct_base64_enc_char + 0x0000000000000000 0x7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text.mbedtls_ct_memcpy_if_eq + 0x0000000000000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text.mbedtls_ct_memcpy_offset + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text.mbedtls_ct_hmac + 0x0000000000000000 0x149 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text.mbedtls_mpi_lt_mpi_ct + 0x0000000000000000 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .literal.cmac_test_subkeys + 0x0000000000000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.mbedtls_cipher_cmac_reset + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.mbedtls_cipher_cmac + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.cmac_test_wth_cipher + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.mbedtls_aes_cmac_prf_128 + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.test_aes128_cmac_prf + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.mbedtls_cmac_self_test + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.cmac_test_subkeys.str1.4 + 0x0000000000000000 0x47 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.cmac_test_subkeys + 0x0000000000000000 0x13e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.mbedtls_cipher_cmac_reset + 0x0000000000000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.mbedtls_cipher_cmac + 0x0000000000000000 0x85 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.cmac_test_wth_cipher.str1.4 + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.cmac_test_wth_cipher + 0x0000000000000000 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.mbedtls_aes_cmac_prf_128 + 0x0000000000000000 0x8d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.test_aes128_cmac_prf.str1.4 + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.test_aes128_cmac_prf + 0x0000000000000000 0x6d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.mbedtls_cmac_self_test.str1.4 + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.mbedtls_cmac_self_test + 0x0000000000000000 0x10f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.PRFT 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.PRFM 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.PRFKlen + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.PRFK 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_256_expected_result + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_256_subkeys + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_256_key + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_192_expected_result + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_192_subkeys + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_192_key + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_128_expected_result + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_128_subkeys + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_128_key + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_message_lengths + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.test_message + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.ctr_drbg_self_test_entropy + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_update + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_write_seed_file + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_update_seed_file + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_self_test + 0x0000000000000000 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.ctr_drbg_self_test_entropy + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_set_prediction_resistance + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_set_entropy_len + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_set_nonce_len + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_set_reseed_interval + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_update + 0x0000000000000000 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.mbedtls_ctr_drbg_write_seed_file.str1.4 + 0x0000000000000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_write_seed_file + 0x0000000000000000 0x5d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.mbedtls_ctr_drbg_update_seed_file.str1.4 + 0x0000000000000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_update_seed_file + 0x0000000000000000 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.mbedtls_ctr_drbg_self_test.str1.4 + 0x0000000000000000 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_self_test + 0x0000000000000000 0x1d2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .bss.test_offset + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.result_nopr + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.result_pr + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.pers_nopr + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.pers_pr + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.entropy_source_nopr + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.entropy_source_pr + 0x0000000000000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.ecdh_make_params_internal + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.ecdh_make_public_internal + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.ecdh_read_params_internal + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.ecdh_read_public_internal + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.ecdh_get_params_internal + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdh_make_params + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdh_read_params + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdh_get_params + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdh_make_public + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdh_read_public + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_grp_id + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.ecdh_make_params_internal + 0x0000000000000000 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.ecdh_make_public_internal + 0x0000000000000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.ecdh_read_params_internal + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.ecdh_read_public_internal + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.ecdh_get_params_internal + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_can_do + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_enable_restart + 0x0000000000000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_make_params + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_read_params + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_get_params + 0x0000000000000000 0x43 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_make_public + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_read_public + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.self_test_rng + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_set_max_ops + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_curve_info_from_grp_id + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_curve_info_from_tls_id + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_curve_info_from_name + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_point_read_string + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_read_point + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_write_point + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_read_group_id + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_read_group + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_write_group + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.self_test_point + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_read_key + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_write_key + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_export + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_self_test + 0x0000000000000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.self_test_rng + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.self_test_adjust_exponent + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_set_max_ops + 0x0000000000000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_curve_info_from_grp_id + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_curve_info_from_tls_id + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_curve_info_from_name + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_point_read_string + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_tls_read_point + 0x0000000000000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_tls_write_point + 0x0000000000000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_tls_read_group_id + 0x0000000000000000 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_tls_read_group + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_tls_write_group + 0x0000000000000000 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.self_test_point.str1.4 + 0x0000000000000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.self_test_point + 0x0000000000000000 0x10a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_read_key + 0x0000000000000000 0x14e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_write_key + 0x0000000000000000 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_export + 0x0000000000000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.mbedtls_ecp_self_test.str1.4 + 0x0000000000000000 0x38d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_self_test + 0x0000000000000000 0x19c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .data.state$0 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .literal.entropy_dummy_source + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_source_self_test_gather + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_update_manual + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_gather + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_write_seed_file + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_update_seed_file + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_source_self_test + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_self_test + 0x0000000000000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_source_self_test_check_bits + 0x0000000000000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.entropy_dummy_source + 0x0000000000000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_source_self_test_gather + 0x0000000000000000 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_update_manual + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_gather + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .rodata.mbedtls_entropy_write_seed_file.str1.4 + 0x0000000000000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_write_seed_file + 0x0000000000000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .rodata.mbedtls_entropy_update_seed_file.str1.4 + 0x0000000000000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_update_seed_file + 0x0000000000000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .rodata.mbedtls_entropy_source_self_test.str1.4 + 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_source_self_test + 0x0000000000000000 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .rodata.mbedtls_entropy_self_test.str1.4 + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_self_test + 0x0000000000000000 0x116 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_md_clone + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_list + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_info_from_string + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_file + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_hmac + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_clone + 0x0000000000000000 0xbd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_get_type + 0x0000000000000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_list + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_info_from_string + 0x0000000000000000 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_info_from_ctx + 0x0000000000000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_md_file.str1.4 + 0x0000000000000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_file + 0x0000000000000000 0xb5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_hmac + 0x0000000000000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_get_name + 0x0000000000000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.supported_digests + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md5_self_test + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .rodata.mbedtls_md5_self_test.str1.4 + 0x0000000000000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .text.mbedtls_md5_self_test + 0x0000000000000000 0x82 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .rodata.md5_test_sum + 0x0000000000000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .rodata.md5_test_buflen + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .rodata.md5_test_buf + 0x0000000000000000 0x237 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .literal.pkcs5_parse_pbkdf2_params + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .literal.mbedtls_pkcs5_pbes2 + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .literal.mbedtls_pkcs5_self_test + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .text.pkcs5_parse_pbkdf2_params + 0x0000000000000000 0xaf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.mbedtls_pkcs5_pbes2.str1.4 + 0x0000000000000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .text.mbedtls_pkcs5_pbes2 + 0x0000000000000000 0x1a6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.mbedtls_pkcs5_self_test.str1.4 + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .text.mbedtls_pkcs5_self_test + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .literal.mbedtls_platform_set_calloc_free + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text.mbedtls_platform_set_calloc_free + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text.mbedtls_platform_setup + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text.mbedtls_platform_teardown + 0x0000000000000000 0x5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .literal.mbedtls_get_unaligned_uint64 + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .literal.mbedtls_put_unaligned_uint64 + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .text.mbedtls_get_unaligned_uint16 + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .text.mbedtls_put_unaligned_uint16 + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .text.mbedtls_get_unaligned_uint32 + 0x0000000000000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .text.mbedtls_put_unaligned_uint32 + 0x0000000000000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .text.mbedtls_get_unaligned_uint64 + 0x0000000000000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .text.mbedtls_put_unaligned_uint64 + 0x0000000000000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .text.mbedtls_xor + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .literal.mbedtls_sha1_self_test + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .rodata.mbedtls_sha1_self_test.str1.4 + 0x0000000000000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .text.mbedtls_sha1_self_test + 0x0000000000000000 0xfa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .rodata.sha1_test_sum + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .rodata.sha1_test_buflen + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .rodata.sha1_test_buf + 0x0000000000000000 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .literal.mbedtls_sha256_common_self_test + 0x0000000000000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .literal.mbedtls_sha256_self_test + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .literal.mbedtls_sha224_self_test + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.mbedtls_sha256_common_self_test.str1.4 + 0x0000000000000000 0x3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .text.mbedtls_sha256_common_self_test + 0x0000000000000000 0x137 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .text.mbedtls_sha256_self_test + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .text.mbedtls_sha224_self_test + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.sha256_test_sum + 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.sha224_test_sum + 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.sha_test_buflen + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.sha_test_buf + 0x0000000000000000 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .literal.mbedtls_sha512_common_self_test + 0x0000000000000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .literal.mbedtls_sha512_self_test + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .literal.mbedtls_sha384_self_test + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.mbedtls_sha512_common_self_test.str1.4 + 0x0000000000000000 0x3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text.mbedtls_sha512_common_self_test + 0x0000000000000000 0x137 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text.mbedtls_sha512_self_test + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text.mbedtls_sha384_self_test + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.sha512_test_sum + 0x0000000000000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.sha384_test_sum + 0x0000000000000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.sha_test_buflen + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.sha_test_buf + 0x0000000000000000 0x153 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .literal.esp_internal_aes_encrypt + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_aes_encrypt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_internal_aes_decrypt + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_aes_decrypt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_aes_crypt_cfb8 + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_internal_aes_encrypt + 0x0000000000000000 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_encrypt + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_internal_aes_decrypt + 0x0000000000000000 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_decrypt + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_crypt_cfb8 + 0x0000000000000000 0xe4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_mpi_mul_mpi_mod + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .text.esp_mpi_mul_mpi_mod + 0x0000000000000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .literal.esp_mpi_hardware_words + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .literal.esp_mpi_interrupt_enable + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .literal.esp_mpi_interrupt_clear + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .literal.esp_mpi_mul_mpi_mod_hw_op + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .text.esp_mpi_hardware_words + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .text.esp_mpi_interrupt_enable + 0x0000000000000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .text.esp_mpi_interrupt_clear + 0x0000000000000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .text.esp_mpi_mul_mpi_mod_hw_op + 0x0000000000000000 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .literal.mbedtls_sha1_clone + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .literal.mbedtls_internal_sha1_process + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .text.mbedtls_sha1_clone + 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .text.mbedtls_internal_sha1_process + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .literal.mbedtls_sha256_clone + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_internal_sha256_process + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_clone + 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_internal_sha256_process + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha512_clone + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .literal.mbedtls_internal_sha512_process + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.mbedtls_sha512_clone + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.mbedtls_internal_sha512_process + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.esp_md5_process + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .literal.esp_md5_clone + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .text.esp_md5_process + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .text.esp_md5_clone + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .literal.mbedtls_aria_self_test + 0x0000000000000000 0x13c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.mbedtls_aria_self_test.str1.4 + 0x0000000000000000 0xe1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .text.mbedtls_aria_self_test + 0x0000000000000000 0x4cf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_ctr_ct + 0x0000000000000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_cfb_ct + 0x0000000000000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_cbc_ct + 0x0000000000000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_pt + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_key + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test1_ecb_ct + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test1_ecb_pt + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test1_ecb_key + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .literal.asn1_get_sequence_of_cb + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_bool + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_enum + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_bitstring + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_traverse_sequence_of + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_sequence_free + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_sequence_of + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_alg_null + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_free_named_data_list + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_free_named_data_list_shallow + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_find_named_data + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.asn1_get_sequence_of_cb + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_bool + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_enum + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_bitstring + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_traverse_sequence_of + 0x0000000000000000 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_sequence_free + 0x0000000000000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_sequence_of + 0x0000000000000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_alg_null + 0x0000000000000000 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_free_named_data_list + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_free_named_data_list_shallow + 0x0000000000000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_find_named_data + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_ccm_clear_state + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.ccm_calculate_first_block_if_ready + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_starts + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_set_lengths + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_update_ad + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_finish + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.ccm_auth_crypt + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.ccm_auth_decrypt + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_star_encrypt_and_tag + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_encrypt_and_tag + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_star_auth_decrypt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_auth_decrypt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_self_test + 0x0000000000000000 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_compare_tags + 0x0000000000000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_clear_state + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.ccm_calculate_first_block_if_ready + 0x0000000000000000 0xb6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_starts + 0x0000000000000000 0x79 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_set_lengths + 0x0000000000000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_update_ad + 0x0000000000000000 0xf9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_finish + 0x0000000000000000 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.ccm_auth_crypt + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.ccm_auth_decrypt + 0x0000000000000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_star_encrypt_and_tag + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_encrypt_and_tag + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_star_auth_decrypt + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_auth_decrypt + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.mbedtls_ccm_self_test.str1.4 + 0x0000000000000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_self_test + 0x0000000000000000 0x1a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.res_test_data + 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.tag_len_test_data + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.msg_len_test_data + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.add_len_test_data + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.iv_len_test_data + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.msg_test_data + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.ad_test_data + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.iv_test_data + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.key_test_data + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.oid_x520_attr_from_asn1 + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_x509_ext_from_asn1 + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_ext_key_usage_from_asn1 + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_certificate_policies_from_asn1 + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_sig_alg_from_asn1 + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_cipher_alg_from_asn1 + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_md_alg_from_asn1 + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_md_hmac_from_asn1 + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_pkcs12_pbe_alg_from_asn1 + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_attr_short_name + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_x509_ext_type + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_extended_key_usage + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_certificate_policies + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_sig_alg_desc + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_sig_alg + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_oid_by_sig_alg + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_oid_by_pk_alg + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_oid_by_ec_grp + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_cipher_alg + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_md_alg + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_md_hmac + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_pkcs12_pbe_alg + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_numeric_string + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_x520_attr_from_asn1 + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_x509_ext_from_asn1 + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_ext_key_usage_from_asn1 + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_certificate_policies_from_asn1 + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_sig_alg_from_asn1 + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_cipher_alg_from_asn1 + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_md_alg_from_asn1 + 0x0000000000000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_md_hmac_from_asn1 + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_pkcs12_pbe_alg_from_asn1 + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_attr_short_name + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_x509_ext_type + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_extended_key_usage + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_certificate_policies + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_sig_alg_desc + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_sig_alg + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_oid_by_sig_alg + 0x0000000000000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_oid_by_pk_alg + 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_oid_by_ec_grp + 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_cipher_alg + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_md_alg + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_md_hmac + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_pkcs12_pbe_alg + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.mbedtls_oid_get_numeric_string.str1.4 + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_numeric_string + 0x0000000000000000 0xe6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_pkcs12_pbe_alg + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_md_hmac + 0x0000000000000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_cipher_alg + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_sig_alg + 0x0000000000000000 0x150 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_certificate_policies + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_ext_key_usage + 0x0000000000000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_x509_ext + 0x0000000000000000 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_x520_attr_type + 0x0000000000000000 0x1a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.esp_sha_lock_engine + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_lock_engine + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.esp_coex_adapter_funcs_md5_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .literal.esp_coex_i154_funcs_md5_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .literal.esp_coex_adapter_register + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .literal.esp_coex_status_bit_set + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .literal.esp_coex_status_bit_clear + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_event_duration_get + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_wifi_request + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .wifirxiram.8.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .iram1.9.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .iram1.10.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_pre_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_enable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_disable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .wifirxiram.11.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_preference_set + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_version_get + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_wifi_register_update_lpclk_callback + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_update_lpclk_interval + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_register_wifi_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_register_bt_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .iram1.12.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .iram1.13.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_register_start_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .text.esp_coex_adapter_funcs_md5_check + 0x0000000000000000 0x4c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .text.esp_coex_i154_funcs_md5_check + 0x0000000000000000 0x4c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .text.esp_coex_status_bit_set + 0x0000000000000000 0xa8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .text.esp_coex_status_bit_clear + 0x0000000000000000 0xa8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .text.coex_preference_set + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .text.coex_wifi_register_update_lpclk_callback + 0x0000000000000000 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .text.coex_update_lpclk_interval + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .text.coex_register_wifi_cb + 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .dram1.7 0x0000000000000000 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .dram1.6 0x0000000000000000 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .dram1.5 0x0000000000000000 0x31 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .dram1.4 0x0000000000000000 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .dram1.3 0x0000000000000000 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .dram1.2 0x0000000000000000 0x31 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .bss.s_set_lpclk_source_cb + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .data.g_coex_i154_funcs_md5 + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .data.g_coex_adapter_funcs_md5 + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .iram1.7.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.8.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.12.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.11.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.16.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.14.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.17.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.18.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.19.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .literal.coex_core_event_duration_get + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .literal.coex_core_pre_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .literal.coex_core_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .literal.coex_core_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .literal.coex_core_enable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .literal.coex_core_disable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .wifislpiram.26.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .literal.coex_core_register_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.27.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.28.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .literal.coex_core_register_start_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.0.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) + .iram1.11.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) + .iram1.16.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) + .iram1.17.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) + .literal.coex_schm_status_change + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .wifirxiram.1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .wifirxiram.2.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_change_phase + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_status_bit_set + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_status_bit_clear + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_status_get + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_curr_phase_idx_set + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .wifirxiram.3.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_interval_get + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .wifirxiram.4.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_curr_period_get + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_curr_phase_get + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_get_phase_by_idx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_register_callback + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_wifi_channel_set + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_wifi_channel_get + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_register_wifi_channel_change_callback + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_process_restart + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .text.coex_schm_status_get + 0x0000000000000000 0x4b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .text.coex_schm_curr_phase_idx_set + 0x0000000000000000 0x5c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .wifirxiram.3 0x0000000000000000 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .text.coex_schm_get_phase_by_idx + 0x0000000000000000 0x3a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .text.coex_schm_deinit + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_a2dp_wifi_default + 0x0000000000000000 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_idle_wifi_default + 0x0000000000000000 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_idle_bt_idle_wifi_default + 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .iram1.5.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.6.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.7.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.8.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.9.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.10.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.11.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.12.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.13.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.14.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.15.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + .literal.coex_timer_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + .literal.coex_timer_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.7 0x0000000000000000 0x2d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.10 0x0000000000000000 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.6.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .iram1.12.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .iram1.19.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .iram1.20.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .iram1.21.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .iram1.22.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .iram1.23.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .literal.coex_arbit_dump + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .literal.coex_arbit_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .literal.coex_arbit_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .text.coex_arbit_dump + 0x0000000000000000 0x3a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .literal.esp_wifi_ftm_end_session_local + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_resp_set_offset_local + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_config_channel_local + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_negotiated_channel_local + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_negotiated_bw_local + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_aid_local + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_negotiated_phymode_local + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_inactive_time_local + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ap_get_sta_aid_local + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_reg_netstack_buf_cb_local + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_send_deauth_local + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_get_init_state + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_is_stop_in_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_api_lock + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_api_unlock + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_init_completed + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_inactive_time_local + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_get_config_local$part$5 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_softap_get_config + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_get_config + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_get_config_default + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_get_current_ap_id + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_ap_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_softap_cacl_mac + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_rssi + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_softap_get_station_num + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_softap_deauth + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_register_user_ie_manufacturer_recv_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_unregister_user_ie_manufacturer_recv_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_set_user_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_get_user_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_check_chan_param + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_deinit_in_caller_task + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_init_in_caller_task + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_osi_ready + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_osi_funcs_register + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_osi_funcs_md5_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_crypto_funcs_md5_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_wifi_type_md5_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_esp_wifi_md5_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_esp_wifi_he_md5_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_wifi_he_type_md5_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.net80211_softap_funcs_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.net80211_funcs_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.net80211_funcs_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_init_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_deinit_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_mode + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_initiate_session + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_mode + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_restart + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_stop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_connect + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_disconnect + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_clear_fast_connect + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_deauth_sta + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_promiscuous_scan_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.get_total_scan_time + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_stop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_ap_num + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_ap_records + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_clear_ap_list + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_config + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_config + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ap_get_sta_list + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_connectionless_module_set_wake_interval + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_ps + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_ps + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_protocol + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_protocol + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_config_11b_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_config_espnow_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_config_80211_tx_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_bandwidth + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_bandwidth + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_channel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_home_channel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_channel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_country + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_country_code + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_country + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_country_code + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_mac + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_mac + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_ap_info + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_promiscuous_filter + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_promiscuous_filter + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_promiscuous_ctrl_filter + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_promiscuous_ctrl_filter + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_promiscuous + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_promiscuous_rx_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_promiscuous + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_storage + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_reg_rxcb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_sta_ip + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_auto_connect + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_auto_connect + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_restore + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_vendor_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_vendor_ie_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_event_post + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_mesh_event_post + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_lora_enable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_lora_disable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_max_tx_power + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_max_tx_power + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_event_mask + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_event_mask + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_csi + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_csi_config + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_csi_rx_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_ant_gpio + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_ant_gpio + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_ant + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_ant + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_fix_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_fix_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_sta_rx_probe_req + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ipc_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_end_session + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_resp_set_offset + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .wifislpiram.40.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_log_level + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_log_mod + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_log + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_ioctl + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_configure_wake_window + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_on_coex_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_on_coex_schm_phase + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_update_light_sleep_default_params + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_sleep_delay_time + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_keep_alive_time + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_beacon_monitor_configure + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_reg_netstack_buf_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_config_channel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_issue_disconnect + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_improve_contention_ability + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_negotiated_channel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_negotiated_bandwidth + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ap_get_sta_aid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_aid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_negotiated_phymode + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_tsf_time + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_tx_done_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_inactive_time + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_inactive_time + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_statis_dump + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_spp_amsdu + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_disable_pmf_config + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_phy_apply_phy_init_data + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_nan_internal_publish_service + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_nan_internal_subscribe_service + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_nan_internal_send_followup + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_nan_internal_datapath_req + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_nan_internal_datapath_resp + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_nan_internal_datapath_end + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_mesh_reg_rxcb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_ap_assoc_expire + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_ap_assoc_expire + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_router_bssid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_router_bssid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_beacon_interval + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_beacon_interval + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_map_deauth + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_sta_disassoc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_cur_ap_info + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_scan_get_ap_ie_len + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_cur_ap_record + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_scan_get_ap_record + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_mesh_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_mesh_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_mesh_set + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_mesh_get + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_roots_set + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_roots_get + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_allow_root_conflicts + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_is_root_conflicts_allowed + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_parent_monitor_config + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_parent_monitor_config + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_ie_crypto_funcs_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_ie_crypto_key_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_sort_ap_records + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_sort_get_cur_ap_info + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_sort_get_cur_ap_record + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_parent_candidate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_clear_parent_candidate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_parent_candidate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_rssi_threshold_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_rssi_threshold_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_is_roots_found + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_storage + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_switch_channel_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_active_duty_cycle + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_active_duty_cycle + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_network_duty_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_network_duty_cycle + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_network_duty_cycle + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_running_active_duty_cycle + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_ps_get_ext_duty + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_ps_duty_signaling + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_non_mesh_connections + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_dynamic_cs + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_eb_tx_status_success_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_end_session_local + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_resp_set_offset_local + 0x0000000000000000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_config_channel_local + 0x0000000000000000 0x82 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_negotiated_channel_local + 0x0000000000000000 0xb8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_negotiated_bw_local + 0x0000000000000000 0xce /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_aid_local + 0x0000000000000000 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_negotiated_phymode_local + 0x0000000000000000 0x61 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_inactive_time_local + 0x0000000000000000 0x77 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_inactive_time_local + 0x0000000000000000 0x84 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_station_get_config + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_station_get_config_default + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_station_get_current_ap_id + 0x0000000000000000 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_station_ap_check + 0x0000000000000000 0x3e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_softap_cacl_mac + 0x0000000000000000 0x3a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_rssi + 0x0000000000000000 0x4d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_softap_get_station_num + 0x0000000000000000 0x5f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_register_user_ie_manufacturer_recv_cb + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_unregister_user_ie_manufacturer_recv_cb + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_set_user_ie + 0x0000000000000000 0x18e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_get_user_ie + 0x0000000000000000 0x3a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.wifi_get_user_ie + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_osi_ready + 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_osi_funcs_md5_check + 0x0000000000000000 0x4c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_crypto_funcs_md5_check + 0x0000000000000000 0x4c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_wifi_type_md5_check + 0x0000000000000000 0x4c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_esp_wifi_md5_check + 0x0000000000000000 0x4c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_esp_wifi_he_md5_check + 0x0000000000000000 0x4c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_wifi_he_type_md5_check + 0x0000000000000000 0x4c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_initiate_session + 0x0000000000000000 0x68 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_restart + 0x0000000000000000 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_clear_fast_connect + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_promiscuous_scan_start + 0x0000000000000000 0xac /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_stop + 0x0000000000000000 0x68 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_clear_ap_list + 0x0000000000000000 0x68 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ap_get_sta_list + 0x0000000000000000 0x6a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_connectionless_module_set_wake_interval + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_ps + 0x0000000000000000 0x58 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_ps + 0x0000000000000000 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_protocol + 0x0000000000000000 0x8e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_protocol + 0x0000000000000000 0x72 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_config_11b_rate + 0x0000000000000000 0x102 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_config_espnow_rate + 0x0000000000000000 0x70 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_config_80211_tx_rate + 0x0000000000000000 0x70 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_bandwidth + 0x0000000000000000 0x60 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_bandwidth + 0x0000000000000000 0x72 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_channel + 0x0000000000000000 0x76 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_home_channel + 0x0000000000000000 0x76 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_channel + 0x0000000000000000 0x7c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_country + 0x0000000000000000 0x66 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_country_code + 0x0000000000000000 0xc6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_country + 0x0000000000000000 0x6a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_country_code + 0x0000000000000000 0x8e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_mac + 0x0000000000000000 0x88 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_promiscuous_filter + 0x0000000000000000 0x62 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_promiscuous_filter + 0x0000000000000000 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_promiscuous_ctrl_filter + 0x0000000000000000 0x62 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_promiscuous_ctrl_filter + 0x0000000000000000 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_promiscuous + 0x0000000000000000 0x83 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_promiscuous_rx_cb + 0x0000000000000000 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_promiscuous + 0x0000000000000000 0x41 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_auto_connect + 0x0000000000000000 0x56 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_auto_connect + 0x0000000000000000 0x3d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_restore + 0x0000000000000000 0x58 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_vendor_ie + 0x0000000000000000 0x62 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_vendor_ie_cb + 0x0000000000000000 0x64 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_max_tx_power + 0x0000000000000000 0x7e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_max_tx_power + 0x0000000000000000 0x4b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_event_mask + 0x0000000000000000 0x62 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_csi + 0x0000000000000000 0x70 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_csi_config + 0x0000000000000000 0x9c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_csi_rx_cb + 0x0000000000000000 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_ant_gpio + 0x0000000000000000 0x66 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_ant_gpio + 0x0000000000000000 0x53 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_ant + 0x0000000000000000 0x66 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_ant + 0x0000000000000000 0x36 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_set_fix_rate + 0x0000000000000000 0x86 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_fix_rate + 0x0000000000000000 0x50 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_sta_rx_probe_req + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_end_session + 0x0000000000000000 0x52 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_resp_set_offset + 0x0000000000000000 0x5e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_set_log_mod + 0x0000000000000000 0x62 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_log + 0x0000000000000000 0x40 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_ioctl + 0x0000000000000000 0x68 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_configure_wake_window + 0x0000000000000000 0x8a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_update_light_sleep_default_params + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_sleep_delay_time + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_keep_alive_time + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_beacon_monitor_configure + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_config_channel + 0x0000000000000000 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_improve_contention_ability + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_negotiated_channel + 0x0000000000000000 0x36 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_negotiated_bandwidth + 0x0000000000000000 0x36 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_aid + 0x0000000000000000 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_negotiated_phymode + 0x0000000000000000 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_tsf_time + 0x0000000000000000 0xa7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_tx_done_cb + 0x0000000000000000 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_inactive_time + 0x0000000000000000 0x66 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_inactive_time + 0x0000000000000000 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_statis_dump + 0x0000000000000000 0x34 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_set_spp_amsdu + 0x0000000000000000 0x7d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_disable_pmf_config + 0x0000000000000000 0x5e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_phy_apply_phy_init_data + 0x0000000000000000 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_nan_internal_publish_service + 0x0000000000000000 0x76 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_nan_internal_subscribe_service + 0x0000000000000000 0x78 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_nan_internal_send_followup + 0x0000000000000000 0x6c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_nan_internal_datapath_req + 0x0000000000000000 0x6a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_nan_internal_datapath_resp + 0x0000000000000000 0x6c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_nan_internal_datapath_end + 0x0000000000000000 0x6c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_mesh_reg_rxcb + 0x0000000000000000 0x34 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_ap_assoc_expire + 0x0000000000000000 0x7c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_ap_assoc_expire + 0x0000000000000000 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_router_bssid + 0x0000000000000000 0x66 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_router_bssid + 0x0000000000000000 0x66 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_beacon_interval + 0x0000000000000000 0x57 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_beacon_interval + 0x0000000000000000 0xa0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_sta_disassoc + 0x0000000000000000 0x68 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_get_cur_ap_info + 0x0000000000000000 0xea /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_scan_get_ap_ie_len + 0x0000000000000000 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_get_cur_ap_record + 0x0000000000000000 0x180 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_scan_get_ap_record + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_mesh_init + 0x0000000000000000 0x94 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_mesh_deinit + 0x0000000000000000 0x7e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_mesh_set + 0x0000000000000000 0x88 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_mesh_get + 0x0000000000000000 0xac /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_roots_set + 0x0000000000000000 0x7e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_roots_get + 0x0000000000000000 0x7e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_allow_root_conflicts + 0x0000000000000000 0x84 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_is_root_conflicts_allowed + 0x0000000000000000 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_parent_monitor_config + 0x0000000000000000 0x66 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_parent_monitor_config + 0x0000000000000000 0x74 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_ie_crypto_funcs_internal + 0x0000000000000000 0x7a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_ie_crypto_key_internal + 0x0000000000000000 0x7e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_sort_ap_records + 0x0000000000000000 0x13e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_sort_get_cur_ap_info + 0x0000000000000000 0x105 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_sort_get_cur_ap_record + 0x0000000000000000 0x1d0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_parent_candidate + 0x0000000000000000 0x82 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_clear_parent_candidate + 0x0000000000000000 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_parent_candidate + 0x0000000000000000 0x7a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_rssi_threshold_internal + 0x0000000000000000 0x7a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_rssi_threshold_internal + 0x0000000000000000 0x7a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_is_roots_found + 0x0000000000000000 0x55 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_storage + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_switch_channel_internal + 0x0000000000000000 0x58 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_active_duty_cycle + 0x0000000000000000 0xfc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_active_duty_cycle + 0x0000000000000000 0x81 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_network_duty_internal + 0x0000000000000000 0x6a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_network_duty_cycle + 0x0000000000000000 0xbc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_network_duty_cycle + 0x0000000000000000 0x9d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_ps_get_ext_duty + 0x0000000000000000 0x52 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_ps_duty_signaling + 0x0000000000000000 0x64 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_non_mesh_connections + 0x0000000000000000 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_dynamic_cs + 0x0000000000000000 0x6a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .bss.token$14623 + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.43 + 0x0000000000000000 0x41 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.42 + 0x0000000000000000 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.41 + 0x0000000000000000 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .bss.s_mesh_fetch_num + 0x0000000000000000 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .bss.s_mesh_sort_num + 0x0000000000000000 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .bss.s_mesh_sort_bss + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.36 + 0x0000000000000000 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.35 + 0x0000000000000000 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.34 + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.33 + 0x0000000000000000 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.32 + 0x0000000000000000 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.31 + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.30 + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.29 + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.28 + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.27 + 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.26 + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.25 + 0x0000000000000000 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.15 + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.14 + 0x0000000000000000 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.g_esp_wifi_he_md5 + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.g_wifi_he_type_md5 + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.g_esp_wifi_md5 + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.g_wifi_type_md5 + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.g_wifi_crypto_funcs_md5 + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.g_wifi_osi_funcs_md5 + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.ieee80211_freedom_inside_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_send_sa_query + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_send_sa_query_resp + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_send_sa_query_req + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_recv_sa_query_resp + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_recv_sa_query_req + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_rate_ref_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_freedom_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_user_ie_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_ifattach + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_ifdetach + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_create_nan + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_destroy_nan + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_destroy_softap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_destroy_sta + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_recycle_rx_pkt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_get_rand_macaddr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_get_rand_macaddr_keep_oui + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_find_elem_match + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_find_ie_match + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_find_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_find_elem + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_find_ext_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_find_ext_elem + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_setup_pmf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_create_softap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_create_sta + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_mode_set + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text.wifi_recycle_rx_pkt + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text.wifi_get_rand_macaddr + 0x0000000000000000 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text.wifi_get_rand_macaddr_keep_oui + 0x0000000000000000 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text.ieee80211_find_ie_match + 0x0000000000000000 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text.ieee80211_find_elem + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text.ieee80211_find_ext_ie + 0x0000000000000000 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text.ieee80211_find_ext_elem + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata.ieee80211_opcap + 0x0000000000000000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .data.libnet80211_reversion_remote + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .data.libnet80211_reversion_git + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_crypto_attach + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_available + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_setkey + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_encap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_decap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_aes_128_cmac_encrypt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_aes_128_cmac_decrypt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_gmac_decrypt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .text.ieee80211_crypto_available + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .text.ieee80211_crypto_setkey + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.wifi_log + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.dbg_hmac_rxtx_statis_dump + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.dbg_hmac_statis_dump + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text.dbg_hmac_rxtx_statis_dump + 0x0000000000000000 0x297 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text.dbg_hmac_statis_dump + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.14 + 0x0000000000000000 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.13 + 0x0000000000000000 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.12 + 0x0000000000000000 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.11 + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.10 + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.9 + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.8 + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.7 + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.6 + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.5 + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.4 + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.3 + 0x0000000000000000 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.2 + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.ieee80211_getmgtframe + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .literal.ieee80211_getbcnframe + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .literal.ieee80211_hdrsize + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.unlikely.is_non_esp_oui + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.unlikely.is_esp_manufacturer_oui + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostapd_beacon_txcb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostap_send_beacon + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_handle_timer + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ap_try_sa_query + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ap_sa_query_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostapd_ps_txcb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .wifi0iram.44.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_free_beacon_eb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostap_send_beacon_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_delete_ptk + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostap_attach + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_deliver_data + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_handle_timer_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostapd_data_txcb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.wifi_ap_reg_rxcb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ap_rx_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_auth_open + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_recv_ctl + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.wifi_softap_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.wifi_softap_stop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ap_sa_query_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ap_try_sa_query_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_recv_mgmt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_input + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.add_mic_ie_bip + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .wifi0iram.44 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .text.ieee80211_hostapd_data_txcb + 0x0000000000000000 0x50 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .bss.APRecvBcnStartTick + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + COMMON 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.addba_get_rap_from_private + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.addba_stop_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_tx_stop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.addba_response_txcb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.addba_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_stop_age_timer$part$0 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htcap_body + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ht_recv_action_ba_addba_response + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_attach + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_free_rx_ba_index + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_rx_stop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ht_recv_action_ba_delba + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_alloc_rx_ba_index + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ht_recv_action_ba_addba_request + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_deattach + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_cal_tx_pps + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_enable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.addba_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_request + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_stop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .wifirxiram.27.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_dispatch_movement + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .wifirxiram.29.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .wifirxiram.31.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .wifirxiram.33.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_age_bss + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_start_age_timer + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_age_all + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .wifirxiram.37.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_recv_bar + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_node_cleanup + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_node_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_parse_htcap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_has_ht40_bss + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_update_channel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_updatehtcap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_updateparams + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_setup_htrates + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_setup_basic_htrates + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htcap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htcap_vendor + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htinfo_body + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htinfo + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htinfo_vendor + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ht_action_output + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ht_send_action_ba_delba + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ht_send_action_ba_addba + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_decap1 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_decap_amsdu + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .text.ieee80211_cal_tx_pps + 0x0000000000000000 0x4d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .text.ieee80211_ampdu_stop + 0x0000000000000000 0x56 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_ie_vendor_esp_head + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_mesh_group + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_simple_pair + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_freq_annon + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_now + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_ssid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_manufacturer + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_mesh_group + 0x0000000000000000 0x35 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_simple_pair + 0x0000000000000000 0x58 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_freq_annon + 0x0000000000000000 0x37 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_now + 0x0000000000000000 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_ssid + 0x0000000000000000 0x50 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.wpa_cipher + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.rsn_cipher + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_deliver_data + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_decap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_is_support_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_is_11b_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_setup_rates + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_set_max_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_is_lr_only + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_setup_phy_mode + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_setup_lr_rates + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_alloc_challenge + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_beacon + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_wpa + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_rsn_cipher_priority + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_better_rsn_pairwise_cipher + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_amsdu_negotiate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_rsn + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_is_ht_cipher + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_wapi + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_action + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_setup_rateset + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .text.ieee80211_deliver_data + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .text.ieee80211_is_11b_rate + 0x0000000000000000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.wifi_wps_stop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wps_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ioctl_ht2040_get + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_pmk_is_valid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_station_set_config_local_2 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ioctl_ht2040_set + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.current_task_is_wifi_task + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.adc2_wifi_acquire + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.adc2_wifi_release + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_station_get_reconnect_policy + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal._do_wifi_stop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal._do_wifi_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_phy_2nd_chan + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_phy_2nd_chan_is_valid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_phy_bw + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_phy_mode + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_phy_2nd_chan_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_station_save_ap_channel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.print_sta_pmk + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_sta_connect + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal._do_wifi_connect + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_sta_disconnect + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal._do_wifi_disconnect + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_sta_scan + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_sta_ap_change_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_mac_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_promis_filter_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_promis_ctrl_filter_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_sta_set_ap_num_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_auto_connect_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_softap_max_support_num + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_softap_set_config + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_macaddr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.chip_post_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.chip_enable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.chip_disable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_reset_mac + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .wifislprxiram.33.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .wifislprxiram.35.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hw_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_txq_empty + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_stop_sw_txq + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hw_stop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_promis_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_mode_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.esp_wifi_internal_set_baw + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_menuconfig_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_crypto_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wpa_crypto_funcs_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_crypto_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hmac_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hmac_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_lmac_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_lmac_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_init_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_deinit_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_start_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_stop_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_connect_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_sta_disconnect + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_disconnect_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_scan_start_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_scan_stop_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ant_to_ant_type + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.cipher_map_net80211_to_public_cipher + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_clear_ap_list_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_ap_list_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_ap_info_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_sta_list_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_protocol_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_protocol_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_bw_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_bw_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_channel_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_home_channel_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_channel_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_chan_range + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_ps_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_country + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_country + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_restart_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_rxcb_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_restore_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_vnd_ie_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_vnd_ie_cb_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_max_tpw + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_event_mask + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_csi + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_csi_set_config + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ant_config_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .wifirxiram.83.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_ant + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_ant_gpio + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_fix_rate_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_deauth_sta_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wps_is_started + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_wps_start_flag + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wpa2_is_started + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wpa2_ent_enable_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wpa2_ent_disable_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_log_mod_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_wps_type_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_wps_status_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ipc_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_appie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_appie_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_wps_cb_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_internal_ioctl_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_tsf_time_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ftm_start_initiator_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_send_mgmt_frame + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_rssi_threshold + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_register_mgmt_frame + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_roc_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_nan_set_config_local + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_config_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_nan_publish_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_nan_subscribe_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_nan_followup_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ndp_req_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ndp_resp_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ndp_end_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_action_tx_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_configure_wake_window_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_disable_pmf_config_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ap_remove_sta_node_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ap_sta_sae_auth_done_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_on_coex_start_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_on_coex_schm_phase_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_set_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_get_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_roots_ie_set_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_roots_ie_get_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_init_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_deinit_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_sta_disassoc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_map_deauth_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_sta_disassoc_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_set_beacon_interval_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_assoc_expire_set_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_router_bssid_set_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_router_bssid_get_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_root_conflicts_set_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_crypto_funcs_set_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_crypto_key_set_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_monitor_set_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_monitor_get_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_candidate_set_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_candidate_clear_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_candidate_get_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_rssi_threshold_set_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_rssi_threshold_get_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_is_roots_found_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_switch_channel_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ps_duty_cycle_set_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ps_duty_cycle_get_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ps_duty_ext_get_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_act_duty_signaling_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_dynamic_cs_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_wps_stop + 0x0000000000000000 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_wps_start + 0x0000000000000000 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ioctl_ht2040_get + 0x0000000000000000 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ioctl_ht2040_set + 0x0000000000000000 0x74 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.ieee80211_set_phy_2nd_chan + 0x0000000000000000 0x41 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.ieee80211_phy_2nd_chan_is_valid + 0x0000000000000000 0xa1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.ieee80211_set_phy_mode + 0x0000000000000000 0x321 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_phy_2nd_chan_process + 0x0000000000000000 0x52 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.print_sta_pmk + 0x0000000000000000 0x1cc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_sta_ap_change_process + 0x0000000000000000 0x112 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_mac_process + 0x0000000000000000 0x19a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_promis_filter_process + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_promis_ctrl_filter_process + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_sta_set_ap_num_process + 0x0000000000000000 0x4a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_auto_connect_process + 0x0000000000000000 0x74 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.chip_post_deinit + 0x0000000000000000 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_promis_process + 0x0000000000000000 0x92 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.esp_wifi_internal_set_baw + 0x0000000000000000 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_crypto_deinit + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_hmac_deinit + 0x0000000000000000 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_lmac_deinit + 0x0000000000000000 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_sta_disconnect + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_scan_stop_process + 0x0000000000000000 0x39 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.cipher_map_net80211_to_public_cipher + 0x0000000000000000 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_clear_ap_list_process + 0x0000000000000000 0x5a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_sta_list_process + 0x0000000000000000 0x164 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_protocol_process + 0x0000000000000000 0x119 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_protocol_process + 0x0000000000000000 0x89 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_bw_process + 0x0000000000000000 0xfe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_bw_process + 0x0000000000000000 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_channel_process + 0x0000000000000000 0x162 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_home_channel_process + 0x0000000000000000 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_channel_process + 0x0000000000000000 0x41 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_chan_range + 0x0000000000000000 0x99 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_ps_process + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_country + 0x0000000000000000 0x20c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_country + 0x0000000000000000 0x69 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_restart_process + 0x0000000000000000 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_restore_process + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_vnd_ie_process + 0x0000000000000000 0x114 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_vnd_ie_cb_process + 0x0000000000000000 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_max_tpw + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_event_mask + 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_csi + 0x0000000000000000 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_csi_set_config + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ant_config_check + 0x0000000000000000 0x5a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .wifirxiram.83 + 0x0000000000000000 0xa9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_ant + 0x0000000000000000 0x4f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_ant_gpio + 0x0000000000000000 0xb7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_fix_rate_process + 0x0000000000000000 0x7a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_wps_start_flag + 0x0000000000000000 0x34 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_wpa2_ent_enable_process + 0x0000000000000000 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_wpa2_ent_disable_process + 0x0000000000000000 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_log_mod_process + 0x0000000000000000 0x88 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_wps_type_process + 0x0000000000000000 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_wps_status_process + 0x0000000000000000 0x37 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_wps_cb_process + 0x0000000000000000 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_internal_ioctl_process + 0x0000000000000000 0x6c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_tsf_time_process + 0x0000000000000000 0x78 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ftm_start_initiator_process + 0x0000000000000000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_rssi_threshold + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_roc_process + 0x0000000000000000 0xd0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_nan_publish_process + 0x0000000000000000 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_nan_subscribe_process + 0x0000000000000000 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_nan_followup_process + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ndp_req_process + 0x0000000000000000 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ndp_resp_process + 0x0000000000000000 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ndp_end_process + 0x0000000000000000 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_action_tx_process + 0x0000000000000000 0xd4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_configure_wake_window_process + 0x0000000000000000 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_disable_pmf_config_process + 0x0000000000000000 0x17a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_set_progress + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_get_progress + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_roots_ie_set_progress + 0x0000000000000000 0x2d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_roots_ie_get_progress + 0x0000000000000000 0x2d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_init_progress + 0x0000000000000000 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_deinit_progress + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_sta_disassoc + 0x0000000000000000 0x5e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_sta_disassoc_progress + 0x0000000000000000 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_set_beacon_interval_progress + 0x0000000000000000 0x9b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_assoc_expire_set_progress + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_router_bssid_set_progress + 0x0000000000000000 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_router_bssid_get_progress + 0x0000000000000000 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_root_conflicts_set_progress + 0x0000000000000000 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_crypto_funcs_set_progress + 0x0000000000000000 0x34 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_crypto_key_set_progress + 0x0000000000000000 0x40 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_monitor_set_progress + 0x0000000000000000 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_monitor_get_progress + 0x0000000000000000 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_candidate_set_progress + 0x0000000000000000 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_candidate_clear_progress + 0x0000000000000000 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_candidate_get_progress + 0x0000000000000000 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_rssi_threshold_set_progress + 0x0000000000000000 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_rssi_threshold_get_progress + 0x0000000000000000 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_is_roots_found_progress + 0x0000000000000000 0x35 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_switch_channel_progress + 0x0000000000000000 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ps_duty_cycle_set_process + 0x0000000000000000 0x4c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ps_duty_ext_get_process + 0x0000000000000000 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_act_duty_signaling_process + 0x0000000000000000 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_dynamic_cs_process + 0x0000000000000000 0x9a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.127 + 0x0000000000000000 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.126 + 0x0000000000000000 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.125 + 0x0000000000000000 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .data.g_mesh_root_conflicts_allowed + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .data.map_assoc_expire + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .bss.mesh_router_bssid + 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.116 + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.115 + 0x0000000000000000 0x51 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.114 + 0x0000000000000000 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.113 + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.112 + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.111 + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.110 + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.109 + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.105 + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.104 + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.98 + 0x0000000000000000 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.97 + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.96 + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .data.s_ioctl_table + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.95 + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.94 + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.90 + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.89 + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.88 + 0x0000000000000000 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.87 + 0x0000000000000000 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.86 + 0x0000000000000000 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.85 + 0x0000000000000000 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.84 + 0x0000000000000000 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.82 + 0x0000000000000000 0x45 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.81 + 0x0000000000000000 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.80 + 0x0000000000000000 0x34 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.79 + 0x0000000000000000 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.78 + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.77 + 0x0000000000000000 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.76 + 0x0000000000000000 0x5b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.70 + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.69 + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.68 + 0x0000000000000000 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.42 + 0x0000000000000000 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.22 + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.13 + 0x0000000000000000 0xac /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.12 + 0x0000000000000000 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.10 + 0x0000000000000000 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.9 + 0x0000000000000000 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_public_action_recv_mesh_awake + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_mesh_quick_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_mesh_quick_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_vnd_mesh_update_beacon + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_vnd_mesh_fully_associated + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.is_esp_mesh_assoc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_public_action_send_mesh_awake + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_public_action_recv_mesh_awake + 0x0000000000000000 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_mesh_quick_init + 0x0000000000000000 0x1b2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_mesh_quick_deinit + 0x0000000000000000 0xb2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_vnd_mesh_update_beacon + 0x0000000000000000 0x4a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_vnd_mesh_fully_associated + 0x0000000000000000 0x4d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .rodata.str1.1 + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .rodata 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_public_action_send_mesh_awake + 0x0000000000000000 0x190 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .bss.esp_mesh_ps_duty + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .bss.esp_mesh_appie + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_hdrsize + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_mgmt_txcb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_get_random_word + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_get_random_byte + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_get_tsf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_is_in_dw + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_update_tsf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_action_frames_queued + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_flush_action_q + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_get_clust_id + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_disc_enable_rx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_disc_disable_rx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.wifi_nan_reg_rxcb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_set_update_sdf_pending + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_set_trc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_input + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_rx_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_transmit_bcn + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_alloc_beacon + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_alloc_sdf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_alloc_action + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_post_event + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_transmit_action + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_tx_action_frame + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_tx_queued_action_frames + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_stop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_set_config_local + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.ieee80211_hdrsize + 0x0000000000000000 0x31 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_mgmt_txcb + 0x0000000000000000 0x92 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_get_random_word + 0x0000000000000000 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_get_random_byte + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_is_in_dw + 0x0000000000000000 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_update_tsf + 0x0000000000000000 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_action_frames_queued + 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_flush_action_q + 0x0000000000000000 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_disc_enable_rx + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_disc_disable_rx + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_set_update_sdf_pending + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_input + 0x0000000000000000 0x39c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_transmit_bcn + 0x0000000000000000 0x7f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata.str1.1 + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_alloc_beacon + 0x0000000000000000 0x18f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_alloc_sdf + 0x0000000000000000 0x183 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_alloc_action + 0x0000000000000000 0x17f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_transmit_action + 0x0000000000000000 0x8f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_tx_action_frame + 0x0000000000000000 0x37 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_tx_queued_action_frames + 0x0000000000000000 0x3e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_start + 0x0000000000000000 0x110 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_stop + 0x0000000000000000 0xca /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.17 + 0x0000000000000000 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.16 + 0x0000000000000000 0x9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.15 + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.14 + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.13 + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.12 + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.11 + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.10 + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.9 + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.8 + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.7 + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.6 + 0x0000000000000000 0x9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.4 + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .bss.s_nan_rx_enabled + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata.NAN_NETWORK_ID + 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata.NAN_STANDARD_BSSID + 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata.NAN_ACTION_OUI + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata.NAN_STANDARD_OUI + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_dp_clear_tmp_data + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_ndp_resp_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.ndc_txop_end + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.ndc_txop_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .wifi0iram.7.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_in_ndc_slot + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_is_peer_available + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_alloc_time_slots + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_get_chan_bitmap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_allocate_crbs + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_alloc_conditional + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_reset_avail_flags_sdf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_avail_entries_len + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_add_entry + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_construct_availability + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_send_indication_event + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_send_confirm_event + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_send_terminated_event + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_alloc_node + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_remove_node + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .wifi0iram.9.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_get_peer_ndp + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_get_peer_ndl + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_alloc_ndp + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_alloc_ndl + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_delete_peer + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_setup_peer + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_confirm_peer + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_construct_device_caps + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_post_tx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_ndp_resp_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_construct_ndp_confirm + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_construct_ndp_terminate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_construct_ndp_resp + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_construct_ndp_req + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_send_ndp_confirm + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_send_ndp_terminate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_send_ndp_resp + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_send_ndp_req + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_parse_ndpa + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_parse_ndla + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_parse_elem_container + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_parse_dev_caps + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_chan_from_bitmap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_parse_time_bitmap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_parse_ndca + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_parse_avail_entries + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_parse_availability + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_parse_ndp_req + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_parse_ndp_resp + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_parse_ndp_confirm + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_parse_ndp_terminate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_get_attr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_rx_naf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_naf_txcb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_datapath_send_req + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_datapath_send_resp + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_datapath_end + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_init_availability + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_indicate_ndc_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_indicate_faw_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_schedule_next_faw + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_schedule_ndc_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_ndp_resp_timeout + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.ndc_txop_end + 0x0000000000000000 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.ndc_txop_start + 0x0000000000000000 0x3e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_alloc_time_slots + 0x0000000000000000 0x47 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_get_chan_bitmap + 0x0000000000000000 0x6a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_allocate_crbs + 0x0000000000000000 0x132 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata 0x0000000000000000 0x3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_alloc_conditional + 0x0000000000000000 0x108 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_reset_avail_flags_sdf + 0x0000000000000000 0x72 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_avail_entries_len + 0x0000000000000000 0x34 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_add_entry + 0x0000000000000000 0xb4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_construct_availability + 0x0000000000000000 0x107 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_send_indication_event + 0x0000000000000000 0x5b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_send_terminated_event + 0x0000000000000000 0x37 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_alloc_node + 0x0000000000000000 0xbc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .wifi0iram.9 0x0000000000000000 0x4b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_get_peer_ndp + 0x0000000000000000 0x7e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_get_peer_ndl + 0x0000000000000000 0x83 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_alloc_ndp + 0x0000000000000000 0x56 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_alloc_ndl + 0x0000000000000000 0x8c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_setup_peer + 0x0000000000000000 0xaa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_confirm_peer + 0x0000000000000000 0x62 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_construct_device_caps + 0x0000000000000000 0x5e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_construct_ndp_confirm + 0x0000000000000000 0xc9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_construct_ndp_terminate + 0x0000000000000000 0xa3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_construct_ndp_resp + 0x0000000000000000 0x32e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_construct_ndp_req + 0x0000000000000000 0x19b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_send_ndp_confirm + 0x0000000000000000 0x6c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_send_ndp_terminate + 0x0000000000000000 0x70 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_send_ndp_resp + 0x0000000000000000 0x9a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_send_ndp_req + 0x0000000000000000 0x6e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_parse_ndpa + 0x0000000000000000 0xdd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_parse_ndla + 0x0000000000000000 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_parse_elem_container + 0x0000000000000000 0xe4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_parse_dev_caps + 0x0000000000000000 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_chan_from_bitmap + 0x0000000000000000 0x4c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_parse_time_bitmap + 0x0000000000000000 0xc2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_parse_ndca + 0x0000000000000000 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_parse_avail_entries + 0x0000000000000000 0x116 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_parse_availability + 0x0000000000000000 0x171 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_parse_ndp_req + 0x0000000000000000 0x122 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_parse_ndp_resp + 0x0000000000000000 0x100 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_parse_ndp_confirm + 0x0000000000000000 0x60 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_parse_ndp_terminate + 0x0000000000000000 0x4b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_get_attr + 0x0000000000000000 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_rx_naf + 0x0000000000000000 0x17c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata.nan_rx_naf + 0x0000000000000000 0x60 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_naf_txcb + 0x0000000000000000 0x42 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_datapath_send_req + 0x0000000000000000 0x18f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_datapath_send_resp + 0x0000000000000000 0xa7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_datapath_end + 0x0000000000000000 0x56 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_init_availability + 0x0000000000000000 0x67 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_init + 0x0000000000000000 0x65 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_deinit + 0x0000000000000000 0x80 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_indicate_ndc_start + 0x0000000000000000 0x88 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_indicate_faw_start + 0x0000000000000000 0x6a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_schedule_next_faw + 0x0000000000000000 0xfb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_schedule_ndc_start + 0x0000000000000000 0x86 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.33 + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.32 + 0x0000000000000000 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.31 + 0x0000000000000000 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.30 + 0x0000000000000000 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.29 + 0x0000000000000000 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.28 + 0x0000000000000000 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.27 + 0x0000000000000000 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.26 + 0x0000000000000000 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.25 + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.24 + 0x0000000000000000 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.23 + 0x0000000000000000 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.22 + 0x0000000000000000 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.21 + 0x0000000000000000 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.20 + 0x0000000000000000 0x31 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.19 + 0x0000000000000000 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.18 + 0x0000000000000000 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.17 + 0x0000000000000000 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.16 + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.15 + 0x0000000000000000 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.14 + 0x0000000000000000 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.13 + 0x0000000000000000 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.12 + 0x0000000000000000 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.10 + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .bss.s_avail_seq + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.6 + 0x0000000000000000 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_info.5 + 0x0000000000000000 0x37 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_info.4 + 0x0000000000000000 0x4a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .data.g_opclass_chan_tbl + 0x0000000000000000 0xd2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .data.g_def_2g_channels + 0x0000000000000000 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_in_transit_event_hdlr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_schedule_next_dwstart + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_fill_dynamic_attr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_compare_mr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_update_amr_for_non_anchor + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_common_dwstart_ops + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_common_dwend_ops + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_ndc_start_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_faw_end_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_faw_start_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_action_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_disc_bcn_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_sync_bcn_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_dwend_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_warmup_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_scan_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_dwstart_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_is_ambtt_too_old$isra$0 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_update_tsf_from_bcn$isra$1 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_adjust_non_anchor_tsf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_recycle_rx_bcn$isra$2 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_stop_handler + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_init_event_hdlr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_update_bcn_stats + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_nms_event_hdlr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_nmns_event_hdlr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_send_started_event + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_scan_event_hdlr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_schedule_disc_bcn + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_am_event_hdlr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_master_event_hdlr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_sm_handle_event_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_sm_handle_event + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_warmup_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_scan_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_dw_start_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_dw_end_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_send_disc_bcn_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_send_sync_bcn_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_send_action_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_faw_start_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_faw_end_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_ndc_start_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_sm_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_sm_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_sm_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_sm_stop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_in_transit_event_hdlr + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_schedule_next_dwstart + 0x0000000000000000 0x4b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_fill_dynamic_attr + 0x0000000000000000 0x80 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_compare_mr + 0x0000000000000000 0xa4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_update_amr_for_non_anchor + 0x0000000000000000 0x21d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_common_dwstart_ops + 0x0000000000000000 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_common_dwend_ops + 0x0000000000000000 0x157 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_ndc_start_timeout + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_faw_end_timeout + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_faw_start_timeout + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_action_timeout + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_disc_bcn_timeout + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_sync_bcn_timeout + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_dwend_timeout + 0x0000000000000000 0x63 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_warmup_timeout + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_scan_timeout + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_dwstart_timeout + 0x0000000000000000 0xdb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_is_ambtt_too_old$isra$0 + 0x0000000000000000 0x4e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_update_tsf_from_bcn$isra$1 + 0x0000000000000000 0xce /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_adjust_non_anchor_tsf + 0x0000000000000000 0xae /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_recycle_rx_bcn$isra$2 + 0x0000000000000000 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_stop_handler + 0x0000000000000000 0xae /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_init_event_hdlr + 0x0000000000000000 0x152 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_update_bcn_stats + 0x0000000000000000 0xee /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_nms_event_hdlr + 0x0000000000000000 0x18a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_nmns_event_hdlr + 0x0000000000000000 0x157 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_send_started_event + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .rodata.str1.1 + 0x0000000000000000 0xd1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_scan_event_hdlr + 0x0000000000000000 0x42d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_schedule_disc_bcn + 0x0000000000000000 0x76 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_am_event_hdlr + 0x0000000000000000 0x394 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_master_event_hdlr + 0x0000000000000000 0x19e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_sm_handle_event_internal + 0x0000000000000000 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_sm_handle_event + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_sm_deinit + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_sm_stop + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .rodata.gNanSm + 0x0000000000000000 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .rodata_wlog_debug.4 + 0x0000000000000000 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .data.nan_state_str + 0x0000000000000000 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_prepare_filter + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_all_wildcard_filter + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_construct_sdea + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_construct_publish_sdf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_construct_subscribe_sdf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_construct_followup_sdf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_send_discovery_result + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_send_replied_event + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_send_receive_event + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_static_sdfs_present + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_send_static_sdfs + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_match_filters + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_sd_parse_sdea + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_sd_parse_dev_caps + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_sd_parse_availability + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_sd_receive_ctrl + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_rx_sdf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_get_service_idx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_get_service_by_index + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_get_service_by_id + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_sdf_txcb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_update_static_sdfs + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_tolower + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_compute_service_hash + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_start_publish_service + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_start_subscribe_service + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.cleanup_peer_list + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_cancel_service + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_services_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_services_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_send_followup_msg + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata.str1.1 + 0x0000000000000000 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_prepare_filter + 0x0000000000000000 0x7c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_all_wildcard_filter + 0x0000000000000000 0x34 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_construct_sdea + 0x0000000000000000 0x2d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_construct_publish_sdf + 0x0000000000000000 0x1f3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_construct_subscribe_sdf + 0x0000000000000000 0x175 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_construct_followup_sdf + 0x0000000000000000 0xf0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_send_discovery_result + 0x0000000000000000 0x53 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_send_replied_event + 0x0000000000000000 0x37 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_send_receive_event + 0x0000000000000000 0x7a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_static_sdfs_present + 0x0000000000000000 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_send_static_sdfs + 0x0000000000000000 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_match_filters + 0x0000000000000000 0x81 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_sd_parse_sdea + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_sd_parse_dev_caps + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_sd_parse_availability + 0x0000000000000000 0x76 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_sd_receive_ctrl + 0x0000000000000000 0x2e6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_rx_sdf + 0x0000000000000000 0xaa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_get_service_idx + 0x0000000000000000 0x51 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_get_service_by_index + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_get_service_by_id + 0x0000000000000000 0x3a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_sdf_txcb + 0x0000000000000000 0x76 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_update_static_sdfs + 0x0000000000000000 0x11a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_tolower + 0x0000000000000000 0x3d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_compute_service_hash + 0x0000000000000000 0x86 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_start_publish_service + 0x0000000000000000 0x1ba /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_start_subscribe_service + 0x0000000000000000 0x1b6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.cleanup_peer_list + 0x0000000000000000 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_cancel_service + 0x0000000000000000 0x64 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_services_init + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_services_deinit + 0x0000000000000000 0x5c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_send_followup_msg + 0x0000000000000000 0xe4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.12 + 0x0000000000000000 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.11 + 0x0000000000000000 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.10 + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.9 + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.8 + 0x0000000000000000 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.7 + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.6 + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.5 + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.4 + 0x0000000000000000 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .comment 0x0000000000000000 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + COMMON 0x0000000000000000 0x5bc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.wifi_nvs_cfg_item_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_cfg_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_sta_restore + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_ap_restore + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_get + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.ieee80211_nvs_set_default_ssid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_commit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_set + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.ieee80211_adjust_2nd_chan + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_compare_cfg_diff + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_set_default_ssid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_ap_ssid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_ap_password + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_sta_password + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_country + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_ap_chan + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_ap_num + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_sta_listen_interval + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_load + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_restore + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_get_sta_listen_interval + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_reset_current_ap_info + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text.wifi_nvs_sta_restore + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text.wifi_nvs_ap_restore + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text.ieee80211_nvs_set_default_ssid + 0x0000000000000000 0x56 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text.wifi_nvs_restore + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.7 + 0x0000000000000000 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.6 + 0x0000000000000000 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.add_appie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_ie_size$part$4 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_internal_tx_is_stop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_reg_encap_amsdu_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_reg_netstack_buf_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_set_hmac_stop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.wifi_is_started + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_alloc_tx_buf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_recycle_cache_eb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_empty_txq + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.get_wifi_internal_state + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_copy_eb_header + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_adjust_head + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_adjust_last_length + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_length_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_setup + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_tx_mgt_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_align_eb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_classify + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_rates + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_dsparams + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_xrates + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_probe_resp_app_ies + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_beacon_app_ies + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_assoc_resp_ies + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_assoc_req_ies + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_probe_req_ies + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_wme_param + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_csa + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_extcap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_ie_size + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_ie_set + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_lora_ie_size + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_lora_ie_set + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_setup_robust_mgmtframe + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_mgmt_output + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_getcapinfo + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_assoc_req_construct + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_assoc_resp_construct + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_auth_construct + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_deauth_construct + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_disassoc_construct + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .wifi0iram.29.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_search_node + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_post_hmac_tx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output_do + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_internal_tx_by_ref + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_internal_tx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_mesh_tx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output_pending_eb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_send_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_encap_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_encap_amsdu + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_alloc_proberesp + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_alloc_deauth + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output_raw_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_raw_frame_sanity_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_80211_tx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_beacon_construct + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_set_tx_desc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_nulldata + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .wifi0iram.13.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .wifi0iram.7.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_probereq + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_mgmt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_proberesp + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_deauth + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_beacon_alloc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_encap_null_data + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_pm_tx_null_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.esp_wifi_internal_tx_is_stop + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.ieee80211_reg_encap_amsdu_cb + 0x0000000000000000 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.wifi_is_started + 0x0000000000000000 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.get_wifi_internal_state + 0x0000000000000000 0x52 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.ieee80211_add_extcap + 0x0000000000000000 0x59 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.ieee80211_vnd_ie_size + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.esp_wifi_internal_tx_by_ref + 0x0000000000000000 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.esp_wifi_mesh_tx + 0x0000000000000000 0xa6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.ieee80211_raw_frame_sanity_check + 0x0000000000000000 0x208 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.esp_wifi_80211_tx + 0x0000000000000000 0x154 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.46 + 0x0000000000000000 0x44 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.45 + 0x0000000000000000 0x44 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.44 + 0x0000000000000000 0x45 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.43 + 0x0000000000000000 0x42 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.42 + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.41 + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.40 + 0x0000000000000000 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.39 + 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.38 + 0x0000000000000000 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.37 + 0x0000000000000000 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.16 + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_phy_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_phy_type_get + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_phy_mode_show + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_setup_ratetable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_phy_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_set_user_sup_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .text.ieee80211_set_user_sup_rate + 0x0000000000000000 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_psq_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_gpsq_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_cleanup + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_find_max_bss + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_set_tim + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_take_head + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_take_tail + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_drop_one_pkt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_send_one_pkt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_is_buff_pkt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_pwrsave + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.pwrsave_flushq + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_node_pwrsave + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_pwrsave_node_cleanup + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_pwrsave_txcb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_is_bufferable_mmpdu + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .text.ieee80211_psq_cleanup + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .text.ieee80211_psq_take_tail + 0x0000000000000000 0x49 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_proto_attach + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_gettid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_set_shortslottime + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_iserp_rateset + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_wme_initparams + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_wme_updateparams + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_mlme_connect_bss + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .text.ieee80211_iserp_rateset + 0x0000000000000000 0x4a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .text.ieee80211_wme_initparams + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .rodata.rates$10287 + 0x0000000000000000 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.get_country_chan_info + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .literal.ieee80211_get_chan_info + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .literal.ieee80211_is_40mhz_valid_bw + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .text.ieee80211_get_chan_info + 0x0000000000000000 0x74 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .rodata.ieee80211_get_chan_info + 0x0000000000000000 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .rodata_wlog_warning.3 + 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .literal.ieee80211_regdomain_max_tx_power + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_get_country + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_update_phy_country + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_update + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_update_in_scan + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_update_in_connect + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_add_countryie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_max_chan + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_ap_max_chan + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_min_chan + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_ap_min_chan + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_chan_num + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_policy + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_chan_in_range + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_is_active_scan + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .text.ieee80211_regdomain_max_tx_power + 0x0000000000000000 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .text.ieee80211_regdomain_chan_num + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .data.s_map 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_rfid_locp_recv_open + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .literal.ieee80211_rfid_locp_recv_close + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .literal.ieee80211_rfid_locp_recv_reset + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .literal.ieee80211_rfid_locp_recv + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .literal.register_ieee80211_rfid_locp_recv_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .literal.unregister_ieee80211_rfid_locp_recv_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .text.ieee80211_rfid_locp_recv_open + 0x0000000000000000 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .text.ieee80211_rfid_locp_recv_close + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .text.register_ieee80211_rfid_locp_recv_cb + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .text.unregister_ieee80211_rfid_locp_recv_cb + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .literal.scan_enter_oper_channel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_inter_channel_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_op_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.unlikely.sta_update_owe_bssid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.ieee80211_scan_attach + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.ieee80211_scan_deattach + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_get_apnum + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_freq_cal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_pm_channel_op_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_flush_all_tx_buf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_cancel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_add_bssid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_remove_bssid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_hidden_ssid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_act_duration + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_pas_duration + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_home_chan_dwell_time + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_add_probe_ssid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_remove_probe_ssid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_prefer_chan + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_update_scan_history + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_build_chan_list + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_desChan + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_get_type + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.cannel_scan_connect_state + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_check_hidden + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.unlikely.scan_add_ssid_do + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.unlikely.scan_add_ssid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_reset_cipher_and_akm + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_profile_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.free_bss_info + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.clear_bss_queue + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_done + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_next_channel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_enter_oper_channel_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_inter_channel_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_op_end + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_connect_state + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.check_bss_queue + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_scan_id + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_get_scan_id + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_parse_ht2040_coex + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_fill_wps_scan_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_get_owe_channel_info + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_validate_owe_scenarios + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_parse_beacon + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text.scan_pm_channel_op_cb + 0x0000000000000000 0x36 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text.cannel_scan_connect_state + 0x0000000000000000 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text.scan_connect_state + 0x0000000000000000 0x53 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.ieee80211_hdrsize + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_assoc_comeback + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_try_sa_query + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_sa_query_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_sta_new_state + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_rx_eapol + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.wifi_sta_reg_rxcb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_michael_mic_failure + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_auth_ft + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_auth_open + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_auth_shared + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_wme_standard_ac_to_esp_ac + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_parse_wmeparams + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_rx_csa + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.reset_cs_thres + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_parse_obss_scan_param + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_retry_assoc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_recv_assoc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_recv_ctl + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.wifi_station_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.wifi_station_stop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_bip_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_sa_query_process_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_try_sa_query_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_is_wpa3_enabled + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_auth_sae + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_recv_mgmt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .wifirxiram.41.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .wifirxiram.47.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_get_owe_data + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.esp_wifi_ap_get_prof_pmk_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_prof_pmk_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_update_ap_info_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_ap_info_prof_pmk_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_ap_ssid_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_prof_ssid_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_authmode_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_max_sta_conn + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_pairwise_cipher_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_prof_authmode_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_pmf_config_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_use_h2e_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_config_sae_pwe_h2e_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_disable_wpa2_authmode_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_config_sae_pk_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_disable_sae_pk_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_notify_node_sae_auth_done + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_is_sta_sae_reauth_node + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_sae_identifier_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_is_ap_notify_completed_rsne_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_password_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.wifi_sta_get_prof_password + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.wifi_ap_pmf_enabled + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_prof_password_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_reset_param_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_set_reset_param_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_prof_is_wpa_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_prof_is_wpa2_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_prof_is_wapi_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_prof_is_rsn_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_pairwise_cipher_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_group_cipher_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_key + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_set_key + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_sta_gtk_index + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_set_sta_gtk_index + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_set_gtk + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_ptk + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_spp + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_wpa_ptk_init_done_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_enable_sta_privacy_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_is_running_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_send_mgmt_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_auth_done_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_unregister_wpa2_cb_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_wpa2_cb_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_unregister_wapi_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_register_wapi_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_unregister_wpa_cb_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_wpa_cb_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_assoc_bssid_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_sta_is_connected + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_hostap_private_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_deauthenticate_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_spp_attrubute_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_user_init_flag_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.wifi_set_rx_policy + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_espnow_get_init_flag + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_espnow_set_init_flag + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_mt_key_is_mask + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_mt_key_is_mask_zero + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_mt_key_set_mask + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_mt_key_clear_mask + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_mac_addr_from_frame + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_del_key_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_key_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_key_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_tx_cb_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_macaddr_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_deauth_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.wifi_init_key + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_ap_key_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ppInstallKey + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_sta_key_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_sta_key_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_appie_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_appie_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_unset_appie_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_wpa2_ent_enable_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_wpa2_ent_disable_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wpa2_ent_state_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wps_type_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_wps_type_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_wps_status_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_disarm_sta_connection_timer_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wps_status_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wps_cb_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_internal_supplicant_header_md5_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wps_start_flag_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_pmf_enabled + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_mgmt_group_cipher + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_igtk_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211w_get_active_igtk_key_id + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211w_get_igtk_from_keyidx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_skip_supp_pmkcaching + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_rssi_threshold + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_is_rm_enabled_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_is_btm_enabled_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_is_mbo_enabled_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_is_ft_enabled_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_mgmt_frame_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_send_mgmt_frm_internal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_action_tx_req + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_remain_on_channel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_get_prof_pmk_internal + 0x0000000000000000 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_disable_sae_pk_internal + 0x0000000000000000 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_get_key + 0x0000000000000000 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_get_sta_gtk_index + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_enable_sta_privacy_internal + 0x0000000000000000 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_unregister_wpa2_cb_internal + 0x0000000000000000 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_register_wpa2_cb_internal + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_unregister_wapi_cb + 0x0000000000000000 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_register_wapi_cb + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_assoc_bssid_internal + 0x0000000000000000 0x5e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_espnow_get_init_flag + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_espnow_set_init_flag + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_mt_key_is_mask + 0x0000000000000000 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_mt_key_is_mask_zero + 0x0000000000000000 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_mt_key_set_mask + 0x0000000000000000 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_mt_key_clear_mask + 0x0000000000000000 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_get_mac_addr_from_frame + 0x0000000000000000 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_del_key_internal + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_key_internal + 0x0000000000000000 0x6f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_key_internal + 0x0000000000000000 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_appie_internal + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_wpa2_ent_enable_internal + 0x0000000000000000 0x6a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_wpa2_ent_disable_internal + 0x0000000000000000 0x6a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wpa2_ent_state_internal + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wps_type_internal + 0x0000000000000000 0x54 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_wps_type_internal + 0x0000000000000000 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_disarm_sta_connection_timer_internal + 0x0000000000000000 0x5a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wps_status_internal + 0x0000000000000000 0x54 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wps_cb_internal + 0x0000000000000000 0x62 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_internal_supplicant_header_md5_check + 0x0000000000000000 0x4c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wps_start_flag_internal + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_rssi_threshold + 0x0000000000000000 0x62 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_is_rm_enabled_internal + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_is_btm_enabled_internal + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_is_mbo_enabled_internal + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_is_ft_enabled_internal + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_action_tx_req + 0x0000000000000000 0x94 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_remain_on_channel + 0x0000000000000000 0x74 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .data.g_wifi_supplicant_funcs_md5 + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_nan_ndp_resp_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_ndc_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_faw_end + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_faw_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_send_action + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_send_sync_bcn + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_send_disc_bcn + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_dw_end + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_dw_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_scan_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_warmup_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_ampdu_age_handle + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_addba + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_sta_retry_assoc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_ap_try_sa_query + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_ap_sa_query_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_sta_sa_query_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_sta_try_sa_query + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_assoc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_auth + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_chm_dwell + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_handshake + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_beacon + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_probe_send + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_csa + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_scan_enter_op_chan + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_scan_inter_chan + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_timer_connect + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_hostap_handle + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_send_beacon + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_register_hostap_timer + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_timer_do_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_timer_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.chm_end_op_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_phy_change_channel$constprop$3 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_mhz2num + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_release_lock + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_end_op + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_end_op_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_cancel_op + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_acquire_lock + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_get_current_channel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .wifi0iram.12.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_get_home_channel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_set_home_channel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_get_chan_info + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_set_current_channel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_change_channel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_start_op + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_return_home_channel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.cnx_sta_connect_led_timer_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_cal_rc_util + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_get_next_rc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_traverse_rc_lis_done + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_op + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_handshake_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_csa_fn + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.mgd_probe_send_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_beacon_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_probe_rc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_to_bss + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.ieee80211_cnx_attach + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal._cnx_start_connect_without_scan + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_can_do_obss_scan + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_obss_scan + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_obss_scan_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_scan_cmd + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_auth_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_assoc_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.wl_is_ap_no_lr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.wl_clear_ap_no_lr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_csa_fn_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_validate_owe_bss + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_bss_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_get_authtype_strength + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_check_bssid_in_blacklist + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_remove_from_blacklist + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_add_to_blacklist + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_clear_blacklist + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_choose_rc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_rc_search + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_add_rc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_remove_all_rc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_do_handoff + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_next_ap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_start_handoff_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_remove_rc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_connect_cmd + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_auth_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_assoc_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_handshake_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_bss_alloc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_remove_rc_except + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_rc_update_rssi + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_rc_update_state_metric + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_probe_rc_tx_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_rc_update_age + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_update_bss + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.esp_mesh_get_tsf_time + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.send_ap_probe + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.mgd_probe_send_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_node_alloc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_node_remove + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .wifi0iram.87.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .wifi0iram.89.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.wifi_softap_staconnected_event_policy + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.wifi_softap_toomany_deny + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_pm + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_update_bss_more + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_beacon_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.ic_set_sta + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_leave + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_associated + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_node_leave + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_node_join + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_start_obss_scan + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_obss_scan_done_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_stop_obss_scan + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_auth_done + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .wifislprxiram.113.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .wifislprxiram.114.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text.cnx_get_authtype_strength + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text.esp_mesh_get_tsf_time + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text.wifi_softap_staconnected_event_policy + 0x0000000000000000 0x42 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text.wifi_softap_toomany_deny + 0x0000000000000000 0x35 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text.cnx_stop_obss_scan + 0x0000000000000000 0x36 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .wifislprxiram.114 + 0x0000000000000000 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.offchan_in_progress + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .literal.offchan_recv_action + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .literal.offchan_send_action_tx_status + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .literal.roc_op_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .literal.roc_op_end + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .literal.offchan_txop_end + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .literal.offchan_txop_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .text.roc_op_start + 0x0000000000000000 0x43 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .text.roc_op_end + 0x0000000000000000 0x64 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .text.offchan_txop_end + 0x0000000000000000 0x82 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .text.offchan_txop_start + 0x0000000000000000 0x29e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .rodata_wlog_error.3 + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .rodata_wlog_error.2 + 0x0000000000000000 0x31 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .data.s_global_offchan_seq + 0x0000000000000000 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .literal.send_inval + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.recv_inval + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_send_action_register + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_send_action_unregister + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_send_action + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_recv_action_register + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_recv_action_unregister + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_recv_action + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .text.ieee80211_send_action_unregister + 0x0000000000000000 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .text.ieee80211_recv_action_unregister + 0x0000000000000000 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.get_iav_key + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_recv_action_vendor_spec + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.register_ieee80211_action_vendor_get_key_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.unregister_ieee80211_action_vendor_get_key_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_add_action_vendor_spec_esp + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_alloc_action_vendor_spec + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_send_action_vendor_spec + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_action_vendor_spec_attach + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.register_ieee80211_action_vendor_spec_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.unregister_ieee80211_action_vendor_spec_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.register_ieee80211_action_vendor_get_key_cb + 0x0000000000000000 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.unregister_ieee80211_action_vendor_get_key_cb + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .rodata.str1.1 + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.ieee80211_add_action_vendor_spec_esp + 0x0000000000000000 0x6b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.ieee80211_alloc_action_vendor_spec + 0x0000000000000000 0xfd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.ieee80211_send_action_vendor_spec + 0x0000000000000000 0x3d8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.register_ieee80211_action_vendor_spec_cb + 0x0000000000000000 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.unregister_ieee80211_action_vendor_spec_cb + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .data.s_global_vendor_seq$10875 + 0x0000000000000000 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .bss.avs_tx_content + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.ccmp_encap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.ccmp_decap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.ieee80211_decrypt_espnow_pkt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.ieee80211_ccmp_decrypt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.ieee80211_ccmp_encrypt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.sms4_decap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .literal.sms4_encap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .literal.tkip_decap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .literal.tkip_encap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .literal.wep_encap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .literal.wep_decap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .literal.esf_buf_alloc_dynamic_default_handler + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .wifislpiram.5.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_alloc_default_handler + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .wifislprxiram.7.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_recycle_default_handler + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .wifirxiram.9.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_setup_for_mesh + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_setup_static + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_free_static + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_setdown + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_setup + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_statis_dump + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .text.esf_buf_setup_for_mesh + 0x0000000000000000 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata.str1.1 + 0x0000000000000000 0x34 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .text.esf_buf_statis_dump + 0x0000000000000000 0xc6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.19 + 0x0000000000000000 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.18 + 0x0000000000000000 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.17 + 0x0000000000000000 0x9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.bb_intr_handl + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_addr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .wifislprxiram.3.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_is_pure_sta + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_ptk_alg + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_disable_crypto + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_key + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_key + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_obtain_key + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_rssi + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_tx_pkt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_ebuf_alloc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_ebuf_recycle_tx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_ebuf_recycle_rx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.esp_wifi_internal_free_rx_buffer + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_tx_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_rx_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_timer_post_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_michael_mic_failure_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_pp_tx_done_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_promis_filter + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_promis_filter + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_promis_ctrl_filter + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_promis_ctrl_filter + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_promis_rx_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_csi_rx_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_config_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_is_mgmt_hwdecr_enabled + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_pm_tx_null_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_net80211_tx_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_timer_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_ftm_callbacks + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_nan_callbacks + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_pp_post + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_enable_sniffer + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_disable_sniffer + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_vif + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_next_tbtt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_del_rx_ba + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_reset_rx_ba + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_add_rx_ba + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_reset_tbtt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_del_key_all + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_del_key + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_ac_param + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_ampdu_op + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.esp_mesh_set_6m_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_trc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_bb_check_noise_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_enable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_disable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_enable_rx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_disable_rx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_beacon_int + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_mac + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_bssid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_current_channel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_random + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_trc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_tx_is_idle + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_pp_hdl + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_rx_policy_ubssid_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_rx_policy + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_sta_auth_flag + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_interface + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_trc_set_per_pkt_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_trc_update_ifx_phy_mode + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_stop_hw_txq + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_stop_sw_txq + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_txq_empty + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_fix_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_fix_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_create_wifi_task + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_delete_wifi_task + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_csi + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .wifislprxiram.13.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .wifislprxiram.14.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_csi_set_config + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_update_light_sleep_default_params + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_sleep_delay_time + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_keep_alive_time + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_beacon_monitor_configure + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_rx_disable_bssid_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_rx_enable_bssid_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_bar_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_trc_update_def_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_espnow_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_80211_tx_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_espnow_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_80211_tx_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_default_sched + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_G6M_sched + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_connectionless_module_set_wake_interval + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.bb_intr_handl + 0x0000000000000000 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_is_pure_sta + 0x0000000000000000 0x2d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_rssi + 0x0000000000000000 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_register_pp_tx_done_cb + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_promis_filter + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_promis_filter + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_promis_ctrl_filter + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_promis_ctrl_filter + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_register_promis_rx_cb + 0x0000000000000000 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_register_csi_rx_cb + 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_register_ftm_callbacks + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_register_nan_callbacks + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_pp_post + 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.esp_mesh_set_6m_rate + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_bb_check_noise_init + 0x0000000000000000 0x46 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_random + 0x0000000000000000 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_tx_is_idle + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_trc_set_per_pkt_rate + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_fix_rate + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_fix_rate + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_csi + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_csi_set_config + 0x0000000000000000 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_update_light_sleep_default_params + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_sleep_delay_time + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_keep_alive_time + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_beacon_monitor_configure + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_rx_disable_bssid_check + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_rx_enable_bssid_check + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_bar_rate + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_trc_update_def_rate + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_espnow_rate + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_80211_tx_rate + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_espnow_rate + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_80211_tx_rate + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_default_sched + 0x0000000000000000 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_G6M_sched + 0x0000000000000000 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_connectionless_module_set_wake_interval + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .rodata_wlog_info.11 + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.lmacIsIdle + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacGetTxFrame + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacReachShortLimit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacReachLongLimit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacIsLongFrame + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.3.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.4.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacSetTxFrame + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacSetAcParam + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacInitAc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacInit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessTxopSuccess + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.15.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacEndRetryAMPDUFail + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .iram1.25.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .iram1.29.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .iram1.30.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .iram1.31.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.34.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.dbg_cnt_lmac_drop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.esp_wifi_internal_set_retry_counter + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.esp_wifi_internal_set_msdu_lifetime + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.esp_wifi_internal_get_mib + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.esp_wifi_internal_set_rts + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.esp_wifi_internal_get_rts + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.50.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.51.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmac_record_txtime + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmac_update_tx_statistic + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.55.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacDiscardMSDU + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.16.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacRetryTxFrame + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacDiscardFrameExchangeSequence + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.17.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.19.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.12.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessTxSuccess + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessShortRetryFail + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessCtsTimeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessLongRetryFail + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessCollision + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessCollisions_task + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessAckTimeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessTxRtsError + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessTxseckiderr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessTxError + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessTxComplete + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacRxDone + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacDisableTransmit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessTxTimeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.dbg_lmac_get_acs + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmac_stop_hw_txq + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.59.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.esp_wifi_set_11b_tx_plcp + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.lmacReachShortLimit + 0x0000000000000000 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.lmacReachLongLimit + 0x0000000000000000 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.3 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.4 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.lmacProcessTxopSuccess + 0x0000000000000000 0xa4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.dbg_cnt_lmac_drop + 0x0000000000000000 0x8d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.esp_wifi_internal_set_retry_counter + 0x0000000000000000 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.esp_wifi_internal_set_msdu_lifetime + 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.esp_wifi_internal_get_mib + 0x0000000000000000 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.esp_wifi_internal_set_rts + 0x0000000000000000 0x5c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.esp_wifi_internal_get_rts + 0x0000000000000000 0x3d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.lmac_record_txtime + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.lmac_update_tx_statistic + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.12 0x0000000000000000 0x68 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.dbg_lmac_get_acs + 0x0000000000000000 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.esp_wifi_set_11b_tx_plcp + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10237 + 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10220 + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_info.49 + 0x0000000000000000 0x3a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.13 + 0x0000000000000000 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.11 + 0x0000000000000000 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.9 + 0x0000000000000000 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.8 + 0x0000000000000000 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .data.txopstart_index + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.hal_pm_unblock_txq + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_incr_active_cnt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_incr_coex_active_cnt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_disable_active_timer + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_mac_sleep_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_mac_sleep_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_beacon_monitor_tbtt_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_beacon_monitor_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_connectionless_wake_window_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_connectionless_wake_interval_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_disconnected_sleep_delay_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_slice_wifi_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_sleep_delay_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_active_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_dream_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_tbtt_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.wifi_apb80m_request + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.wifi_apb80m_release + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.3.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_is_dream + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_is_sleeping + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_is_open + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.4.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_allow_tx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislpiram.5.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.6.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_noise_check_disable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_noise_check_enable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifirxiram.16.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislpiram.17.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislpiram.18.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.19.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_enable_sleep_delay_timer + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_disable_disconnected_sleep_delay_timer + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_enable_disconnected_sleep_delay_timer + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_noise_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_pend_noise_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_noise_check_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_register_pm_tx_null_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_send_nullfunc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_mac_wakeup + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_mac_sleep + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.21.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.22.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.23.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.26.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_disconnected_wake + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.27.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_disconnected_sleep + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_wake_up + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_send_probe_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_off_channel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_wake_done + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_separate_connectionless_window + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislpiram.20.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.28.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_go_to_sleep + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_go_to_wake + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_set_next_tbtt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_mesh_set_next_tbtt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislpiram.30.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_beacon_timestamp_statistic + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_beacon_misc_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_is_in_wifi_slice_threshold + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_prepare_tx_null$constprop$20 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_update_params + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_on_channel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_send_probe_stop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.32.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.33.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_schm_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_schm_process_restart + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_tbtt_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_slice_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_active_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_dream_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_sleep_delay_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.34.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_disconnected_sleep_delay_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislpiram.36.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislpiram.37.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.38.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.35.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.39.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_tx_data_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifirxiram.40.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifirxiram.41.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_tx_data_done_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_tx_null_data_done_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_send_sleep_null_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_send_wake_null_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_on_coex_schm_process_restart + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_on_coex_schm_status_config + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_on_coex_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_on_probe_resp_rx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.43.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifirxiram.44.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_on_data_tx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_on_data_tx_done + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_disconnected_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_disconnected_stop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_stop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_attach + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_deattach + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_set_sleep_type + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_get_sleep_type + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_beacon_monitor_configure + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_update_light_sleep_default_params + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_set_sleep_delay_time + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_set_keep_alive_time + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_scan_lock + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_scan_unlock + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_try_scan_unlock + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_force_scan_unlock + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_get_idle_wait_time + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_enable_sta_disconnected_power_management + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_register_connectionless_wake_window + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_unregister_connectionless_wake_window + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_connectionless_module_set_wake_interval + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.wifi_apb80m_request + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.wifi_apb80m_release + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_is_dream + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_pend_noise_check + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.21 + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_beacon_misc_process + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_set_sleep_type + 0x0000000000000000 0xde /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_get_sleep_type + 0x0000000000000000 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_beacon_monitor_configure + 0x0000000000000000 0x3e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_update_light_sleep_default_params + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_set_sleep_delay_time + 0x0000000000000000 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_set_keep_alive_time + 0x0000000000000000 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_scan_lock + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_scan_unlock + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_try_scan_unlock + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_get_idle_wait_time + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_register_connectionless_wake_window + 0x0000000000000000 0x6a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_unregister_connectionless_wake_window + 0x0000000000000000 0x57 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_connectionless_module_set_wake_interval + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.49 + 0x0000000000000000 0x3f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.48 + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pp_delete_task_manually + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifislpiram.6.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.getle32 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.putle32 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.rotl 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.rotr 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.xswap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_set_cut_rx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_set_cut_evt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_can_cut_sevt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_can_cut_evt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.RxNodeNum + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.TxNodeNum + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.SigSpaceMalloc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.SigSpaceFree + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.DefFreqCalTimerCB + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifirxiram.7.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_register_net80211_tx_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_register_config_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_register_timer_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_register_michael_mic_failure_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.8.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_default_event_handler + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.12.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppAddTimCount + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRegisterPromisRxCallback + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRegisterTxDoneUserActionCallback + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRegisterRxCallback + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRegisterTxCallback + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppUnregisterTxCallback + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_register_tx_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_unregister_tx_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRecycleRxPkt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRecycleTxBuf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppCheckTxQIdle + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppCheckIsConnTraffic + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppCheckTxConnTrafficIdle + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_coex_tx_release + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.18.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppSetInterface + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.20.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifislprxiram.22.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_gettid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppAssembleMicHdr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppCalTkipMic + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppClearRxFragment + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifirxiram.24.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppGetTxQFirstAvail_Locked + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppFetchTxQFirstAvail + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppDequeueTxQ + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRollBackTxQ + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppSetBarRate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppFillAMPDUBar + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppPauseTxAMPDU + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.29.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.30.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.31.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppCheckTxAMPDUlength + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppAdd2AMPDUTail + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.32.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppReSendBar + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRecordBarRRC + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppTxqUpdateBitmap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppEnqueueTxDone + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppDequeueTxDone_Locked + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppProcTxDone + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifislprxiram.40.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifislprxiram.41.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifislprxiram.26.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.emul_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_create_task + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_deattach + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppGetTxframe + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppInitTxq + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppEnableQueue + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.50.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppTxqEmpty + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .iram1.52.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_delete_task + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppMapWaitTxq + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppProcessWaitingQueue + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppProcessWaitQ + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppDisableQueue + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppCheckTxIdle + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppSelectNextQueue + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.49.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.51.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppDiscardMPDU + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.54.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.56.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.13.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppPrepareBarFrame + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_attach + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppAssembleAMPDU + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppAMPDU2Normal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.34.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.21.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.36.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.10.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppDirectRecycleAmpdu + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppClearTxq + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_stop_sw_txq + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRecycleAmpdu + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRegressAmpdu + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppGetTaskHdl + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppMessageInQ + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.rotl 0x0000000000000000 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.rotr 0x0000000000000000 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.pp_set_cut_rx + 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.pp_set_cut_evt + 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.pp_can_cut_sevt + 0x0000000000000000 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.pp_can_cut_evt + 0x0000000000000000 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.RxNodeNum + 0x0000000000000000 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.TxNodeNum + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.SigSpaceMalloc + 0x0000000000000000 0x52 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.SigSpaceFree + 0x0000000000000000 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.DefFreqCalTimerCB + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppAddTimCount + 0x0000000000000000 0x198 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppRegisterPromisRxCallback + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppRegisterTxDoneUserActionCallback + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppUnregisterTxCallback + 0x0000000000000000 0x46 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.pp_register_tx_cb + 0x0000000000000000 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.pp_unregister_tx_cb + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppRecycleTxBuf + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppGetTxQFirstAvail_Locked + 0x0000000000000000 0x46 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppFetchTxQFirstAvail + 0x0000000000000000 0x5b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppRollBackTxQ + 0x0000000000000000 0x36 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppSetBarRate + 0x0000000000000000 0x2d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppPauseTxAMPDU + 0x0000000000000000 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppAdd2AMPDUTail + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.emul_timeout + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppProcessWaitQ + 0x0000000000000000 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppMessageInQ + 0x0000000000000000 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .data.CanDoFreqCal + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.LowestFreqOffsetInOneChk + 0x0000000000000000 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.HighestFreqOffsetInOneChk + 0x0000000000000000 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .data.NoiseTimerInterval + 0x0000000000000000 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.pend_flag_periodic_cal + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.CurSigIdxToBeUse + 0x0000000000000000 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.CurFreeSigIdx + 0x0000000000000000 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.pp_allow_cut_sevt + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.pp_need_cut_rx + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .data.libpp_reversion_git + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + COMMON 0x0000000000000000 0x1a4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .iram1.4.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .iram1.5.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_lmac_rxtx_statis_dump + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_lmac_hw_statis_dump + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_lmac_diag_statis_dump + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_lmac_ps_statis_dump + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_lmac_ps_statis_reset + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_lmac_statis_dump + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_eb_show + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_event_show + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_int_show + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_rx_show + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_tx_show + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_ebuf_loc_show + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_perf_path_show + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_perf_path_set + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_perf_throughput_cal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_lmac_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .iram1.5 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata.str1.1 + 0x0000000000000000 0x1c0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_lmac_rxtx_statis_dump + 0x0000000000000000 0x21e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_lmac_hw_statis_dump + 0x0000000000000000 0x2ff /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_lmac_diag_statis_dump + 0x0000000000000000 0x1be /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_lmac_ps_statis_dump + 0x0000000000000000 0x192 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_lmac_statis_dump + 0x0000000000000000 0x46 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_his_lmac_eb_show + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_his_lmac_event_show + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_his_lmac_int_show + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_his_lmac_rx_show + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_his_lmac_tx_show + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_ebuf_loc_show + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_perf_path_show + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_perf_path_set + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_perf_throughput_cal + 0x0000000000000000 0xa1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.36 + 0x0000000000000000 0x3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .bss.s_t_old 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .bss.s_total 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.35 + 0x0000000000000000 0x55 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.34 + 0x0000000000000000 0x51 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.33 + 0x0000000000000000 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.32 + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.31 + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.30 + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.29 + 0x0000000000000000 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.28 + 0x0000000000000000 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.27 + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.26 + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.25 + 0x0000000000000000 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.24 + 0x0000000000000000 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.23 + 0x0000000000000000 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.22 + 0x0000000000000000 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.21 + 0x0000000000000000 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.20 + 0x0000000000000000 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.19 + 0x0000000000000000 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.18 + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.17 + 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.16 + 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.15 + 0x0000000000000000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.14 + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.13 + 0x0000000000000000 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.12 + 0x0000000000000000 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.11 + 0x0000000000000000 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.10 + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.9 + 0x0000000000000000 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.8 + 0x0000000000000000 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.7 + 0x0000000000000000 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.6 + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.pp_timer_beacon_monitor_tbtt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_beacon_monitor + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_connectionless_wake_window + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_connectionless_wake_interval + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_disconnected_sleep_delay + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_sleep_delay + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_coex_slice + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_active + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_dream + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .wifislpiram.3.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_noise_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .wifislpiram.4.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_register_post_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.RC_GetDuration + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.RC_SetBasicRate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.RC_GetAckRate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.RC_GetRtsRate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.RC_GetAckTime + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.RC_GetCtsTime + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.RC_GetBlockAckTime + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .text.RC_GetAckRate + 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .text.RC_GetRtsRate + 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.rc11NRate2SchedIdx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc11GRate2SchedIdx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc11BRate2SchedIdx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcLoRaRate2SchedIdx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcBuildIndex + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_calc_duration + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rx11NRate2AMPDULimit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trcAmpduSetState + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcSetTxAmpduLimit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcUpdateAMPDUParam + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGet11NHighestRateIdx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGet11GHighestRateIdx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGet11BHighestRateIdx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGetDefaultHigestRateIdx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGetHighestRateIdx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcClearCurStat + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcClearCurSched + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcClearCurAMPDUSched + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcUpdatePhyMode + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcLowerSched + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcUpSched + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcUpdateAckSnr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcTxUpdatePer + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifi0iram.8.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifirxiram.9.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_onAmpduOp + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_set_per_pkt_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcSetBarRate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_default_sched + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_G6M_sched + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGetAmpduSched + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGetRate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rssi_margin + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.TRC_PER_IS_GOOD + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.TRC_AMPDU_PER_DOWN_THRESHOLD + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcAmpduLowerRate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.TRC_AMPDU_PER_UP_THRESHOLD + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifi0iram.10.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcUpdateRate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifi0iram.11.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcReachRetryLimit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcAttach + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_NeedRTS + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_onDisconnect + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_onScanStart + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_onScanDone + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_isAmpduOn + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_onPPTxDone + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_SetTxAmpduState + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifi0iram.18.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifi0iram.19.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_mask + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_disable_trc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_disable_trc_by_interface + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_sta_trc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifirxiram.23.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_trc_by_index + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_trc_default + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_only_sta_trc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_update_def_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_update_ifx_phy_mode + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_set_per_conn_fix_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_enable_trc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_fix_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_set_fix_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_get_espnow_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_set_espnow_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_get_80211_tx_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_set_80211_tx_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rcClearCurStat + 0x0000000000000000 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_set_per_pkt_rate + 0x0000000000000000 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rcSetBarRate + 0x0000000000000000 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_get_default_sched + 0x0000000000000000 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_get_G6M_sched + 0x0000000000000000 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_NeedRTS + 0x0000000000000000 0x62 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.trc_NeedRTS + 0x0000000000000000 0x68 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_onDisconnect + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_onScanStart + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_onScanDone + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_isAmpduOn + 0x0000000000000000 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_SetTxAmpduState + 0x0000000000000000 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_get_mask + 0x0000000000000000 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_get_sta_trc + 0x0000000000000000 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_get_trc_default + 0x0000000000000000 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_only_sta_trc + 0x0000000000000000 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_update_def_rate + 0x0000000000000000 0xbf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_get_fix_rate + 0x0000000000000000 0x35 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_set_fix_rate + 0x0000000000000000 0x98 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_get_espnow_rate + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_set_espnow_rate + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_get_80211_tx_rate + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_set_80211_tx_rate + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_warning.25 + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .data.BAROFDMSched + 0x0000000000000000 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .bss.g_80211_tx_rate + 0x0000000000000000 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .bss.g_espnow_rate + 0x0000000000000000 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifiorslpiram.27.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_SetCurChannel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_SetAuthed + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Set_Beacon_Int + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Reset_TBTT + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_reset_bcnSendTick + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Mesh_Enable_Tsf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Mesh_Set_TBTT + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Get_Next_TBTT + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.5.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.6.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.7.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.8.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.9.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.10.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_mac_sleep_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_mac_sleep_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.13.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.14.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.15.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifislpiram.16.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_csi_hw_bug_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_csi_rx_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_promis_misc_pkt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .iram1.19.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_pop_promis_misc_buf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_process_misc_pkt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_promis_misc_buf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_promis_ctrl_pkt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_promis + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_promis_filter + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_get_promis_filter + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_promis_ctrl_filter + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_get_promis_ctrl_filter + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_SnifferRxAmpdu + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_SnifferRxData + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_IndicateCtrlFrame + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_RxSecError + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifirxiram.28.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_nan_set_callbacks + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_nan_is_in_dw + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_FetchFirstDesc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Rxbuf_Deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Rxbuf_Init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_disable_low_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_enable_low_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_is_low_rate_enable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .iram1.46.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .iram1.47.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifislprxiram.48.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifislpiram.26.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifislprxiram.23.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifirxiram.25.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifislprxiram.29.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifislprxiram.31.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Insert_KeyEntry + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_remove_KeyEntry + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_remove_KeyEntry_all_cnx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Crypto_Disable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifislprxiram.52.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_csi_rx_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_is_mgmt_hwdecr_enabled + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_csi_enable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_ampdu_rx_enable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_ampdu_tx_enable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_amsdu_tx_enable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_nvs_enable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_rx_baw + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_static_rx_buffer_num + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_dynamic_rx_buffer_num + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_tx_buffer_type + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_static_tx_buffer_num + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_dynamic_tx_buffer_num + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_cache_tx_buffer_num + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_task_stack_size + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_timer_task_stack_size + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_wps_task_stack_size + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_wpa2_task_stack_size + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_coexist_task_stack_size + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_pm_task_stack_size + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_task_core_id + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_beacon_max_len + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_mgmt_sbuf_num + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_feature_capabilities + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_espnow_max_encrypt_num + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_is_cache_tx_buf_enabled + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_sta_disconnected_pm + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wDev_Mesh_Enable_Tsf + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wDev_Mesh_Set_TBTT + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_set_promis_filter + 0x0000000000000000 0x3e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_get_promis_filter + 0x0000000000000000 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_set_promis_ctrl_filter + 0x0000000000000000 0x3e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_get_promis_ctrl_filter + 0x0000000000000000 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifirxiram.28 + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_nan_set_callbacks + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wDev_FetchFirstDesc + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_set_csi_rx_cb + 0x0000000000000000 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.config_get_wifi_csi_enable + 0x0000000000000000 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.config_get_wifi_timer_task_stack_size + 0x0000000000000000 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.config_get_wifi_wps_task_stack_size + 0x0000000000000000 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.config_get_wifi_wpa2_task_stack_size + 0x0000000000000000 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.config_get_wifi_coexist_task_stack_size + 0x0000000000000000 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.config_get_wifi_pm_task_stack_size + 0x0000000000000000 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .bss.dbg_rx_bcn_count + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.hal_agreement_add_rx_ba + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .literal.hal_agreement_clr_rx_ba + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .literal.hal_agreement_del_rx_ba + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .literal.hal_ba_session_store + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .literal.hal_ba_session_restore + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .literal.hal_crypto_clr_key_entry + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.hal_crypto_get_using_key_idx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.hal_crypto_set_key_entry + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.hal_crypto_is_key_valid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.hal_crypto_get_key_entry + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.hal_crypto_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.hal_crypto_mgmt_rx_enabled + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.hal_crypto_enable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.hal_crypto_disable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .text.hal_crypto_get_using_key_idx + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.mac_tx_set_plcp0 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.mac_tx_set_duration + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_tx_set_ppdu + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifi0iram.3.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifi0iram.4.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifi0iram.5.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_txq_disable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifi0iram.6.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_set_txq_invalid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_is_txq_enabled + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifi0iram.7.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_now + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_tx_set_cca + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_disable_low_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_enable_low_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifi0iram.8.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.mac_rxbuf_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_disable_mac + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_enable_mac + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifislpiram.9.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifislprxiram.10.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifislprxiram.11.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.mac_txrx_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_set_rxq_policy + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.mac_last_rxbuf_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.mac_last_rxbuf_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.mac_rxbuf_disable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .iram1.12.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .iram1.13.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .iram1.14.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_set_addr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_set_bssid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_rx_set_policy + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_clr_bssid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_tsf_get_time + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.wDev_Mesh_Disable_Tsf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_get_tsf_time + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_tsf_set_time + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_tsf_reset + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_set_csi + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifislprxiram.15.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifi0iram.16.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_rx_enable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_rx_disable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_rx_disable_bssid_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_rx_enable_bssid_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.mac_last_rxbuf_deinit + 0x0000000000000000 0x74 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.mac_rxbuf_disable + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.hal_mac_clr_bssid + 0x0000000000000000 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.wDev_Mesh_Disable_Tsf + 0x0000000000000000 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.hal_mac_tsf_set_time + 0x0000000000000000 0x6d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.hal_mac_set_csi + 0x0000000000000000 0x55 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.hal_mac_rx_enable + 0x0000000000000000 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.hal_mac_rx_disable + 0x0000000000000000 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.hal_rx_disable_bssid_check + 0x0000000000000000 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.hal_rx_enable_bssid_check + 0x0000000000000000 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .bss.g_mac_deinit_txing + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .bss.g_mac_deinit_rxing + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .bss.g_mac_deinit_count + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .iram1.2.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .wifislprxiram.3.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .wifislprxiram.4.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .wifislprxiram.5.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .iram1.6.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .literal.mac_tx_set_plcp1 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .literal.mac_tx_set_plcp2 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .literal.mac_tx_set_htsig + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .wifi0iram.5.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .literal.hal_mac_get_txq_state + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .literal.hal_mac_clr_txq_state + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .literal.hal_mac_get_txq_pmd + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .literal.hal_attenna_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .literal.hal_mac_rate_autoack_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .literal.hal_sniffer_enable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .literal.hal_sniffer_disable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .literal.hal_sniffer_rx_set_promis + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .literal.hal_sniffer_rx_clr_statistics + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .literal.hal_enable_sta_tsf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .literal.hal_disable_sta_tsf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .literal.hal_enable_nan_tsf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .literal.hal_disable_nan_tsf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .text.hal_enable_nan_tsf + 0x0000000000000000 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .text.hal_disable_nan_tsf + 0x0000000000000000 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .literal.prvReturnItemByteBuf + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvGetItemByteBuf + 0x0000000000000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCheckItemFitsByteBuffer + 0x0000000000000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvReturnItemDefault + 0x0000000000000000 0x40 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvGetItemDefault + 0x0000000000000000 0x48 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvSendItemDoneNoSplit + 0x0000000000000000 0x40 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCheckItemFitsDefault + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvGetFreeSize + 0x0000000000000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvInitializeNewRingbuffer + 0x0000000000000000 0x4c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCopyItemByteBuf + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCopyItemAllowSplit + 0x0000000000000000 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCopyItemNoSplit + 0x0000000000000000 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvReceiveGenericFromISR + 0x0000000000000000 0x24 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCreate + 0x0000000000000000 0x2c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCreateNoSplit + 0x0000000000000000 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCreateStatic + 0x0000000000000000 0x2c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferSendAcquire + 0x0000000000000000 0x24 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferSendComplete + 0x0000000000000000 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferSendFromISR + 0x0000000000000000 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveFromISR + 0x0000000000000000 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveSplit + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveSplitFromISR + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveUpTo + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveUpToFromISR + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferReturnItemFromISR + 0x0000000000000000 0x24 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferDelete + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferGetMaxItemSize + 0x0000000000000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferGetCurFreeSize + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferAddToQueueSetRead + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferRemoveFromQueueSetRead + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferGetInfo + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferPrintInfo + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferGetStaticBuffer + 0x0000000000000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCreateWithCaps + 0x0000000000000000 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferDeleteWithCaps + 0x0000000000000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeNoSplit + 0x0000000000000000 0x40 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeAllowSplit + 0x0000000000000000 0x50 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeByteBuf + 0x0000000000000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReturnItemByteBuf + 0x0000000000000000 0x4f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvGetItemByteBuf.str1.4 + 0x0000000000000000 0x127 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetItemByteBuf + 0x0000000000000000 0x101 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCheckItemFitsByteBuffer + 0x0000000000000000 0x6e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvReturnItemDefault.str1.4 + 0x0000000000000000 0x165 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReturnItemDefault + 0x0000000000000000 0x144 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvGetItemDefault.str1.4 + 0x0000000000000000 0x186 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetItemDefault + 0x0000000000000000 0x190 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvSendItemDoneNoSplit.str1.4 + 0x0000000000000000 0x7e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvSendItemDoneNoSplit + 0x0000000000000000 0x126 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCheckItemFitsDefault + 0x0000000000000000 0xae esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvGetFreeSize.str1.4 + 0x0000000000000000 0x1f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetFreeSize + 0x0000000000000000 0x3d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvInitializeNewRingbuffer.str1.4 + 0x0000000000000000 0x3b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvInitializeNewRingbuffer + 0x0000000000000000 0xc9 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemByteBuf + 0x0000000000000000 0x8d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemAllowSplit + 0x0000000000000000 0xfc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemNoSplit + 0x0000000000000000 0x26 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReceiveGenericFromISR + 0x0000000000000000 0xb0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferCreate.str1.4 + 0x0000000000000000 0x2f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreate + 0x0000000000000000 0x92 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreateNoSplit + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferCreateStatic.str1.4 + 0x0000000000000000 0x82 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreateStatic + 0x0000000000000000 0x8b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendAcquire + 0x0000000000000000 0x74 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendComplete + 0x0000000000000000 0xb9 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendFromISR + 0x0000000000000000 0xec esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveFromISR + 0x0000000000000000 0x44 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferReceiveSplit.str1.4 + 0x0000000000000000 0x88 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveSplit + 0x0000000000000000 0x6d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveSplitFromISR + 0x0000000000000000 0x6c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferReceiveUpTo.str1.4 + 0x0000000000000000 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveUpTo + 0x0000000000000000 0x65 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveUpToFromISR + 0x0000000000000000 0x61 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferReturnItemFromISR + 0x0000000000000000 0x67 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferDelete + 0x0000000000000000 0x2f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferGetMaxItemSize + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferGetCurFreeSize + 0x0000000000000000 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferAddToQueueSetRead.str1.4 + 0x0000000000000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferAddToQueueSetRead + 0x0000000000000000 0x5e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferRemoveFromQueueSetRead + 0x0000000000000000 0x5e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferGetInfo + 0x0000000000000000 0x6a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferPrintInfo.str1.4 + 0x0000000000000000 0x3d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferPrintInfo + 0x0000000000000000 0x4a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferGetStaticBuffer.str1.4 + 0x0000000000000000 0x3d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferGetStaticBuffer + 0x0000000000000000 0x44 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreateWithCaps + 0x0000000000000000 0x54 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.vRingbufferDeleteWithCaps.str1.4 + 0x0000000000000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferDeleteWithCaps + 0x0000000000000000 0x44 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x1b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0xf esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x22 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$7 + 0x0000000000000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$8 + 0x0000000000000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$9 + 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$10 + 0x0000000000000000 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$12 + 0x0000000000000000 0x1e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$13 + 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$14 + 0x0000000000000000 0x1f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$15 + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$16 + 0x0000000000000000 0x19 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$17 + 0x0000000000000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$20 + 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$22 + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$23 + 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$24 + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$25 + 0x0000000000000000 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$26 + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$27 + 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$29 + 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$30 + 0x0000000000000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$31 + 0x0000000000000000 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$32 + 0x0000000000000000 0x1b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$33 + 0x0000000000000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$34 + 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$35 + 0x0000000000000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$36 + 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.esp_efuse_get_pkg_ver + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_disable_basic_rom_console + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_disable_rom_download_mode + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_get_pkg_ver + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .rodata.esp_efuse_disable_basic_rom_console.str1.4 + 0x0000000000000000 0x50 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_basic_rom_console + 0x0000000000000000 0x33 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_rom_download_mode + 0x0000000000000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_set_rom_log_scheme + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_frame 0x0000000000000000 0x70 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_info 0x0000000000000000 0x5a7 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_abbrev 0x0000000000000000 0x1ca esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_loc 0x0000000000000000 0x25 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_aranges + 0x0000000000000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_ranges 0x0000000000000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_line 0x0000000000000000 0x5ba esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_str 0x0000000000000000 0xc24 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .iram1.11.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.req_core + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.10.literal + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.7.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.16.literal + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.14.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.12.literal + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.spi_bus_init_lock + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.spi_bus_deinit_lock + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_register_dev + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_unregister_dev + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.24.literal + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.26.literal + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.29.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_bg_request + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.30.literal + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.31.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.32.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.33.literal + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.34.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.try_acquire_free_dev + 0x0000000000000000 0x54 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.11 0x0000000000000000 0x9d esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.req_core + 0x0000000000000000 0x6f esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.10 0x0000000000000000 0x86 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.13 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.7 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.16 0x0000000000000000 0x68 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.14 0x0000000000000000 0x60 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.12 0x0000000000000000 0xb0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_init_lock + 0x0000000000000000 0x39 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.spi_bus_deinit_lock.str1.4 + 0x0000000000000000 0x5b esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_deinit_lock + 0x0000000000000000 0x3a esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_register_dev + 0x0000000000000000 0x9b esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_unregister_dev + 0x0000000000000000 0x46 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_set_bg_control + 0x0000000000000000 0xb esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.21 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.22 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.str1.4 + 0x0000000000000000 0xf2 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.24 0x0000000000000000 0x65 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.26 0x0000000000000000 0x42 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.27 0x0000000000000000 0xa esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.28 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.29 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_bg_request + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.30 0x0000000000000000 0xbd esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.31 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.32 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.33 0x0000000000000000 0x37 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.34 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__$0 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__$1 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__$2 + 0x0000000000000000 0x1b esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .dram1.0 0x0000000000000000 0x9 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .data.s_spinlock + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.check_iomux_pins_quad + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.bus_uses_iomux_pins + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.get_dma_periph + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.claim_dma_chan + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.dma_chan_free + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.connect_spi_and_dma + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.alloc_dma_chan + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.bus_iomux_pins_set_quad + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.bus_iomux_pins_set + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_periph_claim + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_periph_in_use + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_periph_free + 0x0000000000000000 0xc esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_irqsource_for_host + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_irqdma_source_for_host + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_dma_chan_alloc + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_dma_chan_free + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_bus_initialize_io + 0x0000000000000000 0x13c esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_bus_free_io_cfg + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_cs_initialize + 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_cs_free_io + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_bus_using_iomux + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_main_set_lock + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_lock_get_by_id + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_initialize + 0x0000000000000000 0x90 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_get_attr + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_free + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_register_destroy_func + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.0.literal + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.1.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.2.literal + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.3.literal + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.check_iomux_pins_quad + 0x0000000000000000 0x8c esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.bus_uses_iomux_pins + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.get_dma_periph.str1.4 + 0x0000000000000000 0x63 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.get_dma_periph + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.claim_dma_chan + 0x0000000000000000 0x4a esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.dma_chan_free.str1.4 + 0x0000000000000000 0x3d esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.dma_chan_free + 0x0000000000000000 0x8c esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.connect_spi_and_dma + 0x0000000000000000 0x33 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.alloc_dma_chan.str1.4 + 0x0000000000000000 0x79 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.alloc_dma_chan + 0x0000000000000000 0xb2 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.bus_iomux_pins_set_quad + 0x0000000000000000 0xc4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.bus_iomux_pins_set + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_periph_claim.str1.4 + 0x0000000000000000 0x35 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_periph_claim + 0x0000000000000000 0xaf esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_periph_in_use + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_periph_free + 0x0000000000000000 0x82 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_irqsource_for_host + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_irqdma_source_for_host + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_dma_chan_alloc + 0x0000000000000000 0x92 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_dma_chan_free + 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_bus_initialize_io.str1.4 + 0x0000000000000000 0x321 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_bus_initialize_io + 0x0000000000000000 0x734 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_bus_free_io_cfg + 0x0000000000000000 0x61 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_cs_initialize.str1.4 + 0x0000000000000000 0xba esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_cs_initialize + 0x0000000000000000 0x114 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_cs_free_io.str1.4 + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_cs_free_io + 0x0000000000000000 0x50 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_bus_using_iomux + 0x0000000000000000 0x8c esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_main_set_lock + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_lock_get_by_id + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spi_bus_initialize.str1.4 + 0x0000000000000000 0x11f esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_initialize + 0x0000000000000000 0x252 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_get_attr + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_free + 0x0000000000000000 0x7c esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_register_destroy_func + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.0 0x0000000000000000 0x52 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.1 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.2 0x0000000000000000 0x4c esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.3 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__FUNCTION__$0 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__FUNCTION__$4 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$7 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__FUNCTION__$8 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$9 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$10 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.dmaworkaround_waiting_for_chan + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.dmaworkaround_mux + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.dmaworkaround_cb_arg + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.dmaworkaround_cb + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.dmaworkaround_channels_busy + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.spi_dma_spinlock + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.spi_dma_chan_enabled + 0x0000000000000000 0x1 esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.bus_ctx 0x0000000000000000 0xc esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.s_mainbus + 0x0000000000000000 0x64 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.spi_claiming_func + 0x0000000000000000 0xc esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.spi_periph_claimed + 0x0000000000000000 0x3 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_frame 0x0000000000000000 0x2f8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_info 0x0000000000000000 0x5d2a esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_abbrev 0x0000000000000000 0x5e1 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_loc 0x0000000000000000 0x13de esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_aranges + 0x0000000000000000 0x110 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_ranges 0x0000000000000000 0x130 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_line 0x0000000000000000 0x346c esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_str 0x0000000000000000 0x3399 esp-idf/driver/libdriver.a(spi_common.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.bootloader_util_regions_overlap + 0x0000000000000000 0x18 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.unload_partitions + 0x0000000000000000 0x24 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_verify + 0x0000000000000000 0x24 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_register_external + 0x0000000000000000 0x28 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_deregister_external + 0x0000000000000000 0x14 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.bootloader_util_regions_overlap.str1.4 + 0x0000000000000000 0x5e esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.bootloader_util_regions_overlap + 0x0000000000000000 0x51 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.unload_partitions + 0x0000000000000000 0x66 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_verify.str1.4 + 0x0000000000000000 0x12 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_verify + 0x0000000000000000 0x84 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_register_external + 0x0000000000000000 0xe0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_deregister_external + 0x0000000000000000 0x62 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x20 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x15 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x12 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_get_sha256 + 0x0000000000000000 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .literal.esp_partition_check_identity + 0x0000000000000000 0x10 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_get_sha256 + 0x0000000000000000 0x15 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_check_identity + 0x0000000000000000 0x4c esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .literal.get_ota_ops_entry + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.image_validate + 0x0000000000000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.find_default_boot_partition + 0x0000000000000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.read_otadata + 0x0000000000000000 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.rewrite_ota_seq + 0x0000000000000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.check_invalid_otadata + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.get_last_invalid_otadata + 0x0000000000000000 0xc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_begin + 0x0000000000000000 0x2c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_write + 0x0000000000000000 0x50 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_write_with_offset + 0x0000000000000000 0x44 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_abort + 0x0000000000000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_end + 0x0000000000000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_app_partition_count + 0x0000000000000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_rewrite_ota_data + 0x0000000000000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_set_boot_partition + 0x0000000000000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_boot_partition + 0x0000000000000000 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_next_update_partition + 0x0000000000000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_bootloader_description + 0x0000000000000000 0x18 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_partition_description + 0x0000000000000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_check_rollback_is_possible + 0x0000000000000000 0x24 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_current_ota_is_workable + 0x0000000000000000 0x48 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_mark_app_valid_cancel_rollback + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_mark_app_invalid_rollback_and_reboot + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_last_invalid_partition + 0x0000000000000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_state_partition + 0x0000000000000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_erase_last_boot_app_partition + 0x0000000000000000 0x24 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .data 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.is_ota_partition + 0x0000000000000000 0x2e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.set_new_state_otadata + 0x0000000000000000 0x7 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.get_ota_ops_entry + 0x0000000000000000 0x1a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.image_validate + 0x0000000000000000 0x25 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.find_default_boot_partition.str1.4 + 0x0000000000000000 0x4f esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.find_default_boot_partition + 0x0000000000000000 0x5c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.read_otadata.str1.4 + 0x0000000000000000 0x62 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.read_otadata + 0x0000000000000000 0x90 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.rewrite_ota_seq + 0x0000000000000000 0x5a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.check_invalid_otadata + 0x0000000000000000 0x32 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.get_last_invalid_otadata + 0x0000000000000000 0x2c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_begin + 0x0000000000000000 0xde esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_write.str1.4 + 0x0000000000000000 0xb5 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_write + 0x0000000000000000 0x17a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_write_with_offset.str1.4 + 0x0000000000000000 0xc5 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_write_with_offset + 0x0000000000000000 0xc2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_abort + 0x0000000000000000 0x2d esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_end + 0x0000000000000000 0x8d esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_app_partition_count.str1.4 + 0x0000000000000000 0x46 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_app_partition_count + 0x0000000000000000 0x40 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_rewrite_ota_data + 0x0000000000000000 0x96 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_set_boot_partition + 0x0000000000000000 0x61 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_boot_partition.str1.4 + 0x0000000000000000 0x4b esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_boot_partition + 0x0000000000000000 0x82 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_next_update_partition.str1.4 + 0x0000000000000000 0x13 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_next_update_partition + 0x0000000000000000 0x64 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_bootloader_description + 0x0000000000000000 0x74 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_partition_description + 0x0000000000000000 0x4a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_check_rollback_is_possible + 0x0000000000000000 0xbe esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_current_ota_is_workable.str1.4 + 0x0000000000000000 0xdc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_current_ota_is_workable + 0x0000000000000000 0xe6 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_mark_app_valid_cancel_rollback + 0x0000000000000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_mark_app_invalid_rollback_and_reboot + 0x0000000000000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_last_invalid_partition + 0x0000000000000000 0x66 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_state_partition + 0x0000000000000000 0x95 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_erase_last_boot_app_partition + 0x0000000000000000 0xd2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x22 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x20 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x1a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss.s_ota_ops_last_handle + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss.s_ota_ops_entries_head + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .literal.mpi_hal_interrupt_enable + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .text.mpi_hal_interrupt_enable + 0x0000000000000000 0x21 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .literal.rtcio_ll_ext0_set_wakeup_pin + 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.text.11.literal + 0x0000000000000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.get_power_down_flags + 0x0000000000000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.12.literal + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtcio_ll_iomux_func_sel + 0x0000000000000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtcio_ll_function_select + 0x0000000000000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtcio_ll_input_enable + 0x0000000000000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.ext0_wakeup_prepare + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtcio_ll_force_hold_enable + 0x0000000000000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.ext1_wakeup_prepare + 0x0000000000000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.timer_wakeup_prepare + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.13.literal + 0x0000000000000000 0xb4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.16.literal + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_periph_use_8m + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_get_deep_sleep_wake_stub + 0x0000000000000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_set_deep_sleep_wake_stub + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_deregister_hook + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.15.literal + 0x0000000000000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_light_sleep_start + 0x0000000000000000 0xcc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_disable_wakeup_source + 0x0000000000000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_timer_wakeup + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_touchpad_wakeup + 0x0000000000000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_is_valid_wakeup_gpio + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_ext0_wakeup + 0x0000000000000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_ext1_wakeup + 0x0000000000000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_gpio_wakeup + 0x0000000000000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_uart_wakeup + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_get_wakeup_cause + 0x0000000000000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_get_touchpad_wakeup_status + 0x0000000000000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_get_ext1_wakeup_status + 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_pd_config + 0x0000000000000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_disable_rom_logging + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_adc_tsens_monitor + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtc_sleep_enable_ultra_low + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtcio_ll_ext0_set_wakeup_pin + 0x0000000000000000 0x3d esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.text.11 0x0000000000000000 0x47 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.get_power_down_flags + 0x0000000000000000 0xf3 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.12 0x0000000000000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.rtcio_ll_iomux_func_sel.str1.4 + 0x0000000000000000 0xeb esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtcio_ll_iomux_func_sel + 0x0000000000000000 0x63 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.rtcio_ll_function_select.str1.4 + 0x0000000000000000 0x174 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtcio_ll_function_select + 0x0000000000000000 0xab esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtcio_ll_input_enable + 0x0000000000000000 0x4b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.ext0_wakeup_prepare + 0x0000000000000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.rtcio_ll_force_hold_enable.str1.4 + 0x0000000000000000 0xac esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtcio_ll_force_hold_enable + 0x0000000000000000 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.ext1_wakeup_prepare + 0x0000000000000000 0xc9 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.timer_wakeup_prepare + 0x0000000000000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x3b7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.13 0x0000000000000000 0x2da esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.16 0x0000000000000000 0x2d esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_periph_use_8m + 0x0000000000000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_get_deep_sleep_wake_stub + 0x0000000000000000 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_set_deep_sleep_wake_stub + 0x0000000000000000 0xd esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_deregister_hook + 0x0000000000000000 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.15 0x0000000000000000 0x89 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_light_sleep_start + 0x0000000000000000 0x315 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_disable_wakeup_source.str1.4 + 0x0000000000000000 0x41 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wakeup_source + 0x0000000000000000 0x14d esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ulp_wakeup + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_timer_wakeup + 0x0000000000000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep + 0x0000000000000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_enable_touchpad_wakeup.str1.4 + 0x0000000000000000 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_touchpad_wakeup + 0x0000000000000000 0x4f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_is_valid_wakeup_gpio + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_enable_ext0_wakeup.str1.4 + 0x0000000000000000 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext0_wakeup + 0x0000000000000000 0xa1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_enable_ext1_wakeup.str1.4 + 0x0000000000000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext1_wakeup + 0x0000000000000000 0xb5 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_gpio_wakeup + 0x0000000000000000 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_uart_wakeup + 0x0000000000000000 0x51 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_wifi_wakeup + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wifi_wakeup + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_wifi_beacon_wakeup + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wifi_beacon_wakeup + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_bt_wakeup + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_bt_wakeup + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_wakeup_cause + 0x0000000000000000 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_get_touchpad_wakeup_status.str1.4 + 0x0000000000000000 0x86 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_touchpad_wakeup_status + 0x0000000000000000 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_ext1_wakeup_status + 0x0000000000000000 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_pd_config.str1.4 + 0x0000000000000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_pd_config + 0x0000000000000000 0xc4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_disable_rom_logging + 0x0000000000000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_adc_tsens_monitor + 0x0000000000000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtc_sleep_enable_ultra_low + 0x0000000000000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$19 + 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$16 + 0x0000000000000000 0x25 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$15 + 0x0000000000000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$11 + 0x0000000000000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$10 + 0x0000000000000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$9 + 0x0000000000000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$8 + 0x0000000000000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .dram1.19 0x0000000000000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .dram1.18 0x0000000000000000 0x3 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .dram1.17 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_suspended_uarts_bmap + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_periph_use_8m_flag + 0x0000000000000000 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_ultra_low_enabled + 0x0000000000000000 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.force_fast.10 + 0x0000000000000000 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_light_sleep_wakeup + 0x0000000000000000 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .data.s_config + 0x0000000000000000 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_lightsleep_cnt + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_pm_register_inform_out_light_sleep_overhead_callback + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .literal.esp_pm_unregister_inform_out_light_sleep_overhead_callback + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .literal.periph_inform_out_light_sleep_overhead + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .literal.esp_pm_register_light_sleep_default_params_config_callback + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .literal.esp_pm_unregister_light_sleep_default_params_config_callback + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.modem_domain_pd_allowed + 0x0000000000000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .iram1.0 0x0000000000000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.sleep_modem_configure + 0x0000000000000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.esp_pm_register_inform_out_light_sleep_overhead_callback + 0x0000000000000000 0x31 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.esp_pm_unregister_inform_out_light_sleep_overhead_callback + 0x0000000000000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.periph_inform_out_light_sleep_overhead + 0x0000000000000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.esp_pm_register_light_sleep_default_params_config_callback + 0x0000000000000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.esp_pm_unregister_light_sleep_default_params_config_callback + 0x0000000000000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .bss.s_light_sleep_default_params_config_cb + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .bss.s_periph_inform_out_light_sleep_overhead_cb + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_frame 0x0000000000000000 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_info 0x0000000000000000 0x2e0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_abbrev 0x0000000000000000 0x18f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_loc 0x0000000000000000 0x147 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_aranges + 0x0000000000000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_ranges 0x0000000000000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_line 0x0000000000000000 0x56b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_str 0x0000000000000000 0x465 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .literal.rtc_sleep_finish + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_pd + 0x0000000000000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_get_default_config + 0x0000000000000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_init + 0x0000000000000000 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_low_init + 0x0000000000000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_start + 0x0000000000000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_deep_sleep_start + 0x0000000000000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_finish + 0x0000000000000000 0x35 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_pd + 0x0000000000000000 0x1bd esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_get_default_config + 0x0000000000000000 0x13d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_init + 0x0000000000000000 0x4aa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_low_init + 0x0000000000000000 0x5d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_start + 0x0000000000000000 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_deep_sleep_start + 0x0000000000000000 0x96 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_frame 0x0000000000000000 0xb8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_info 0x0000000000000000 0x5c6 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_abbrev 0x0000000000000000 0x23f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_loc 0x0000000000000000 0x126 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_aranges + 0x0000000000000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_ranges 0x0000000000000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_line 0x0000000000000000 0x2695 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_str 0x0000000000000000 0x4ee esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .literal.rtc_printf + 0x0000000000000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.wpa_printf + 0x0000000000000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.wpa2_printf + 0x0000000000000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.wps_printf + 0x0000000000000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.pp_printf + 0x0000000000000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.sc_printf + 0x0000000000000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.core_printf + 0x0000000000000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.wapi_printf + 0x0000000000000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.mesh_printf + 0x0000000000000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.rtc_printf.str1.4 + 0x0000000000000000 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.rtc_printf + 0x0000000000000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.wpa_printf.str1.4 + 0x0000000000000000 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.wpa_printf + 0x0000000000000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.wpa2_printf.str1.4 + 0x0000000000000000 0x5 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.wpa2_printf + 0x0000000000000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.wps_printf.str1.4 + 0x0000000000000000 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.wps_printf + 0x0000000000000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.pp_printf.str1.4 + 0x0000000000000000 0x3 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.pp_printf + 0x0000000000000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.sc_printf.str1.4 + 0x0000000000000000 0xc esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.sc_printf + 0x0000000000000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.core_printf.str1.4 + 0x0000000000000000 0x5 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.core_printf + 0x0000000000000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.wapi_printf.str1.4 + 0x0000000000000000 0x5 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.wapi_printf + 0x0000000000000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.mesh_printf.str1.4 + 0x0000000000000000 0x5 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.mesh_printf + 0x0000000000000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.lwip_sockopt_to_ipopt + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_poll_inc_sockets_used + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.alloc_socket + 0x0000000000000000 0x24 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_pollscan + 0x0000000000000000 0x3c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_poll_dec_sockets_used + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getaddrname + 0x0000000000000000 0x28 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_register_membership + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_unregister_membership + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_register_mld6_membership + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_unregister_mld6_membership + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.select_check_waiters + 0x0000000000000000 0x28 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.event_callback + 0x0000000000000000 0x38 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getsockopt_impl + 0x0000000000000000 0xcc esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getsockopt_callback + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_setsockopt_impl + 0x0000000000000000 0x138 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_setsockopt_callback + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_thread_init + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_thread_cleanup + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_dbg_get_socket + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_accept + 0x0000000000000000 0x78 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_bind + 0x0000000000000000 0x38 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_connect + 0x0000000000000000 0x3c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_listen + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_recv + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_recvmsg + 0x0000000000000000 0x34 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_readv + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_sendmsg + 0x0000000000000000 0x7c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket + 0x0000000000000000 0x2c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_writev + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_poll + 0x0000000000000000 0x48 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_shutdown + 0x0000000000000000 0x2c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getpeername + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getsockname + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getsockopt + 0x0000000000000000 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_setsockopt + 0x0000000000000000 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_inet_ntop + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_inet_pton + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_poll_should_wake + 0x0000000000000000 0x46 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_sockopt_to_ipopt.str1.4 + 0x0000000000000000 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_sockopt_to_ipopt + 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_poll_inc_sockets_used + 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.alloc_socket.str1.4 + 0x0000000000000000 0x1f esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.alloc_socket + 0x0000000000000000 0xbc esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_pollscan + 0x0000000000000000 0x148 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_poll_dec_sockets_used + 0x0000000000000000 0x28 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getaddrname + 0x0000000000000000 0x105 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_register_membership + 0x0000000000000000 0x59 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_unregister_membership + 0x0000000000000000 0x63 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_register_mld6_membership + 0x0000000000000000 0x64 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_unregister_mld6_membership + 0x0000000000000000 0xae esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.select_check_waiters + 0x0000000000000000 0x112 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.event_callback.str1.4 + 0x0000000000000000 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.event_callback + 0x0000000000000000 0x10c esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getsockopt_impl + 0x0000000000000000 0x59e esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_getsockopt_callback.str1.4 + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getsockopt_callback + 0x0000000000000000 0x36 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_setsockopt_impl.str1.4 + 0x0000000000000000 0x40 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_setsockopt_impl + 0x0000000000000000 0x79a esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_setsockopt_callback + 0x0000000000000000 0x34 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_thread_init + 0x0000000000000000 0xb esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_thread_cleanup + 0x0000000000000000 0xb esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_dbg_get_socket + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_accept.str1.4 + 0x0000000000000000 0x25 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_accept + 0x0000000000000000 0x208 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_bind + 0x0000000000000000 0x10e esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_connect + 0x0000000000000000 0x122 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_listen + 0x0000000000000000 0x81 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_recv + 0x0000000000000000 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_recvmsg + 0x0000000000000000 0x164 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_readv + 0x0000000000000000 0x21 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_sendmsg + 0x0000000000000000 0x25a esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket + 0x0000000000000000 0xd8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_writev + 0x0000000000000000 0x21 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_poll.str1.4 + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_poll + 0x0000000000000000 0x12c esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_shutdown + 0x0000000000000000 0xbd esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getpeername + 0x0000000000000000 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getsockname + 0x0000000000000000 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getsockopt + 0x0000000000000000 0xb4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_setsockopt + 0x0000000000000000 0xa0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_inet_ntop + 0x0000000000000000 0x6a esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_inet_pton + 0x0000000000000000 0x4a esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0xa esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$11 + 0x0000000000000000 0xf esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$18 + 0x0000000000000000 0xd esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$20 + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.pbuf_free_int + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callback + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callbackmsg_new + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callbackmsg_delete + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callbackmsg_trycallback + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callbackmsg_trycallback_fromisr + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.pbuf_free_callback + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.mem_free_callback + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.pbuf_free_int + 0x0000000000000000 0xe esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callback + 0x0000000000000000 0x45 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callbackmsg_new + 0x0000000000000000 0x1a esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callbackmsg_delete + 0x0000000000000000 0xf esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callbackmsg_trycallback + 0x0000000000000000 0x2d esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callbackmsg_trycallback_fromisr + 0x0000000000000000 0x2d esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.pbuf_free_callback + 0x0000000000000000 0x13 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.mem_free_callback + 0x0000000000000000 0x13 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x26 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x1e esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$8 + 0x0000000000000000 0xf esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.lwip_strnstr + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(def.c.obj) + .literal.lwip_itoa + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(def.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + .text.lwip_strnstr + 0x0000000000000000 0x44 esp-idf/lwip/liblwip.a(def.c.obj) + .text.lwip_stricmp + 0x0000000000000000 0x41 esp-idf/lwip/liblwip.a(def.c.obj) + .text.lwip_strnicmp + 0x0000000000000000 0x56 esp-idf/lwip/liblwip.a(def.c.obj) + .text.lwip_itoa + 0x0000000000000000 0x9b esp-idf/lwip/liblwip.a(def.c.obj) + .literal.dns_backupserver_available + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_server_is_set + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_create_txid + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_call_found + 0x0000000000000000 0x24 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_correct_response + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_send + 0x0000000000000000 0x60 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_check_entry + 0x0000000000000000 0x34 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_check_entries + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_lookup + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_alloc_random_port + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_alloc_pcb + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_enqueue + 0x0000000000000000 0x28 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_compare_name + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_skip_name + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_recv + 0x0000000000000000 0x78 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_clear_cache + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_getserver + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_tmr + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_timeout_cb + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_gethostbyname_addrtype + 0x0000000000000000 0x30 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_gethostbyname + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_backupserver_available + 0x0000000000000000 0x7c esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_server_is_set + 0x0000000000000000 0x7a esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_create_txid + 0x0000000000000000 0x3c esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_call_found.str1.4 + 0x0000000000000000 0x3d esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_call_found + 0x0000000000000000 0x1a0 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_correct_response + 0x0000000000000000 0x6a esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_send.str1.4 + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_send + 0x0000000000000000 0x291 esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_check_entry.str1.4 + 0x0000000000000000 0x3b esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_check_entry + 0x0000000000000000 0x260 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_check_entries + 0x0000000000000000 0x1a esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_lookup + 0x0000000000000000 0xe5 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_alloc_random_port + 0x0000000000000000 0x5e esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_alloc_pcb + 0x0000000000000000 0x71 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_enqueue + 0x0000000000000000 0x1dd esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_compare_name + 0x0000000000000000 0xcc esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_skip_name + 0x0000000000000000 0x76 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_recv + 0x0000000000000000 0x462 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_clear_cache + 0x0000000000000000 0x13 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_getserver + 0x0000000000000000 0x1a esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_tmr 0x0000000000000000 0x5e esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_timeout_cb + 0x0000000000000000 0xb esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_gethostbyname_addrtype.str1.4 + 0x0000000000000000 0x13 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_gethostbyname_addrtype + 0x0000000000000000 0x150 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_gethostbyname + 0x0000000000000000 0x19 esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x9 esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0xf esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_mquery_v6group + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_mquery_v4group + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_requests + 0x0000000000000000 0x30 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_table + 0x0000000000000000 0x4a0 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_seqno + 0x0000000000000000 0x1 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_last_pcb_idx + 0x0000000000000000 0x1 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_pcbs 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.s_is_tmr_start + 0x0000000000000000 0x1 esp-idf/lwip/liblwip.a(dns.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + .literal.ipaddr_ntoa + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(ip.c.obj) + .literal.ipaddr_ntoa_r + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(ip.c.obj) + .literal.ipaddr_aton + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(ip.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + .text.ipaddr_ntoa + 0x0000000000000000 0x26 esp-idf/lwip/liblwip.a(ip.c.obj) + .text.ipaddr_ntoa_r + 0x0000000000000000 0x2e esp-idf/lwip/liblwip.a(ip.c.obj) + .text.ipaddr_aton + 0x0000000000000000 0x4c esp-idf/lwip/liblwip.a(ip.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + .literal.memp_malloc_pool + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + .literal.memp_free_pool + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + .text.memp_init_pool + 0x0000000000000000 0x5 esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.memp_malloc_pool.str1.4 + 0x0000000000000000 0x12 esp-idf/lwip/liblwip.a(memp.c.obj) + .text.memp_malloc_pool + 0x0000000000000000 0x24 esp-idf/lwip/liblwip.a(memp.c.obj) + .text.memp_free_pool + 0x0000000000000000 0x32 esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0xf esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x11 esp-idf/lwip/liblwip.a(memp.c.obj) + .literal.netif_input + 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_index_to_name + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_find + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_name_to_index + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_set_ipaddr + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_set_netmask + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_set_gw + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_add_noaddr + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_create_ip6_linklocal_address + 0x0000000000000000 0x2c esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_add_ip6_address + 0x0000000000000000 0x2c esp-idf/lwip/liblwip.a(netif.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_input.str1.4 + 0x0000000000000000 0x37 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_input + 0x0000000000000000 0x55 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_index_to_name + 0x0000000000000000 0x2e esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_find + 0x0000000000000000 0x50 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_name_to_index + 0x0000000000000000 0x1d esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_set_ipaddr + 0x0000000000000000 0x2a esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_set_netmask + 0x0000000000000000 0x2a esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_set_gw + 0x0000000000000000 0x2a esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_add_noaddr + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_create_ip6_linklocal_address.str1.4 + 0x0000000000000000 0x32 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_create_ip6_linklocal_address + 0x0000000000000000 0xf6 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_add_ip6_address.str1.4 + 0x0000000000000000 0x4f esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_add_ip6_address + 0x0000000000000000 0xd5 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x16 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x23 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$16 + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.pbuf_header + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_dechain + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_get_contiguous + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_coalesce + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_put_at + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_memcmp + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_memfind + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_strstr + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_header + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_dechain.str1.4 + 0x0000000000000000 0x39 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_dechain + 0x0000000000000000 0x69 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_get_contiguous + 0x0000000000000000 0x52 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_coalesce + 0x0000000000000000 0x24 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_put_at + 0x0000000000000000 0x28 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_memcmp + 0x0000000000000000 0x63 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_memfind + 0x0000000000000000 0x41 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_strstr + 0x0000000000000000 0x4c esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.raw_bind + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.raw_connect + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.raw_disconnect + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.raw_new + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.raw_new_ip_type + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_bind + 0x0000000000000000 0x10e esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_bind_netif + 0x0000000000000000 0x17 esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_connect + 0x0000000000000000 0x105 esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_disconnect + 0x0000000000000000 0x8b esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_recv + 0x0000000000000000 0xa esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_new 0x0000000000000000 0x32 esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_new_ip_type + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.tcp_new_port + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_backlog_delayed + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_bind + 0x0000000000000000 0x24 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_listen_with_backlog_and_err + 0x0000000000000000 0x28 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_listen_with_backlog + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_txnow + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_connect + 0x0000000000000000 0x44 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_debug_state_str + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_tcp_get_tcp_addrinfo + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_accept_null + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_new + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_new_ip_type + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_new_port + 0x0000000000000000 0x6c esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_backlog_delayed + 0x0000000000000000 0x53 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_bind + 0x0000000000000000 0x275 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_bind_netif + 0x0000000000000000 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_listen_with_backlog_and_err.str1.4 + 0x0000000000000000 0x2d esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_listen_with_backlog_and_err + 0x0000000000000000 0x18c esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_listen_with_backlog + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_txnow + 0x0000000000000000 0x21 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_setprio + 0x0000000000000000 0xe esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_connect + 0x0000000000000000 0x2d7 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_debug_state_str + 0x0000000000000000 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_tcp_get_tcp_addrinfo + 0x0000000000000000 0x41 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_accept_null.str1.4 + 0x0000000000000000 0x1d esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_accept_null + 0x0000000000000000 0x25 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_new 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_new_ip_type + 0x0000000000000000 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$13 + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$14 + 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$22 + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x76 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_state_str + 0x0000000000000000 0x2c esp-idf/lwip/liblwip.a(tcp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .literal.sys_timeouts_deinit + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(timeouts.c.obj) + .literal.sys_restart_timeouts + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .text.sys_timeouts_deinit + 0x0000000000000000 0x1f esp-idf/lwip/liblwip.a(timeouts.c.obj) + .text.sys_restart_timeouts + 0x0000000000000000 0x2a esp-idf/lwip/liblwip.a(timeouts.c.obj) + .rodata.lwip_num_cyclic_timers + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .literal.udp_new_ip_type + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + .text.udp_bind_netif + 0x0000000000000000 0x17 esp-idf/lwip/liblwip.a(udp.c.obj) + .text.udp_new_ip_type + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(udp.c.obj) + .literal.dhcp_inform + 0x0000000000000000 0x34 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .text.dhcp_inform + 0x0000000000000000 0xa8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .literal.etharp_find_addr + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(etharp.c.obj) + .literal.etharp_get_entry + 0x0000000000000000 0x24 esp-idf/lwip/liblwip.a(etharp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_find_addr.str1.4 + 0x0000000000000000 0x22 esp-idf/lwip/liblwip.a(etharp.c.obj) + .text.etharp_find_addr + 0x0000000000000000 0x62 esp-idf/lwip/liblwip.a(etharp.c.obj) + .text.etharp_get_entry + 0x0000000000000000 0x75 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x11 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$7 + 0x0000000000000000 0x11 esp-idf/lwip/liblwip.a(etharp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .literal.ip4_set_default_multicast_netif + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) + .literal.ip4_output + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(ip4.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .text.ip4_set_default_multicast_netif + 0x0000000000000000 0xa esp-idf/lwip/liblwip.a(ip4.c.obj) + .text.ip4_output + 0x0000000000000000 0x51 esp-idf/lwip/liblwip.a(ip4.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0xb esp-idf/lwip/liblwip.a(ip4.c.obj) + .literal.ip4_addr_netmask_valid + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .literal.ip4addr_aton + 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .literal.ipaddr_addr + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .literal.ip4addr_ntoa + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ip4_addr_netmask_valid + 0x0000000000000000 0x32 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .rodata.ip4addr_aton.str1.4 + 0x0000000000000000 0x3f esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ip4addr_aton + 0x0000000000000000 0x1c7 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ipaddr_addr + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ip4addr_ntoa + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .bss.str$0 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0xd esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .literal.icmp6_send_response_with_addrs + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(icmp6.c.obj) + .literal.icmp6_packet_too_big + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .literal.icmp6_time_exceeded + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .literal.icmp6_time_exceeded_with_addrs + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.icmp6_send_response_with_addrs.str1.4 + 0x0000000000000000 0x29 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text.icmp6_send_response_with_addrs + 0x0000000000000000 0x4e esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text.icmp6_packet_too_big + 0x0000000000000000 0x13 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text.icmp6_time_exceeded + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text.icmp6_time_exceeded_with_addrs + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1f esp-idf/lwip/liblwip.a(icmp6.c.obj) + .literal.ip6_output + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(ip6.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .text.ip6_output + 0x0000000000000000 0x171 esp-idf/lwip/liblwip.a(ip6.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0xb esp-idf/lwip/liblwip.a(ip6.c.obj) + .literal.ip6addr_aton + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .literal.ip6addr_ntoa_r + 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .literal.ip6addr_ntoa + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text.ip6addr_aton + 0x0000000000000000 0x198 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .rodata.ip6addr_ntoa_r.str1.4 + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text.ip6addr_ntoa_r + 0x0000000000000000 0x218 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text.ip6addr_ntoa + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .bss.str$0 0x0000000000000000 0x28 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .literal.ip4_netif_exist + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .text.ip4_netif_exist + 0x0000000000000000 0x38 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .literal.lwip_getsockopt_impl_ext + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .text.lwip_setsockopt_impl_ext + 0x0000000000000000 0xe1 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .rodata.lwip_getsockopt_impl_ext.str1.4 + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .text.lwip_getsockopt_impl_ext + 0x0000000000000000 0xd5 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_frame 0x0000000000000000 0x40 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_info 0x0000000000000000 0xf09 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_abbrev 0x0000000000000000 0x1c5 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_loc 0x0000000000000000 0x364 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_aranges + 0x0000000000000000 0x28 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_ranges 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_line 0x0000000000000000 0xa7d esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_str 0x0000000000000000 0x9d0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .literal.sys_mutex_free + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_mbox_trypost_fromisr + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_jiffies + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_thread_sem_deinit + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_delay_ms + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_mutex_free + 0x0000000000000000 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_mbox_trypost_fromisr.str1.4 + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_mbox_trypost_fromisr + 0x0000000000000000 0x44 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_mbox_set_owner + 0x0000000000000000 0xe esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_jiffies + 0x0000000000000000 0xd esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_thread_sem_deinit + 0x0000000000000000 0x26 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_delay_ms + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x19 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .literal.dhcp_search_ip_on_mac + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .literal.dhcps_dns_setserver + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcps_option_info + 0x0000000000000000 0x74 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcp_search_ip_on_mac + 0x0000000000000000 0x44 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcps_dns_setserver + 0x0000000000000000 0x21 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcps_dns_getserver + 0x0000000000000000 0x15 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .literal.netconn_new_with_proto_and_callback + 0x0000000000000000 0x34 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_bind + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_bind_if + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_connect + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_disconnect + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_listen_with_backlog + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_sendto + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_close + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_accept + 0x0000000000000000 0x3c esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_recv_udp_raw_netbuf + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_recv_tcp_pbuf + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_recv + 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_shutdown + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_gethostbyname_addrtype + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_thread_init + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_thread_cleanup + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_new_with_proto_and_callback + 0x0000000000000000 0x86 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_bind + 0x0000000000000000 0x91 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_bind_if + 0x0000000000000000 0x23 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_connect + 0x0000000000000000 0x2d esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_disconnect + 0x0000000000000000 0x21 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_listen_with_backlog + 0x0000000000000000 0x25 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_sendto + 0x0000000000000000 0x75 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_close + 0x0000000000000000 0x12 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_accept + 0x0000000000000000 0x128 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_recv_udp_raw_netbuf + 0x0000000000000000 0x31 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_recv_tcp_pbuf + 0x0000000000000000 0x31 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_recv.str1.4 + 0x0000000000000000 0xa esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_recv + 0x0000000000000000 0xb1 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_shutdown + 0x0000000000000000 0x2d esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_gethostbyname_addrtype + 0x0000000000000000 0x4a esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_thread_init.str1.4 + 0x0000000000000000 0x27 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_thread_init + 0x0000000000000000 0x32 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_thread_cleanup + 0x0000000000000000 0x16 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0xd esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x24 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.lwip_netconn_do_dns_found + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.recv_udp + 0x0000000000000000 0x3c esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.recv_raw + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.setup_tcp + 0x0000000000000000 0x24 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.pcb_new + 0x0000000000000000 0x30 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_connected + 0x0000000000000000 0x28 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.recv_tcp + 0x0000000000000000 0x38 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_newconn + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.netconn_alloc + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.accept_function + 0x0000000000000000 0x4c esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_bind + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_bind_if + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_connect + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_disconnect + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_listen + 0x0000000000000000 0x34 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_accepted + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_gethostbyname + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_dns_found + 0x0000000000000000 0x2e esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.recv_udp.str1.4 + 0x0000000000000000 0x62 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.recv_udp + 0x0000000000000000 0x123 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.recv_raw + 0x0000000000000000 0xb5 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.setup_tcp + 0x0000000000000000 0x42 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.pcb_new.str1.4 + 0x0000000000000000 0x1f esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.pcb_new 0x0000000000000000 0xf2 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_connected.str1.4 + 0x0000000000000000 0x7d esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_connected + 0x0000000000000000 0xd4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.recv_tcp.str1.4 + 0x0000000000000000 0x7a esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.recv_tcp + 0x0000000000000000 0xb6 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_newconn + 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_alloc.str1.4 + 0x0000000000000000 0x26 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.netconn_alloc + 0x0000000000000000 0x7a esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.accept_function.str1.4 + 0x0000000000000000 0x27 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.accept_function + 0x0000000000000000 0x140 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_bind + 0x0000000000000000 0xe4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_bind_if + 0x0000000000000000 0x74 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_connect + 0x0000000000000000 0xca esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_disconnect + 0x0000000000000000 0x2f esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_listen.str1.4 + 0x0000000000000000 0x2d esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_listen + 0x0000000000000000 0x16f esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_accepted + 0x0000000000000000 0x2a esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_gethostbyname + 0x0000000000000000 0x32 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x17 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x1a esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$9 + 0x0000000000000000 0xe esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$10 + 0x0000000000000000 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$17 + 0x0000000000000000 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$18 + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(err.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(err.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(err.c.obj) + .literal.netbuf_new + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .literal.netbuf_ref + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .literal.netbuf_chain + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_new + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_ref + 0x0000000000000000 0x46 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_chain + 0x0000000000000000 0x22 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_data + 0x0000000000000000 0x39 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_next + 0x0000000000000000 0x2a esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_first + 0x0000000000000000 0xb esp-idf/lwip/liblwip.a(netbuf.c.obj) + .literal.inet_cksum_pseudo_partial_base + 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .literal.inet_chksum_pseudo_partial + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .literal.ip6_chksum_pseudo_partial + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .literal.ip_chksum_pseudo_partial + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .rodata.inet_cksum_pseudo_partial_base.str1.4 + 0x0000000000000000 0x3d esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.inet_cksum_pseudo_partial_base + 0x0000000000000000 0xc0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.inet_chksum_pseudo_partial + 0x0000000000000000 0x3e esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.ip6_chksum_pseudo_partial + 0x0000000000000000 0x55 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.ip_chksum_pseudo_partial + 0x0000000000000000 0x34 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1f esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .literal.esp_netif_action_join_ip6_multicast_group + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .literal.esp_netif_action_leave_ip6_multicast_group + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .literal.esp_netif_action_add_ip6_address + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .literal.esp_netif_action_remove_ip6_address + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text.esp_netif_action_join_ip6_multicast_group + 0x0000000000000000 0xf esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text.esp_netif_action_leave_ip6_multicast_group + 0x0000000000000000 0xf esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text.esp_netif_action_add_ip6_address + 0x0000000000000000 0xf esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text.esp_netif_action_remove_ip6_address + 0x0000000000000000 0xf esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .rodata._g_esp_netif_inherent_eth_config + 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .rodata._g_esp_netif_inherent_ap_config + 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .rodata._g_esp_netif_soft_ap_ip + 0x0000000000000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .data._g_esp_netif_netstack_default_wifi_ap + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .data._g_esp_netif_netstack_default_wifi_nan + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .data._g_esp_netif_netstack_default_eth + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .rodata.s_wifi_netif_config_nan + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .rodata.s_wifi_netif_config_ap + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .rodata.s_eth_netif_config + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .literal.wlanif_init_ap + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .literal.wlanif_init_nan + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .text.wlanif_init_ap + 0x0000000000000000 0x1d esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .text.wlanif_init_nan + 0x0000000000000000 0x1d esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .literal.ethernet_low_level_output + 0x0000000000000000 0x18 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .literal.ethernetif_input + 0x0000000000000000 0x14 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .literal.ethernetif_init + 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text.ethernet_low_level_init + 0x0000000000000000 0x20 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text.ethernet_low_level_output + 0x0000000000000000 0x81 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text.ethernetif_input + 0x0000000000000000 0x5b esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .rodata.ethernetif_init.str1.4 + 0x0000000000000000 0x4e esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text.ethernetif_init + 0x0000000000000000 0x58 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x10 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_frame 0x0000000000000000 0x70 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_info 0x0000000000000000 0xb0d esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_abbrev 0x0000000000000000 0x2be esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_loc 0x0000000000000000 0x262 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_aranges + 0x0000000000000000 0x38 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_ranges 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_line 0x0000000000000000 0x865 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_str 0x0000000000000000 0x724 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .literal.wpa_sendto_wrapper + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .text.wpa_sendto_wrapper + 0x0000000000000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .literal.esp_supplicant_str_to_mac + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.esp_supplicant_str_to_mac + 0x0000000000000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.esp_rrm_send_neighbor_rep_request + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.esp_wnm_send_bss_transition_mgmt_query + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.esp_mbo_update_non_pref_chan + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .literal.esp_wifi_unregister_wpa3_cb + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .text.esp_wifi_unregister_wpa3_cb + 0x0000000000000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .literal.crypto_rng_wrapper + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.pk_write_ec_pubkey_formatted + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.pk_write_ec_param + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_group_byname + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_affine_coordinates + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_get_order + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_key_compare + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_debug_print_point + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_public_key + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_priv_key_der + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_group_from_key + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_private_key + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_publickey_buf + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_write_pubkey_der + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_key + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_curve_id + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ecdh + 0x0000000000000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ecdsa_get_sign + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_edcsa_sign_verify + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_parse_subpub_key + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_is_ec_key + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_gen_keypair + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.mbedtls_pk_write_pubkey_formatted + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_pk_write_formatted_pubkey_der + 0x0000000000000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_write_pub_key + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_rng_wrapper + 0x0000000000000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.pk_write_ec_pubkey_formatted + 0x0000000000000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.pk_write_ec_param + 0x0000000000000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_group_byname + 0x0000000000000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_affine_coordinates + 0x0000000000000000 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_get_order + 0x0000000000000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_key_compare + 0x0000000000000000 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_debug_print_point + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_public_key + 0x0000000000000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_priv_key_der + 0x0000000000000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_group_from_key + 0x0000000000000000 0x23 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_private_key + 0x0000000000000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_publickey_buf + 0x0000000000000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_write_pubkey_der + 0x0000000000000000 0x4d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_key + 0x0000000000000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_curve_id + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ecdh + 0x0000000000000000 0x116 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ecdsa_get_sign + 0x0000000000000000 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_edcsa_sign_verify + 0x0000000000000000 0x7a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_debug_print_ec_key + 0x0000000000000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_parse_subpub_key + 0x0000000000000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_is_ec_key + 0x0000000000000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_gen_keypair + 0x0000000000000000 0x66 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.mbedtls_pk_write_pubkey_formatted + 0x0000000000000000 0x45 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_pk_write_formatted_pubkey_der + 0x0000000000000000 0xf4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_write_pub_key + 0x0000000000000000 0x4d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.eloop_cancel_timeout_one + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.eloop_is_timeout_registered + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.eloop_deplete_timeout + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.eloop_replenish_timeout + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_cancel_timeout_one + 0x0000000000000000 0xa5 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_is_timeout_registered + 0x0000000000000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_deplete_timeout + 0x0000000000000000 0xd9 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_replenish_timeout + 0x0000000000000000 0xd9 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.hostapd_config_defaults_bss + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_config_defaults + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_mac_comp + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_mac_comp_empty + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_wep_key_cmp + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_maclist_found + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_config_defaults_bss + 0x0000000000000000 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_config_defaults + 0x0000000000000000 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_mac_comp + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_mac_comp_empty + 0x0000000000000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_wep_key_cmp + 0x0000000000000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_maclist_found + 0x0000000000000000 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_rate_found + 0x0000000000000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.wpa_auth_pmksa_remove + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .literal.wpa_auth_sm_event + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_auth_for_each_sta + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_auth_sta_no_wpa + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_auth_pmksa_remove + 0x0000000000000000 0x23 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_auth_sm_event + 0x0000000000000000 0xb2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .literal.pmksa_cache_auth_flush + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .literal.pmksa_cache_auth_list + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .text.pmksa_cache_auth_flush + 0x0000000000000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .rodata.pmksa_cache_auth_list.str1.4 + 0x0000000000000000 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .text.pmksa_cache_auth_list + 0x0000000000000000 0xdc esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .literal.ap_sta_delayed_1x_auth_fail_cb + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .literal.hostapd_free_stas + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .literal.ap_sta_delayed_1x_auth_fail_disconnect + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .literal.ap_sta_pending_delayed_1x_auth_fail_disconnect + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.ap_sta_delayed_1x_auth_fail_cb + 0x0000000000000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.ap_for_each_sta + 0x0000000000000000 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.hostapd_free_stas + 0x0000000000000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.ap_sta_delayed_1x_auth_fail_disconnect + 0x0000000000000000 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.ap_sta_pending_delayed_1x_auth_fail_disconnect + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .literal.sae_state_txt + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_state_txt.str1.4 + 0x0000000000000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.sae_state_txt + 0x0000000000000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .text.dragonfly_suitable_group + 0x0000000000000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .literal.wpa_cipher_txt + 0x0000000000000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .literal.wpa_insert_pmkid + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .literal.wpa_cipher_rsc_len + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .rodata.wpa_cipher_txt.str1.4 + 0x0000000000000000 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text.wpa_cipher_txt + 0x0000000000000000 0x9d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text.wpa_insert_pmkid + 0x0000000000000000 0x158 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text.wpa_cipher_rsc_len + 0x0000000000000000 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .literal.dh_init + 0x0000000000000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .literal.dh_derive_shared + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .text.dh_init 0x0000000000000000 0xb6 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .text.dh_derive_shared + 0x0000000000000000 0x6b esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .literal.wpa_sm_set_pmk + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .literal.wpa_sta_is_cur_pmksa_set + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.eapol_sm_notify_eap_success + 0x0000000000000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpa_sm_set_pmk + 0x0000000000000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpa_sta_is_cur_pmksa_set + 0x0000000000000000 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .literal.wpabuf_resize + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_alloc_ext_data + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_clear_free + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_dup + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_concat + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_printf + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_resize + 0x0000000000000000 0x8e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_alloc_ext_data + 0x0000000000000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_clear_free + 0x0000000000000000 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_dup + 0x0000000000000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_concat + 0x0000000000000000 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_printf + 0x0000000000000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal._wpa_snprintf_hex + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .literal.wpa_snprintf_hex_uppercase + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .literal.wpa_snprintf_hex + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .rodata._wpa_snprintf_hex.str1.4 + 0x0000000000000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .text._wpa_snprintf_hex + 0x0000000000000000 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .text.wpa_snprintf_hex_uppercase + 0x0000000000000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .text.wpa_snprintf_hex + 0x0000000000000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_frame 0x0000000000000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_info 0x0000000000000000 0x346 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_abbrev 0x0000000000000000 0x139 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_loc 0x0000000000000000 0x280 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_aranges + 0x0000000000000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_ranges 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_line 0x0000000000000000 0x4ce esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_str 0x0000000000000000 0x2ab esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .literal.add_char + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .literal.sae_pk_base32_encode + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .text.add_char + 0x0000000000000000 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .text.sae_pk_base32_encode + 0x0000000000000000 0x10e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .literal.wpa_bss_update_end + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + .literal.wpa_bss_get_next_bss + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + .literal.wpa_bss_ext_capab + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + .text.wpa_bss_update_start + 0x0000000000000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + .text.wpa_bss_update_end + 0x0000000000000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + .text.wpa_bss_get_next_bss + 0x0000000000000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + .text.wpa_bss_get_vendor_ie + 0x0000000000000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + .text.wpa_bss_ext_capab + 0x0000000000000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + .literal.wpa_supplicant_req_scan + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + .literal.wpa_scan_free_params + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + .text.wpa_supplicant_req_scan + 0x0000000000000000 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + .text.wpa_scan_free_params + 0x0000000000000000 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + .literal.scan_done_cleanup + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + .literal.issue_scan + 0x0000000000000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + .literal.esp_supplicant_handle_scan_done_evt + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + .literal.scan_done_event_handler + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + .literal.wpa_supplicant_trigger_scan + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + .literal.wpa_scan_results_free + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + .text.scan_done_cleanup + 0x0000000000000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + .text.issue_scan + 0x0000000000000000 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + .text.esp_supplicant_handle_scan_done_evt + 0x0000000000000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + .text.scan_done_event_handler + 0x0000000000000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + .text.wpa_supplicant_trigger_scan + 0x0000000000000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + .text.wpa_scan_results_free + 0x0000000000000000 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .text.wpa_sm_get_beacon_ie + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .literal.crypto_bignum_bits + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .literal.crypto_bignum_to_string + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .literal.crypto_free_buffer + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .text.crypto_bignum_bits + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .text.crypto_bignum_to_string + 0x0000000000000000 0x49 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .text.crypto_free_buffer + 0x0000000000000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .literal.aes_siv_encrypt + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .text.aes_siv_encrypt + 0x0000000000000000 0xc4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .literal.wpabuf_put_data + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .literal.mbo_add_ie + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .literal.ieee802_11_parse_candidate_list + 0x0000000000000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .literal.ieee802_11_vendor_ie_concat + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.wpabuf_put_data + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.ieee802_11_ie_count + 0x0000000000000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.get_vendor_ie + 0x0000000000000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.mbo_add_ie + 0x0000000000000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .rodata.ieee802_11_parse_candidate_list.str1.4 + 0x0000000000000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.ieee802_11_parse_candidate_list + 0x0000000000000000 0x13d esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.ieee802_11_vendor_ie_concat + 0x0000000000000000 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.ieee802_11_ext_capab + 0x0000000000000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.get_operating_class + 0x0000000000000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .literal.pmksa_cache_list + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .rodata.pmksa_cache_list.str1.4 + 0x0000000000000000 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .text.pmksa_cache_list + 0x0000000000000000 0xe4 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .literal.asn1_find_named_data + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.asn1_write_tagged_int + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_raw_buffer + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_null + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_oid + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_algorithm_identifier + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_bool + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_int + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_enum + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_tagged_string + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_utf8_string + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_printable_string + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_ia5_string + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_bitstring + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_named_bitstring + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_octet_string + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_store_named_data + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.asn1_find_named_data + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.asn1_write_tagged_int + 0x0000000000000000 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_raw_buffer + 0x0000000000000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_null + 0x0000000000000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_oid + 0x0000000000000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_algorithm_identifier + 0x0000000000000000 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_bool + 0x0000000000000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_int + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_enum + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_tagged_string + 0x0000000000000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_utf8_string + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_printable_string + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_ia5_string + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_bitstring + 0x0000000000000000 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_named_bitstring + 0x0000000000000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_octet_string + 0x0000000000000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_store_named_data + 0x0000000000000000 0xdc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_ecdsa_sign + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_sign_det_ext + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_verify + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_genkey + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_sign + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_sign_det_ext + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_verify + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_genkey + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.hmac_drbg_self_test_entropy + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_seed + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_write_seed_file + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_update_seed_file + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_self_test + 0x0000000000000000 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.hmac_drbg_self_test_entropy + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_seed + 0x0000000000000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_set_prediction_resistance + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_set_entropy_len + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_set_reseed_interval + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.mbedtls_hmac_drbg_write_seed_file.str1.4 + 0x0000000000000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_write_seed_file + 0x0000000000000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.mbedtls_hmac_drbg_update_seed_file.str1.4 + 0x0000000000000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_update_seed_file + 0x0000000000000000 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.mbedtls_hmac_drbg_self_test.str1.4 + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_self_test + 0x0000000000000000 0x1be esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .bss.test_offset + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.result_nopr + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.entropy_nopr + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.result_pr + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.entropy_pr + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.pk_restart_setup + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.pk_hashlen_helper + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_setup_rsa_alt + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_verify_restartable + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_verify + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_sign_restartable + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_sign + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_decrypt + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_encrypt + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_check_pair + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_debug + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_get_name + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_verify_ext + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_sign_ext + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.pk_restart_setup + 0x0000000000000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.pk_hashlen_helper + 0x0000000000000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_restart_init + 0x0000000000000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_restart_free + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_setup_rsa_alt + 0x0000000000000000 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_can_do + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_verify_restartable + 0x0000000000000000 0xa5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_verify + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_sign_restartable + 0x0000000000000000 0xc4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_sign + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_decrypt + 0x0000000000000000 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_encrypt + 0x0000000000000000 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_check_pair + 0x0000000000000000 0x5d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_get_bitlen + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_debug + 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .rodata.mbedtls_pk_get_name.str1.4 + 0x0000000000000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_get_name + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_verify_ext + 0x0000000000000000 0xd7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_sign_ext + 0x0000000000000000 0xc9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.psa_extend_key_usage_flags + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_alt_sign_wrap + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_alt_decrypt_wrap + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.psa_set_key_type + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_alt_free_wrap + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_alt_alloc_wrap + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_alt_check_pair + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.mbedtls_pk_psa_rsa_sign_ext + 0x0000000000000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.psa_extend_key_usage_flags + 0x0000000000000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_can_do + 0x0000000000000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_get_bitlen + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_sign_wrap + 0x0000000000000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_decrypt_wrap + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.psa_set_key_type + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_free_wrap + 0x0000000000000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_alloc_wrap + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_check_pair + 0x0000000000000000 0x81 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.mbedtls_pk_psa_rsa_sign_ext + 0x0000000000000000 0x136 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .rodata.mbedtls_rsa_alt_info + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.pk_get_ecparams + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.asn1_get_nonzero_mpi + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.pk_parse_key_pkcs1_der + 0x0000000000000000 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.pk_parse_key_sec1_der + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.pk_parse_key_pkcs8_unencrypted_der + 0x0000000000000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.pk_parse_key_pkcs8_encrypted_der + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_load_file + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_parse_key + 0x0000000000000000 0xec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_parse_keyfile + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_parse_public_keyfile + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_get_ecparams + 0x0000000000000000 0x5d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.asn1_get_nonzero_mpi + 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_parse_key_pkcs1_der + 0x0000000000000000 0x1b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_parse_key_sec1_der + 0x0000000000000000 0x1ab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_parse_key_pkcs8_unencrypted_der + 0x0000000000000000 0x15a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.pk_parse_key_pkcs8_encrypted_der.str1.4 + 0x0000000000000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_parse_key_pkcs8_encrypted_der + 0x0000000000000000 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.mbedtls_pk_load_file.str1.4 + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_load_file + 0x0000000000000000 0xdc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.mbedtls_pk_parse_key.str1.4 + 0x0000000000000000 0x102 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_parse_key + 0x0000000000000000 0x366 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_parse_keyfile + 0x0000000000000000 0x67 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_parse_public_keyfile + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.pk_write_rsa_pubkey + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.pk_write_ec_pubkey + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.pk_write_ec_param + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.pk_write_ec_private + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_pubkey + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_pubkey_der + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_key_der + 0x0000000000000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_pubkey_pem + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_key_pem + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_write_rsa_pubkey + 0x0000000000000000 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_write_ec_pubkey + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_write_ec_param + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_write_ec_private + 0x0000000000000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_pubkey + 0x0000000000000000 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_pubkey_der + 0x0000000000000000 0xf4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_key_der + 0x0000000000000000 0x31a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .rodata.mbedtls_pk_write_pubkey_pem.str1.4 + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_pubkey_pem + 0x0000000000000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .rodata.mbedtls_pk_write_key_pem.str1.4 + 0x0000000000000000 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_key_pem + 0x0000000000000000 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_frame 0x0000000000000000 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_info 0x0000000000000000 0x1702 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_abbrev 0x0000000000000000 0x398 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_loc 0x0000000000000000 0xc3b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_aranges + 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_ranges 0x0000000000000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_line 0x0000000000000000 0x1585 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_str 0x0000000000000000 0x811 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.psa_extend_key_usage_flags + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.key_type_is_raw_bytes + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_key_can_do + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_policy_algorithm_intersection + 0x0000000000000000 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_algorithm_permits + 0x0000000000000000 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_policy_permits + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_restrict_key_policy + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_validate_key_policy + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_finalize_alg_and_key_validation + 0x0000000000000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_verify_check_alg + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_get_base_algorithm + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_check_nonce_length + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_check_algorithm + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_validate_tag_length + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_get_kdf_alg + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.is_kdf_alg_supported + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_agreement_try_support + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_allows_free_form_secret_input + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_check_input_type + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_set_seed + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_set_key + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_set_label + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_input + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_psk_to_ms_set_other_key + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_ecjpake_to_pms_input + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_export_key_buffer_internal + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_wipe_tag_output_buffer + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_psk_to_ms_set_key + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_psk_to_ms_input + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_get_and_lock_key_slot_with_policy + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_get_and_lock_transparent_key_slot_with_policy + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_validate_key_attributes + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_start_key_creation + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_finish_key_creation + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_compute_internal + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_internal + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_internal + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_abort_internal + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash_abort_internal + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_set_key_type + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_start_hmac + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_agreement_raw_internal + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_random_free + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_random_init + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_pake_complete_inputs + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_can_do_hash + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_to_psa_error + 0x0000000000000000 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_get_rsa_public_exponent + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_validate_optional_attributes + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_random_seed + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_validate_unstructured_key_bit_size + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_validate_key_type_and_size_for_key_generation + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_allocate_buffer_to_slot + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_copy_key_material_into_slot + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_import_key_into_slot + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_remove_key_data_from_memory + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_wipe_key_slot + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_fail_key_creation + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_destroy_key + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_get_key_attributes + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_export_key_internal + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_export_key + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_export_public_key_internal + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_export_public_key + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_import_key + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_copy_key + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_abort + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_setup + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_try_support + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_setup_kdf + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_update + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_finish + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_verify + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_compute + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_tls12_ecjpake_to_pms_read + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_compare + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_clone + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_abort + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_setup + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_sign_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_verify_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_update + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_sign_finish + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_tls12_prf_generate_next_block + 0x0000000000000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_tls12_prf_read + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_verify_finish + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_compute + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_verify + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_message_builtin + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_message + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_message_builtin + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_message + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_builtin + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash_builtin + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_asymmetric_encrypt + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_asymmetric_decrypt + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_interruptible_set_max_ops + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_interruptible_get_max_ops + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_start + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_complete + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_abort + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash_start + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash_complete + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash_abort + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_interruptible_set_max_ops + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_sign_hash_start + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_sign_hash_complete + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_sign_hash_abort + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_verify_hash_start + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_verify_hash_complete + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_verify_hash_abort + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_abort + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_setup + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_encrypt_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_decrypt_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_set_iv + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_update + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_finish + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_decrypt + 0x0000000000000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_encrypt + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_decrypt + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_abort + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_setup + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_encrypt_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_decrypt_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_set_nonce + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_set_lengths + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_update_ad + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_update + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_finish + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_verify + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_abort + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_input_internal + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_agreement_internal + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_output_bytes + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_derived_ecc_key_weierstrass_helper + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_derived_ecc_key_montgomery_helper + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_derived_key_internal + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_output_key + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_setup + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_input_bytes + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_input_key + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_agreement_raw_builtin + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_key_agreement + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_random + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_generate_iv + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_encrypt + 0x0000000000000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_generate_nonce + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_raw_key_agreement + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_key_internal + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_key + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_crypto_configure_entropy_sources + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_crypto_free + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_init + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_driver_pake_get_password + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_driver_pake_get_user + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_driver_pake_get_peer + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_pake_abort + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_pake_setup + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_pake_set_password_key + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_pake_set_user + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_pake_set_peer + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_pake_set_role + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_pake_output + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_pake_input + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_pake_get_implicit_key + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_extend_key_usage_flags + 0x0000000000000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.key_type_is_raw_bytes + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_key_can_do + 0x0000000000000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_policy_algorithm_intersection + 0x0000000000000000 0x402 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_algorithm_permits + 0x0000000000000000 0x36a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_policy_permits + 0x0000000000000000 0x106 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_restrict_key_policy + 0x0000000000000000 0x59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_key_policy + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_finalize_alg_and_key_validation + 0x0000000000000000 0x274 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_verify_check_alg + 0x0000000000000000 0x116 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_get_base_algorithm + 0x0000000000000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_check_nonce_length + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_check_algorithm + 0x0000000000000000 0xc5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_tag_length + 0x0000000000000000 0x71 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_final_checks + 0x0000000000000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_get_kdf_alg + 0x0000000000000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.is_kdf_alg_supported + 0x0000000000000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_agreement_try_support + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_allows_free_form_secret_input + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_check_input_type + 0x0000000000000000 0x82 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_set_seed + 0x0000000000000000 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_set_key + 0x0000000000000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_set_label + 0x0000000000000000 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_input + 0x0000000000000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_psk_to_ms_set_other_key + 0x0000000000000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_ecjpake_to_pms_input + 0x0000000000000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_export_key_buffer_internal + 0x0000000000000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_wipe_tag_output_buffer + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_psk_to_ms_set_key + 0x0000000000000000 0xcd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_psk_to_ms_input + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_get_and_lock_key_slot_with_policy + 0x0000000000000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_get_and_lock_transparent_key_slot_with_policy + 0x0000000000000000 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_key_attributes + 0x0000000000000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_start_key_creation + 0x0000000000000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_finish_key_creation + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_compute_internal + 0x0000000000000000 0xbb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_internal + 0x0000000000000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_internal + 0x0000000000000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_abort_internal + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_abort_internal + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_set_key_type + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_start_hmac + 0x0000000000000000 0x136 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_agreement_raw_internal + 0x0000000000000000 0x65 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_random_free + 0x0000000000000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_random_init + 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_pake_complete_inputs + 0x0000000000000000 0xe3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_can_do_hash + 0x0000000000000000 0xd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_to_psa_error + 0x0000000000000000 0x632 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_get_rsa_public_exponent + 0x0000000000000000 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_optional_attributes + 0x0000000000000000 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_random_seed + 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_ecc_group_of_psa + 0x0000000000000000 0xdd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_unstructured_key_bit_size + 0x0000000000000000 0xd1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_key_type_and_size_for_key_generation + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_allocate_buffer_to_slot + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_copy_key_material_into_slot + 0x0000000000000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_import_key_into_slot + 0x0000000000000000 0xaa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_remove_key_data_from_memory + 0x0000000000000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_wipe_key_slot + 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_fail_key_creation + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_destroy_key + 0x0000000000000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_get_key_attributes + 0x0000000000000000 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_export_key_internal + 0x0000000000000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_export_key + 0x0000000000000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_export_public_key_internal + 0x0000000000000000 0x7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_export_public_key + 0x0000000000000000 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_import_key + 0x0000000000000000 0xee esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_copy_key + 0x0000000000000000 0x10c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_abort + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_setup + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_try_support + 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_setup_kdf + 0x0000000000000000 0x14d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_update + 0x0000000000000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_finish + 0x0000000000000000 0x2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_verify + 0x0000000000000000 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_compute + 0x0000000000000000 0x2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_tls12_ecjpake_to_pms_read + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_compare + 0x0000000000000000 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_clone + 0x0000000000000000 0x2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_abort + 0x0000000000000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_setup + 0x0000000000000000 0xbe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_sign_setup + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_verify_setup + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_update + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_sign_finish + 0x0000000000000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_tls12_prf_generate_next_block + 0x0000000000000000 0x1d6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_tls12_prf_read + 0x0000000000000000 0x11d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_verify_finish + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_compute + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_verify + 0x0000000000000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_message_builtin + 0x0000000000000000 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_message + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_message_builtin + 0x0000000000000000 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_message + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_builtin + 0x0000000000000000 0xa9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_builtin + 0x0000000000000000 0xa5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_asymmetric_encrypt + 0x0000000000000000 0xb6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_asymmetric_decrypt + 0x0000000000000000 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_interruptible_set_max_ops + 0x0000000000000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_interruptible_get_max_ops + 0x0000000000000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_get_num_ops + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_get_num_ops + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_start + 0x0000000000000000 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_complete + 0x0000000000000000 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_abort + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_start + 0x0000000000000000 0xdc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_complete + 0x0000000000000000 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_abort + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_interruptible_set_max_ops + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_sign_hash_get_num_ops + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_verify_hash_get_num_ops + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_sign_hash_start + 0x0000000000000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_sign_hash_complete + 0x0000000000000000 0xf2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_sign_hash_abort + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_verify_hash_start + 0x0000000000000000 0xed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_verify_hash_complete + 0x0000000000000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_verify_hash_abort + 0x0000000000000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_abort + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_setup + 0x0000000000000000 0x18a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_encrypt_setup + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_decrypt_setup + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_set_iv + 0x0000000000000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_update + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_finish + 0x0000000000000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_decrypt + 0x0000000000000000 0x164 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_encrypt + 0x0000000000000000 0xc3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_decrypt + 0x0000000000000000 0xc3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_abort + 0x0000000000000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_setup + 0x0000000000000000 0xef esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_encrypt_setup + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_decrypt_setup + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_set_nonce + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_set_lengths + 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_update_ad + 0x0000000000000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_update + 0x0000000000000000 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_finish + 0x0000000000000000 0x65 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_verify + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_abort + 0x0000000000000000 0xba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_input_internal + 0x0000000000000000 0x86 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_agreement_internal + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_get_capacity + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_set_capacity + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_output_bytes + 0x0000000000000000 0xa9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_derived_ecc_key_weierstrass_helper + 0x0000000000000000 0x13f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_derived_ecc_key_montgomery_helper + 0x0000000000000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_derived_key_internal + 0x0000000000000000 0x139 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_output_key + 0x0000000000000000 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_setup + 0x0000000000000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_input_bytes + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_input_key + 0x0000000000000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_agreement_raw_builtin + 0x0000000000000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_key_agreement + 0x0000000000000000 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_random + 0x0000000000000000 0x43 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_generate_iv + 0x0000000000000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_encrypt + 0x0000000000000000 0x1a1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_generate_nonce + 0x0000000000000000 0xc9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_raw_key_agreement + 0x0000000000000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_key_internal + 0x0000000000000000 0x71 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_key + 0x0000000000000000 0x17a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_crypto_configure_entropy_sources + 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_crypto_free + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_init + 0x0000000000000000 0x89 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_driver_pake_get_password_len + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_driver_pake_get_password + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_driver_pake_get_role + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_driver_pake_get_user_len + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_driver_pake_get_user + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_driver_pake_get_peer_len + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_driver_pake_get_peer + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_driver_pake_get_cipher_suite + 0x0000000000000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_pake_abort + 0x0000000000000000 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_pake_setup + 0x0000000000000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_pake_set_password_key + 0x0000000000000000 0xbe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_pake_set_user + 0x0000000000000000 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_pake_set_peer + 0x0000000000000000 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_pake_set_role + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_pake_output + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_pake_input + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_pake_get_implicit_key + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .data.psa_interruptible_max_ops + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .rodata.mbedtls_psa_random_state + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .bss.global_data + 0x0000000000000000 0x2d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .rodata.jpake_client_id + 0x0000000000000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .rodata.jpake_server_id + 0x0000000000000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_frame 0x0000000000000000 0x1108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_info 0x0000000000000000 0xc55c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_abbrev 0x0000000000000000 0x63a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_loc 0x0000000000000000 0x731b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_aranges + 0x0000000000000000 0x5c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_ranges 0x0000000000000000 0x610 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_line 0x0000000000000000 0xbaf7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_str 0x0000000000000000 0x4b1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_reset_key_attributes + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .literal.psa_set_key_domain_parameters + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .literal.psa_get_key_domain_parameters + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .text.psa_reset_key_attributes + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .text.psa_set_key_domain_parameters + 0x0000000000000000 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .text.psa_get_key_domain_parameters + 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_frame 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_info 0x0000000000000000 0x470 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_abbrev 0x0000000000000000 0x18c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_loc 0x0000000000000000 0x121 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_aranges + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_ranges 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_line 0x0000000000000000 0x55e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_str 0x0000000000000000 0x479 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .literal.psa_driver_wrapper_sign_message + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_verify_message + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_sign_hash + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_verify_hash + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_sign_hash_get_num_ops + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_verify_hash_get_num_ops + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_sign_hash_start + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_sign_hash_complete + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_sign_hash_abort + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_verify_hash_start + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_verify_hash_complete + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_verify_hash_abort + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_generate_key + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_import_key + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_export_key + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_export_public_key + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_cipher_encrypt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_cipher_decrypt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_cipher_encrypt_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_cipher_decrypt_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_cipher_set_iv + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_cipher_update + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_cipher_finish + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_cipher_abort + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_hash_compute + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_hash_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_hash_clone + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_hash_update + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_hash_finish + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_hash_abort + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_aead_encrypt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_aead_decrypt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_aead_encrypt_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_aead_decrypt_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_aead_set_nonce + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_aead_set_lengths + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_aead_update_ad + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_aead_update + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_aead_finish + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_aead_verify + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_aead_abort + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_mac_compute + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_mac_sign_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_mac_verify_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_mac_update + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_mac_sign_finish + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_mac_verify_finish + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_mac_abort + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_asymmetric_encrypt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_asymmetric_decrypt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_key_agreement + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_init + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_free + 0x0000000000000000 0x5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_sign_message + 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_verify_message + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_sign_hash + 0x0000000000000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_verify_hash + 0x0000000000000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_sign_hash_get_num_ops + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_verify_hash_get_num_ops + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_sign_hash_start + 0x0000000000000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_sign_hash_complete + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_sign_hash_abort + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_verify_hash_start + 0x0000000000000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_verify_hash_complete + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_verify_hash_abort + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_get_key_buffer_size_from_key_data + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_get_key_buffer_size + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_generate_key + 0x0000000000000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_import_key + 0x0000000000000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_export_key + 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_export_public_key + 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_get_builtin_key + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_copy_key + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_cipher_encrypt + 0x0000000000000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_cipher_decrypt + 0x0000000000000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_cipher_encrypt_setup + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_cipher_decrypt_setup + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_cipher_set_iv + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_cipher_update + 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_cipher_finish + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_cipher_abort + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_hash_compute + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_hash_setup + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_hash_clone + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_hash_update + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_hash_finish + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_hash_abort + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_aead_encrypt + 0x0000000000000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_aead_decrypt + 0x0000000000000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_aead_encrypt_setup + 0x0000000000000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_aead_decrypt_setup + 0x0000000000000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_aead_set_nonce + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_aead_set_lengths + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_aead_update_ad + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_aead_update + 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_aead_finish + 0x0000000000000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_aead_verify + 0x0000000000000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_aead_abort + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_mac_compute + 0x0000000000000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_mac_sign_setup + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_mac_verify_setup + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_mac_update + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_mac_sign_finish + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_mac_verify_finish + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_mac_abort + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_asymmetric_encrypt + 0x0000000000000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_asymmetric_decrypt + 0x0000000000000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_key_agreement + 0x0000000000000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_pake_setup + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_pake_output + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_pake_input + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_pake_get_implicit_key + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_pake_abort + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .debug_frame 0x0000000000000000 0x5e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .debug_info 0x0000000000000000 0x4b16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .debug_abbrev 0x0000000000000000 0x498 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .debug_loc 0x0000000000000000 0x16e6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .debug_aranges + 0x0000000000000000 0x208 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .debug_ranges 0x0000000000000000 0x1f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .debug_line 0x0000000000000000 0x2044 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .debug_str 0x0000000000000000 0x2ee6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.mbedtls_psa_ecp_load_representation + 0x0000000000000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_export_key + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_import_key + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_export_public_key + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_generate_key + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecdsa_sign_hash + 0x0000000000000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_load_public_part + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecdsa_verify_hash + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_key_agreement_ecdh + 0x0000000000000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_ecc_group_to_psa + 0x0000000000000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_load_representation + 0x0000000000000000 0x139 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_export_key + 0x0000000000000000 0xba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_import_key + 0x0000000000000000 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_export_public_key + 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_generate_key + 0x0000000000000000 0xaa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecdsa_sign_hash + 0x0000000000000000 0x159 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_load_public_part + 0x0000000000000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecdsa_verify_hash + 0x0000000000000000 0xcb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_key_agreement_ecdh + 0x0000000000000000 0x132 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_frame 0x0000000000000000 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_info 0x0000000000000000 0x1b58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_abbrev 0x0000000000000000 0x3c1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_loc 0x0000000000000000 0xb62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_aranges + 0x0000000000000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_ranges 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_line 0x0000000000000000 0x1518 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_str 0x0000000000000000 0xdca esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_hash_abort + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_setup + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_clone + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_update + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_finish + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_compute + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_abort + 0x0000000000000000 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_setup + 0x0000000000000000 0x109 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_clone + 0x0000000000000000 0xa5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_update + 0x0000000000000000 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_finish + 0x0000000000000000 0x17a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_compute + 0x0000000000000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_frame 0x0000000000000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_info 0x0000000000000000 0xdb1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_abbrev 0x0000000000000000 0x281 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_loc 0x0000000000000000 0x57c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_aranges + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_ranges 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_line 0x0000000000000000 0xb81 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_str 0x0000000000000000 0x76d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.psa_hmac_abort_internal + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mac_init + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.cmac_setup + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.psa_hmac_setup_internal + 0x0000000000000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.psa_hmac_update_internal + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.psa_hmac_finish_internal + 0x0000000000000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.psa_mac_finish_internal + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_abort + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.psa_mac_setup + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_sign_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_verify_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_update + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_sign_finish + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_verify_finish + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_compute + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_hmac_abort_internal + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mac_init + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.cmac_setup + 0x0000000000000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_hmac_setup_internal + 0x0000000000000000 0x25d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_hmac_update_internal + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_hmac_finish_internal + 0x0000000000000000 0x14a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_mac_finish_internal + 0x0000000000000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_abort + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_mac_setup + 0x0000000000000000 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_sign_setup + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_verify_setup + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_update + 0x0000000000000000 0x55 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_sign_finish + 0x0000000000000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_verify_finish + 0x0000000000000000 0x59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_compute + 0x0000000000000000 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_frame 0x0000000000000000 0x178 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_info 0x0000000000000000 0x1b22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_abbrev 0x0000000000000000 0x49b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_loc 0x0000000000000000 0xa2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_aranges + 0x0000000000000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_ranges 0x0000000000000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_line 0x0000000000000000 0x137d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_str 0x0000000000000000 0x16f9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.psa_rsa_read_exponent + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.rsa_pss_expected_salt_len + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.psa_check_rsa_key_byte_aligned + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.psa_rsa_oaep_set_padding_mode + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.psa_rsa_decode_md_type + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_load_representation + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_export_key + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_import_key + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_export_public_key + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_generate_key + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_sign_hash + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_verify_hash + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_asymmetric_encrypt + 0x0000000000000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_asymmetric_decrypt + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.psa_rsa_read_exponent + 0x0000000000000000 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.rsa_pss_expected_salt_len + 0x0000000000000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.psa_check_rsa_key_byte_aligned + 0x0000000000000000 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.psa_rsa_oaep_set_padding_mode + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.psa_rsa_decode_md_type + 0x0000000000000000 0x85 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_load_representation + 0x0000000000000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_export_key + 0x0000000000000000 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_import_key + 0x0000000000000000 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_export_public_key + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_generate_key + 0x0000000000000000 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_sign_hash + 0x0000000000000000 0x102 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_verify_hash + 0x0000000000000000 0xf6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_asymmetric_encrypt + 0x0000000000000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_asymmetric_decrypt + 0x0000000000000000 0xe9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_frame 0x0000000000000000 0x160 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_info 0x0000000000000000 0x1f30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_abbrev 0x0000000000000000 0x3ff esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_loc 0x0000000000000000 0xaa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_aranges + 0x0000000000000000 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_ranges 0x0000000000000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_line 0x0000000000000000 0x1584 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_str 0x0000000000000000 0xd35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.psa_extend_key_usage_flags + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_load_persistent_key_into_slot + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_is_valid_key_id + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_get_and_lock_key_slot_in_memory + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_initialize_key_slots + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_wipe_all_key_slots + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_get_empty_key_slot + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_get_and_lock_key_slot + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_open_key + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_close_key + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_purge_key + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.mbedtls_psa_get_stats + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_extend_key_usage_flags + 0x0000000000000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_load_persistent_key_into_slot + 0x0000000000000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_is_valid_key_id + 0x0000000000000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_get_and_lock_key_slot_in_memory + 0x0000000000000000 0x73 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_initialize_key_slots + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_wipe_all_key_slots + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_get_empty_key_slot + 0x0000000000000000 0x9d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_get_and_lock_key_slot + 0x0000000000000000 0x73 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_unlock_key_slot + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_validate_key_location + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_validate_key_persistence + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_open_key + 0x0000000000000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_close_key + 0x0000000000000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_purge_key + 0x0000000000000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.mbedtls_psa_get_stats + 0x0000000000000000 0xa1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .bss.global_data + 0x0000000000000000 0x504 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_frame 0x0000000000000000 0x178 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_info 0x0000000000000000 0xd68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_abbrev 0x0000000000000000 0x425 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_loc 0x0000000000000000 0x84a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_aranges + 0x0000000000000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_ranges 0x0000000000000000 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_line 0x0000000000000000 0x11ef esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_str 0x0000000000000000 0x83d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_crypto_storage_get_data_length + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.check_magic_header + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_crypto_storage_load + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_is_key_present_in_storage + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_crypto_storage_store + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_destroy_persistent_key + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_format_key_data_for_storage + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_parse_key_data_from_storage + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_save_persistent_key + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_free_persistent_key_data + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_load_persistent_key + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_its_identifier_of_slot + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_crypto_storage_get_data_length + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .rodata 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.check_magic_header + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_crypto_storage_load + 0x0000000000000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_is_key_present_in_storage + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_crypto_storage_store + 0x0000000000000000 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_destroy_persistent_key + 0x0000000000000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_format_key_data_for_storage + 0x0000000000000000 0xec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_parse_key_data_from_storage + 0x0000000000000000 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_save_persistent_key + 0x0000000000000000 0x71 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_free_persistent_key_data + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_load_persistent_key + 0x0000000000000000 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_frame 0x0000000000000000 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_info 0x0000000000000000 0x1095 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_abbrev 0x0000000000000000 0x38a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_loc 0x0000000000000000 0x8ab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_aranges + 0x0000000000000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_ranges 0x0000000000000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_line 0x0000000000000000 0x1024 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_str 0x0000000000000000 0x6d6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_its_fill_filename + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_read_file + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_get_info + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_get + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_set + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_remove + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .rodata.psa_its_fill_filename.str1.4 + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_fill_filename + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .rodata.psa_its_read_file.str1.4 + 0x0000000000000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .rodata 0x0000000000000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_read_file + 0x0000000000000000 0xa9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_get_info + 0x0000000000000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_get + 0x0000000000000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .rodata.psa_its_set.str1.4 + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_set + 0x0000000000000000 0xf9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_remove + 0x0000000000000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_frame 0x0000000000000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_info 0x0000000000000000 0x1188 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_abbrev 0x0000000000000000 0x341 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_loc 0x0000000000000000 0x565 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_aranges + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_ranges 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_line 0x0000000000000000 0xa6b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_str 0x0000000000000000 0x7cc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_pk_status_to_mbedtls + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.psa_generic_status_to_mbedtls + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.psa_status_to_mbedtls + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.psa_pk_status_to_mbedtls + 0x0000000000000000 0x91 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .rodata.psa_to_pk_rsa_errors + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .rodata.psa_to_lms_errors + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_frame 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_info 0x0000000000000000 0x2b2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_abbrev 0x0000000000000000 0x172 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_loc 0x0000000000000000 0x228 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_aranges + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_ranges 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_line 0x0000000000000000 0x4ae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_str 0x0000000000000000 0x32f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .literal.myrand + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_import + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_export_raw + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_export + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_export_crt + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_set_padding + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_rsassa_pss_sign_ext + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_gen_key + 0x0000000000000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_copy + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_self_test + 0x0000000000000000 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.myrand 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_import + 0x0000000000000000 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_export_raw + 0x0000000000000000 0xdc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_export + 0x0000000000000000 0xcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_export_crt + 0x0000000000000000 0x8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_set_padding + 0x0000000000000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_get_padding_mode + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_get_md_alg + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_rsassa_pss_sign_ext + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_gen_key + 0x0000000000000000 0x24c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_copy + 0x0000000000000000 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .rodata.mbedtls_rsa_self_test.str1.4 + 0x0000000000000000 0x3b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_self_test + 0x0000000000000000 0x2e5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .literal.mbedtls_hash_info_get_block_size + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .literal.mbedtls_hash_info_psa_from_md + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .literal.mbedtls_hash_info_md_from_psa + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .text.mbedtls_hash_info_get_block_size + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .text.mbedtls_hash_info_psa_from_md + 0x0000000000000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .text.mbedtls_hash_info_md_from_psa + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .literal.mbedtls_pem_write_buffer + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .text.mbedtls_pem_write_buffer + 0x0000000000000000 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .literal.pkcs12_parse_pbe_params + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.pkcs12_fill_buffer + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.calculate_hashes + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.mbedtls_pkcs12_derivation + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.pkcs12_pbe_derive_key_iv + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.mbedtls_pkcs12_pbe + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text.pkcs12_parse_pbe_params + 0x0000000000000000 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text.pkcs12_fill_buffer + 0x0000000000000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text.calculate_hashes + 0x0000000000000000 0xb6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text.mbedtls_pkcs12_derivation + 0x0000000000000000 0x245 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text.pkcs12_pbe_derive_key_iv + 0x0000000000000000 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text.mbedtls_pkcs12_pbe + 0x0000000000000000 0x112 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_frame 0x0000000000000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_info 0x0000000000000000 0x1634 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_abbrev 0x0000000000000000 0x3cf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_loc 0x0000000000000000 0xa02 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_aranges + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_ranges 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_line 0x0000000000000000 0xed5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_str 0x0000000000000000 0x12eb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.psa_aead_setup + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_encrypt_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_decrypt_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_set_nonce + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_set_lengths + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_update_ad + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_update + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_finish + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_abort + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_encrypt + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_decrypt + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.psa_aead_unpadded_locate_tag + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.psa_aead_setup + 0x0000000000000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_encrypt_setup + 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_decrypt_setup + 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_set_nonce + 0x0000000000000000 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_set_lengths + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_update_ad + 0x0000000000000000 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_update + 0x0000000000000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_finish + 0x0000000000000000 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_abort + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_encrypt + 0x0000000000000000 0xd5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_decrypt + 0x0000000000000000 0xfe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_frame 0x0000000000000000 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_info 0x0000000000000000 0x1a1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_abbrev 0x0000000000000000 0x410 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_loc 0x0000000000000000 0x98c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_aranges + 0x0000000000000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_ranges 0x0000000000000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_line 0x0000000000000000 0xea0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_str 0x0000000000000000 0x16c6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.psa_cipher_update_ecb + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_cipher_info_from_psa + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.psa_cipher_setup + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_encrypt_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_decrypt_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_set_iv + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_update + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_finish + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_abort + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_encrypt + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_decrypt + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.psa_cipher_update_ecb + 0x0000000000000000 0xcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_cipher_info_from_psa + 0x0000000000000000 0xfd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.psa_cipher_setup + 0x0000000000000000 0x16e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_encrypt_setup + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_decrypt_setup + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_set_iv + 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_update + 0x0000000000000000 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_finish + 0x0000000000000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_abort + 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_encrypt + 0x0000000000000000 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_decrypt + 0x0000000000000000 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_frame 0x0000000000000000 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_info 0x0000000000000000 0x16a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_abbrev 0x0000000000000000 0x3ce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_loc 0x0000000000000000 0x8ae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_aranges + 0x0000000000000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_ranges 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_line 0x0000000000000000 0x10b8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_str 0x0000000000000000 0x1586 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_base64_encode + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .literal.mbedtls_base64_self_test + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .text.mbedtls_base64_encode + 0x0000000000000000 0x146 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .rodata.mbedtls_base64_self_test.str1.4 + 0x0000000000000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .text.mbedtls_base64_self_test + 0x0000000000000000 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .rodata.base64_test_enc + 0x0000000000000000 0x59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .rodata.base64_test_dec + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .literal.misc_nvs_load + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .literal.misc_nvs_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .literal.misc_nvs_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .literal.misc_nvs_restore + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .text.misc_nvs_restore + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .data.libcore_reversion_git + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .literal.is_zero_addr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_vnd_ext_assoc_len + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_ps_duty_ext_get_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_ssid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_roots_announce + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_roots_yield + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_roots_fixed + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_roots_gone + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_ps + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_ext_assoc_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_sync_interface_tsf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_ext_assoc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._wifi_vnd_ext_mesh_roots_free$part$14 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_fixed$part$15 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_conflict_root_state$part$31 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_my_ie_encrypted + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_vnd_ssid_len + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_coding_ie_key + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_encrypt_vnd_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_assoc_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_decrypt_vnd_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_check_vnd_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_set_ie_crypto_config + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_mesh_quick_set + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_mesh_quick_get + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_sta_monitor_rssi + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_map_reject_connection + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_map_change_beacon_interval + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_vnd_mesh_quick_set + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_vnd_mesh_quick_get + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_ie_esp_mesh_head + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_ssid_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_ext_assoc_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_ps_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_duty_signaling + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_init_mesh_assoc_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.roots_type2str + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._wifi_vnd_ext_mesh_roots_free + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._wifi_vnd_ext_mesh_roots_malloc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._print_roots_count + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_num_reach_max + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_reset_window_open_time + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_announce + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_fixed + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_vnd_mesh_roots_get + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_valid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_announce + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_yield + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_announce_used + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_yield_used + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_fixed + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_gone + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_get_vnd_roots_len + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_roots_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_map_stop_beacon + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_check_window_close_expire + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_check_window_open_expire + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_fixed + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_gone + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.print_roots_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_duty_signaling + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_ps_set_new_duty + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_post_event + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_master_is_root + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_parse_ps_entire_rule + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_parse_ps_uplink_rule + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_check_duration_expire + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_set_master_identity + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_clr_master_identity + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_clr_remaining + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_set_remaining + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_check_allowed + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_ps_duty_cycle_set_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_ps_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_recv_mesh_duty_signaling + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_process_remaining + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_root_process_duty_duration_expire + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_ps_duty_cycle_get_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_is_new_root_found + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_is_new_root_invalid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_is_ie_ignored + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_is_same_router + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_conflict_root_state + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_check_roots_gone + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_announce + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_conflict_root + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_remove_conflict_root + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_yield + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_conflict_table + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_find_conflict_root + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_update_conflict_root + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_add_conflict_root + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_is_new_found_conflict_root + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_vnd_mesh_roots_set + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_remove_gone + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_gone + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_stop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_process_roots_ie_ttl + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_yield + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_root_process_roots_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_process_roots_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_parse_conflict_roots_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_conflict_roots_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_check_conflict_beacon + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_conflict_assoc_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_set_parent_candidate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_clear_parent_candidate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_get_parent_candidate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_post_parent_switch_candidate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_post_parent_weak_rssi + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_post_parent_assoc_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_monitor_parent_candidate_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_set_parent_monitor_config + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_get_parent_monitor_config + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_get_sub_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_set_flag_roots_found + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_vnd_roots_len + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_monitor_parent_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_map_probe_response + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_monitor_vote_candidate_rssi + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_beacon + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_set_rssi_threshold + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_get_rssi_threshold + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_quick_funcs_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_init_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_quick_funcs_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_deinit_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_zero_addr + 0x0000000000000000 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_vnd_ext_assoc_len + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_ps_duty_ext_get_process + 0x0000000000000000 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_ssid + 0x0000000000000000 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_roots_announce + 0x0000000000000000 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_roots_yield + 0x0000000000000000 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_roots_fixed + 0x0000000000000000 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_roots_gone + 0x0000000000000000 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_ps + 0x0000000000000000 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_parse_ext_assoc_ie + 0x0000000000000000 0x7c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_sync_interface_tsf + 0x0000000000000000 0x8e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_ext_assoc + 0x0000000000000000 0x6e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._wifi_vnd_ext_mesh_roots_free$part$14 + 0x0000000000000000 0x3e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_fixed$part$15 + 0x0000000000000000 0x6f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_conflict_root_state$part$31 + 0x0000000000000000 0x25b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_my_ie_encrypted + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_vnd_ssid_len + 0x0000000000000000 0x67 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_coding_ie_key + 0x0000000000000000 0x3d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_encrypt_vnd_ie + 0x0000000000000000 0x7e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_assoc_ie + 0x0000000000000000 0xa4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_decrypt_vnd_ie + 0x0000000000000000 0x7e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_check_vnd_ie + 0x0000000000000000 0x85 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_set_ie_crypto_config + 0x0000000000000000 0x6a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_mesh_quick_set + 0x0000000000000000 0x25a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.ieee80211_mesh_quick_set + 0x0000000000000000 0x64 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_mesh_quick_get + 0x0000000000000000 0x15a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.ieee80211_mesh_quick_get + 0x0000000000000000 0x64 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_sta_monitor_rssi + 0x0000000000000000 0x148 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_map_reject_connection + 0x0000000000000000 0xc9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_map_change_beacon_interval + 0x0000000000000000 0x9c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_vnd_mesh_quick_set + 0x0000000000000000 0x1d4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_vnd_mesh_quick_get + 0x0000000000000000 0x61 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.str1.1 + 0x0000000000000000 0x342 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_add_ie_esp_mesh_head + 0x0000000000000000 0x44 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_ssid_ie + 0x0000000000000000 0xfe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_ext_assoc_ie + 0x0000000000000000 0x98 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_ps_ie + 0x0000000000000000 0x8e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_duty_signaling + 0x0000000000000000 0xee /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_init_mesh_assoc_ie + 0x0000000000000000 0x56 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.roots_type2str + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._wifi_vnd_ext_mesh_roots_free + 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._wifi_vnd_ext_mesh_roots_malloc + 0x0000000000000000 0x70 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._print_roots_count + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_num_reach_max + 0x0000000000000000 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_reset_window_open_time + 0x0000000000000000 0x85 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_announce + 0x0000000000000000 0x27c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_fixed + 0x0000000000000000 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_vnd_mesh_roots_get + 0x0000000000000000 0x36 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_valid + 0x0000000000000000 0xa7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_announce + 0x0000000000000000 0xae /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_yield + 0x0000000000000000 0x37 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_announce_used + 0x0000000000000000 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_yield_used + 0x0000000000000000 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_fixed + 0x0000000000000000 0x4a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_gone + 0x0000000000000000 0x4a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_get_vnd_roots_len + 0x0000000000000000 0x87 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_roots_ie + 0x0000000000000000 0x136 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_map_stop_beacon + 0x0000000000000000 0xde /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_check_window_close_expire + 0x0000000000000000 0x19a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_check_window_open_expire + 0x0000000000000000 0x1ca /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_fixed + 0x0000000000000000 0x52 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_gone + 0x0000000000000000 0x4a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.print_roots_ie + 0x0000000000000000 0x29a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_duty_signaling + 0x0000000000000000 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_ps_set_new_duty + 0x0000000000000000 0xa2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_post_event + 0x0000000000000000 0xe0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_master_is_root + 0x0000000000000000 0x40 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_parse_ps_entire_rule + 0x0000000000000000 0x4cf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_parse_ps_uplink_rule + 0x0000000000000000 0x20b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_check_duration_expire + 0x0000000000000000 0x4b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_set_master_identity + 0x0000000000000000 0xe1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_clr_master_identity + 0x0000000000000000 0x136 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_clr_remaining + 0x0000000000000000 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_set_remaining + 0x0000000000000000 0xb0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_check_allowed + 0x0000000000000000 0x20e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_ps_duty_cycle_set_process + 0x0000000000000000 0x31e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_parse_ps_ie + 0x0000000000000000 0x28d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_recv_mesh_duty_signaling + 0x0000000000000000 0x104 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_process_remaining + 0x0000000000000000 0x33f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_root_process_duty_duration_expire + 0x0000000000000000 0xaa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_ps_duty_cycle_get_process + 0x0000000000000000 0x185 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_is_new_root_found + 0x0000000000000000 0x19a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_is_new_root_invalid + 0x0000000000000000 0x92 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_is_ie_ignored + 0x0000000000000000 0x8b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_is_same_router + 0x0000000000000000 0x4d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_conflict_root_state + 0x0000000000000000 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_check_roots_gone + 0x0000000000000000 0xfe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_announce + 0x0000000000000000 0x128 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_conflict_root + 0x0000000000000000 0x13b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_remove_conflict_root + 0x0000000000000000 0x76 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_yield + 0x0000000000000000 0x161 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_conflict_table + 0x0000000000000000 0xf5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_find_conflict_root + 0x0000000000000000 0x46 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_update_conflict_root + 0x0000000000000000 0xf4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_add_conflict_root + 0x0000000000000000 0x207 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_is_new_found_conflict_root + 0x0000000000000000 0x51 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_vnd_mesh_roots_set + 0x0000000000000000 0x53c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_remove_gone + 0x0000000000000000 0x64 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_gone + 0x0000000000000000 0x190 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_stop + 0x0000000000000000 0x120 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_process_roots_ie_ttl + 0x0000000000000000 0xb6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_yield + 0x0000000000000000 0x22f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_root_process_roots_ie + 0x0000000000000000 0x34e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_process_roots_ie + 0x0000000000000000 0x39c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_parse_conflict_roots_ie + 0x0000000000000000 0x450 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_parse_conflict_roots_ie + 0x0000000000000000 0x62 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_check_conflict_beacon + 0x0000000000000000 0xdf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_parse_conflict_assoc_ie + 0x0000000000000000 0x4c0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_set_parent_candidate + 0x0000000000000000 0xf8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_clear_parent_candidate + 0x0000000000000000 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_get_parent_candidate + 0x0000000000000000 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_post_parent_switch_candidate + 0x0000000000000000 0x35b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_post_parent_weak_rssi + 0x0000000000000000 0x1c3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_post_parent_assoc_ie + 0x0000000000000000 0xea /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_monitor_parent_candidate_ie + 0x0000000000000000 0x24f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_set_parent_monitor_config + 0x0000000000000000 0x87 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_get_parent_monitor_config + 0x0000000000000000 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_get_sub_ie + 0x0000000000000000 0x99 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_set_flag_roots_found + 0x0000000000000000 0xde /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_vnd_roots_len + 0x0000000000000000 0x2ba /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_monitor_parent_ie + 0x0000000000000000 0x48a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_map_probe_response + 0x0000000000000000 0x121 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_monitor_vote_candidate_rssi + 0x0000000000000000 0x110 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_parse_beacon + 0x0000000000000000 0x14a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_set_rssi_threshold + 0x0000000000000000 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_get_rssi_threshold + 0x0000000000000000 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_quick_funcs_init + 0x0000000000000000 0x1ad /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_init_cb + 0x0000000000000000 0xab /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_quick_funcs_deinit + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_deinit_cb + 0x0000000000000000 0x37 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.CSWTCH$377 + 0x0000000000000000 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.rx_bcn_count$11014 + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.monitor_count$10885 + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.last_parent_layer$10884 + 0x0000000000000000 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.mesh_sub_ie$10875 + 0x0000000000000000 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .data.candidate_rssi$10864 + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.monitor_time_start$10795 + 0x0000000000000000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__func__$10762 + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.post_event_time$10584 + 0x0000000000000000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.signaling_token$10403 + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__func__$10339 + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.max_ie_len$10334 + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.roots_found_time$10332 + 0x0000000000000000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.is_roots_found$10331 + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.post_event_time$10291 + 0x0000000000000000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__func__$9967 + 0x0000000000000000 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__func__$9961 + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__func__$9788 + 0x0000000000000000 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.36 + 0x0000000000000000 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.35 + 0x0000000000000000 0x77 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_info.34 + 0x0000000000000000 0x50 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_parent_worse_rssi_time + 0x0000000000000000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.33 + 0x0000000000000000 0x76 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_info.32 + 0x0000000000000000 0x99 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.31 + 0x0000000000000000 0xa0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.30 + 0x0000000000000000 0xa3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.29 + 0x0000000000000000 0xa2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.28 + 0x0000000000000000 0x89 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_info.27 + 0x0000000000000000 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_info.26 + 0x0000000000000000 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.25 + 0x0000000000000000 0x3d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.24 + 0x0000000000000000 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.23 + 0x0000000000000000 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.22 + 0x0000000000000000 0x51 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.21 + 0x0000000000000000 0x6e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_info.20 + 0x0000000000000000 0x85 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.19 + 0x0000000000000000 0x61 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.18 + 0x0000000000000000 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.17 + 0x0000000000000000 0x37 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.16 + 0x0000000000000000 0x5f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.15 + 0x0000000000000000 0x53 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.14 + 0x0000000000000000 0x43 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.13 + 0x0000000000000000 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.12 + 0x0000000000000000 0x6e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.11 + 0x0000000000000000 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.10 + 0x0000000000000000 0x3d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.9 + 0x0000000000000000 0x46 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.8 + 0x0000000000000000 0x75 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.7 + 0x0000000000000000 0x46 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.6 + 0x0000000000000000 0x76 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_error.5 + 0x0000000000000000 0x34 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.4 + 0x0000000000000000 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.3 + 0x0000000000000000 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_error.2 + 0x0000000000000000 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.esp_mesh_remain_nwk_duty + 0x0000000000000000 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_ps_device_duty_type + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_ps_parent_duty_type + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_ps_device_duty + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_ps_parent_duty + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.wifi_vnd_ext_mesh_roots + 0x0000000000000000 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_conflict_roots + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_roots_ie_life + 0x0000000000000000 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_parent_monitor_assoc_time + 0x0000000000000000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_parent_monitor_weak_time + 0x0000000000000000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_parent_candidate + 0x0000000000000000 0xb0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_rssi_threshold + 0x0000000000000000 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_monitor_parent_cfg + 0x0000000000000000 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_recv_bcn_count + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_is_probe_requested + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.iv 0x0000000000000000 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_ie_crypto_funcs + 0x0000000000000000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_ie_crypto_key + 0x0000000000000000 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .data.g_mesh_monitor_parent_beacon_count + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .data.MESH_BCAST_ADDR + 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .comment 0x0000000000000000 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_pm_tbtt_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_tbtt_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_rx_beacon_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_tx_data_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_tx_null_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.mesh_pm_set_null + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_go_to_sleep + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_go_to_wake + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_is_start_pm_now + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .text.mesh_pm_tbtt_start + 0x0000000000000000 0x5c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .text.esp_mesh_pm_tbtt_timeout_process + 0x0000000000000000 0x1f7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .text.esp_mesh_pm_rx_beacon_process + 0x0000000000000000 0x188 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .text.esp_mesh_pm_tx_data_process + 0x0000000000000000 0x31 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .text.esp_mesh_pm_tx_null_process + 0x0000000000000000 0x5d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .text.mesh_pm_set_null + 0x0000000000000000 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .text.esp_mesh_pm_go_to_sleep + 0x0000000000000000 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .text.esp_mesh_pm_go_to_wake + 0x0000000000000000 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .text.esp_mesh_is_start_pm_now + 0x0000000000000000 0x57 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .bss.rx_bcn_count$8164 + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .bss.send_null_cnt$8110 + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .rodata_wlog_info.4 + 0x0000000000000000 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .rodata_wlog_warning.3 + 0x0000000000000000 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .rodata_wlog_info.2 + 0x0000000000000000 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .bss.mesh_ps_keep_cnx + 0x0000000000000000 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .data.s_mesh_active_duty_cycle + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .bss.s_mesh_next_awake_tbtt + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .bss.s_mesh_is_awake_duty + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .data.g_mesh_dfs_compensation_ms + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .comment 0x0000000000000000 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.mesh_mutex_lock + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.mesh_mutex_unlock + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_create_mbox + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_free_mbox + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.mesh_malloc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.mesh_free + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_create_context + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_free_context + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.mesh_create_task + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.wifi_event_id2str + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.nwk_event_id2str + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.tx_msg_id2str + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.tx_state_id2str + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.discnx_reason_id2str + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.mesh_ie_type2str + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.scan_status2str + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.vote_done2str + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.vote_start2str + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.txq_opr2str + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.tx_wifi_err2str + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.io_cfg2str + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.opt_type2str + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.reconnect_type2str + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.dutytype2str + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.mesh_mutex_lock + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.mesh_mutex_unlock + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.str1.1 + 0x0000000000000000 0xdd3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.esp_mesh_create_mbox + 0x0000000000000000 0xa4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.esp_mesh_free_mbox + 0x0000000000000000 0x93 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.mesh_malloc + 0x0000000000000000 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.mesh_free + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.esp_mesh_create_context + 0x0000000000000000 0x68 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.esp_mesh_free_context + 0x0000000000000000 0x8c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.mesh_create_task + 0x0000000000000000 0x3d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.wifi_event_id2str + 0x0000000000000000 0x148 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.wifi_event_id2str + 0x0000000000000000 0xe0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.nwk_event_id2str + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.tx_msg_id2str + 0x0000000000000000 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.tx_state_id2str + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.discnx_reason_id2str + 0x0000000000000000 0x170 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.mesh_ie_type2str + 0x0000000000000000 0x46 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.scan_status2str + 0x0000000000000000 0x46 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.vote_done2str + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.vote_start2str + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.txq_opr2str + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.tx_wifi_err2str + 0x0000000000000000 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.io_cfg2str + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.opt_type2str + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.reconnect_type2str + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.dutytype2str + 0x0000000000000000 0x9b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$57 + 0x0000000000000000 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$55 + 0x0000000000000000 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$53 + 0x0000000000000000 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$51 + 0x0000000000000000 0x44 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$49 + 0x0000000000000000 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$47 + 0x0000000000000000 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$45 + 0x0000000000000000 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$40 + 0x0000000000000000 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$38 + 0x0000000000000000 0x44 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$36 + 0x0000000000000000 0xc0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .bss.strid$9434 + 0x0000000000000000 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.__func__$9390 + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.__func__$9384 + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .comment 0x0000000000000000 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_get_rx_pending + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_ie_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_wifi_event_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_wifi_event_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_stop_recv + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_parse_option + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_add_option + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_chain_header_add_ttl + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_send_process_topo + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_send_process_flag + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_send_sem_wait + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_send_sem_signal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_send_mgmt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_send + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_recv_add_option + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_recv_process_flag + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_recv + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_recv + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_encrypt_ie_plain_key + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_config + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_router + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_router + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_set_id + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_id + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_id + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_type + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_type + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_max_layer + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_ap_password + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_ap_authmode + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_ap_authmode + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_ap_connections + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_ap_connections + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_non_mesh_connections + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_config + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_non_mesh_connections + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_layer + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_parent_bssid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_is_root + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_print_rxQ_waiting + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_push_to_myself_queue + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_push_to_tcpip_queue + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_flush_tcpip_queue + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_recv_release + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_recv_toDS + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_max_layer + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_self_organized + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_self_organized + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_set_parent + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_parent + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_waive_root + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_waive_root + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_send_stop_vote + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_send_stop_vote + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_vote_percentage + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_vote_percentage + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_root_addr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_attempts + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_attempts + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_push_to_xmit_state_queue + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_stop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_total_node_num + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_switch_parent_paras + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_switch_parent_paras + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_xon_qsize + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_xon_qsize + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_is_my_group + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_insert_group_addr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_delete_group_addr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_group_id + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_delete_group_id + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_group_num + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_group_list + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_capacity_num + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_capacity_num + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_is_my_ie_encrypted + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_set_ie_crypto_funcs + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_ie_crypto_funcs + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_set_ie_crypto_key + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_ie_crypto_key + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_ie_crypto_key + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_root_healing_delay + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_root_healing_delay + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_passive_scan_time + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_passive_scan_time + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_fix_root + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_is_root_fixed + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_announce_interval + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_announce_interval + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_subnet_nodes_num + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_subnet_nodes_list + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_switch_channel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_look_for_network + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_topology + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_topology + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_is_device_active + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_enable_ps + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_disable_ps + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_is_ps_enabled + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_ps_get_duties + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.str1.1 + 0x0000000000000000 0xaa0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_rx_pending + 0x0000000000000000 0x13f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_ie_init + 0x0000000000000000 0x136 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_wifi_event_init + 0x0000000000000000 0xd4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_wifi_event_deinit + 0x0000000000000000 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_init + 0x0000000000000000 0x261 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_stop_recv + 0x0000000000000000 0x1ee /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_parse_option + 0x0000000000000000 0x118 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.mesh_parse_option + 0x0000000000000000 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_add_option + 0x0000000000000000 0x11c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_chain_header_add_ttl + 0x0000000000000000 0x5d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_send_process_topo + 0x0000000000000000 0x66 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_send_process_flag + 0x0000000000000000 0x178 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_send_sem_wait + 0x0000000000000000 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_send_sem_signal + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_send_mgmt + 0x0000000000000000 0x2ea /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_send + 0x0000000000000000 0x6b4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.esp_mesh_send + 0x0000000000000000 0x44 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_recv_add_option + 0x0000000000000000 0x170 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_recv_process_flag + 0x0000000000000000 0x105 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_recv + 0x0000000000000000 0x3e8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_recv + 0x0000000000000000 0x166 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_encrypt_ie_plain_key + 0x0000000000000000 0x118 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_config + 0x0000000000000000 0x72 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_router + 0x0000000000000000 0xb8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_router + 0x0000000000000000 0x74 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_set_id + 0x0000000000000000 0xd8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_id + 0x0000000000000000 0x152 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_id + 0x0000000000000000 0x74 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_type + 0x0000000000000000 0xb2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_type + 0x0000000000000000 0x60 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_max_layer + 0x0000000000000000 0x4e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_ap_password + 0x0000000000000000 0xcf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_ap_authmode + 0x0000000000000000 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_ap_authmode + 0x0000000000000000 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_ap_connections + 0x0000000000000000 0x75 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_ap_connections + 0x0000000000000000 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_non_mesh_connections + 0x0000000000000000 0x84 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_config + 0x0000000000000000 0x4b1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_non_mesh_connections + 0x0000000000000000 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_layer + 0x0000000000000000 0x64 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_parent_bssid + 0x0000000000000000 0xa8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_is_root + 0x0000000000000000 0x33 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_print_rxQ_waiting + 0x0000000000000000 0x204 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_push_to_myself_queue + 0x0000000000000000 0x21c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_push_to_tcpip_queue + 0x0000000000000000 0x3ca /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_flush_tcpip_queue + 0x0000000000000000 0xa9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_recv_release + 0x0000000000000000 0x40 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_recv_toDS + 0x0000000000000000 0x1da /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_max_layer + 0x0000000000000000 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_self_organized + 0x0000000000000000 0x74 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_self_organized + 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_set_parent + 0x0000000000000000 0x677 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_parent + 0x0000000000000000 0x15a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_waive_root + 0x0000000000000000 0xa6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_waive_root + 0x0000000000000000 0xa0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_send_stop_vote + 0x0000000000000000 0x1c5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_send_stop_vote + 0x0000000000000000 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_vote_percentage + 0x0000000000000000 0x3e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_vote_percentage + 0x0000000000000000 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_root_addr + 0x0000000000000000 0xaa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_attempts + 0x0000000000000000 0xae /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_attempts + 0x0000000000000000 0x74 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_push_to_xmit_state_queue + 0x0000000000000000 0xb4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_stop + 0x0000000000000000 0x6aa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_deinit + 0x0000000000000000 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_start + 0x0000000000000000 0x21c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_total_node_num + 0x0000000000000000 0x5a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_switch_parent_paras + 0x0000000000000000 0xb9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_switch_parent_paras + 0x0000000000000000 0x76 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_xon_qsize + 0x0000000000000000 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_xon_qsize + 0x0000000000000000 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_is_my_group + 0x0000000000000000 0x35 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_insert_group_addr + 0x0000000000000000 0x141 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_delete_group_addr + 0x0000000000000000 0x1a6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_group_id + 0x0000000000000000 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_delete_group_id + 0x0000000000000000 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_group_num + 0x0000000000000000 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_group_list + 0x0000000000000000 0x8a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_capacity_num + 0x0000000000000000 0x86 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_capacity_num + 0x0000000000000000 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_is_my_ie_encrypted + 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_set_ie_crypto_funcs + 0x0000000000000000 0x3d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_ie_crypto_funcs + 0x0000000000000000 0x107 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_set_ie_crypto_key + 0x0000000000000000 0x44 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_ie_crypto_key + 0x0000000000000000 0x1a4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_ie_crypto_key + 0x0000000000000000 0xf2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_root_healing_delay + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_root_healing_delay + 0x0000000000000000 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_passive_scan_time + 0x0000000000000000 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_passive_scan_time + 0x0000000000000000 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_fix_root + 0x0000000000000000 0x44 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_is_root_fixed + 0x0000000000000000 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_announce_interval + 0x0000000000000000 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_announce_interval + 0x0000000000000000 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_subnet_nodes_num + 0x0000000000000000 0xec /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_subnet_nodes_list + 0x0000000000000000 0x12a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_switch_channel + 0x0000000000000000 0x124 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_look_for_network + 0x0000000000000000 0x60 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_topology + 0x0000000000000000 0x33 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_topology + 0x0000000000000000 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_is_device_active + 0x0000000000000000 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_enable_ps + 0x0000000000000000 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_disable_ps + 0x0000000000000000 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_is_ps_enabled + 0x0000000000000000 0x40 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_ps_get_duties + 0x0000000000000000 0xe6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9895 + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9883 + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9827 + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9768 + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9758 + 0x0000000000000000 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9749 + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9673 + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9641 + 0x0000000000000000 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9573 + 0x0000000000000000 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9554 + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.option$9521 + 0x0000000000000000 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.value$9520 + 0x0000000000000000 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9475 + 0x0000000000000000 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9465 + 0x0000000000000000 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.s_mesh_group_addr + 0x0000000000000000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.s_mesh_send_mutex + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.s_mesh_stop_mutex + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.g_mesh_stop_event_group + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.mesh_ioctl_sem + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.mesh_xmit_sem + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.mesh_tcpip_mbox + 0x0000000000000000 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.mesh_myself_mbox + 0x0000000000000000 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.s_mesh_ext_crypto_config + 0x0000000000000000 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.s_mesh_ie_crypto_plain_key + 0x0000000000000000 0x41 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.g_is_mesh_started + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.g_is_mesh_inited + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.s_extra_toDS_qsize + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.s_extra_toSelf_qsize + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.g_is_standalone_sta + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.g_mesh_ann_interval + 0x0000000000000000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.g_is_root_fixed + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.g_mesh_rt_capacity + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.g_mesh_root_healing_delay + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.g_mesh_passive_scan_time + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.g_mesh_cfg_vote_percent + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.g_mesh_cfg_switch_parent + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.g_mesh_max_layer + 0x0000000000000000 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.libmesh_reversion_git + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.MESH_BCAST_ADDR + 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .comment 0x0000000000000000 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + COMMON 0x0000000000000000 0x146 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.nvs_op2str + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_operate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_set_layer + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_set_assoc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .rodata.str1.1 + 0x0000000000000000 0xf5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .text.nvs_op2str + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_operate + 0x0000000000000000 0x368 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .rodata.esp_mesh_nvs_operate + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_set_layer + 0x0000000000000000 0x56 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_set_assoc + 0x0000000000000000 0x58 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_init + 0x0000000000000000 0x5d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_deinit + 0x0000000000000000 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .rodata.CSWTCH$12 + 0x0000000000000000 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .bss.mesh_nvs_settings + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .data.mesh_nvs_handle + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .bss.g_mesh_nvs_settings + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .comment 0x0000000000000000 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .literal.esp_mesh_io_sem_wait + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.esp_mesh_io_sem_signal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_set_io_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.esp_mesh_stop_parent_reconnection + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_set_router + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_set_self_organized + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_set_type + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_csa_set_bssid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_switch_channel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_look_for_network + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_nwk_io_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.esp_mesh_io_sem_wait + 0x0000000000000000 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.esp_mesh_io_sem_signal + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .rodata.str1.1 + 0x0000000000000000 0x20c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_set_io_process + 0x0000000000000000 0xdf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.esp_mesh_stop_parent_reconnection + 0x0000000000000000 0x6e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_set_router + 0x0000000000000000 0x22b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_set_self_organized + 0x0000000000000000 0x145 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_set_type + 0x0000000000000000 0x2da /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_csa_set_bssid + 0x0000000000000000 0x92 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_switch_channel + 0x0000000000000000 0x76 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_look_for_network + 0x0000000000000000 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_nwk_io_process + 0x0000000000000000 0x1d9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .rodata.mesh_nwk_io_process + 0x0000000000000000 0x34 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .rodata.__func__$9445 + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .rodata.__func__$9391 + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .bss.csa_bssid + 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .bss.s_mesh_io_error + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .bss.g_mesh_stop_reconnection + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .comment 0x0000000000000000 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_process_mgmt_announce$part$6 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_routing_table$part$7 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.optype2str + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_get_optlen + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_mcast_cover_node + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_remove_myself_from_forwarding + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_delivery_toDS + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_delivery_toSelf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_process_mcast_cover_node + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_process_mcast + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_process_bcast + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_root_switch + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_root_waive + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_announce + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_routing_table + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_process_options + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_process_ucast + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_forward_packet + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.str1.1 + 0x0000000000000000 0x8bc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_announce$part$6 + 0x0000000000000000 0x3f1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_routing_table$part$7 + 0x0000000000000000 0x3ba /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.optype2str + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_get_optlen + 0x0000000000000000 0x78 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_mcast_cover_node + 0x0000000000000000 0x350 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.mesh_remove_myself_from_forwarding + 0x0000000000000000 0x113 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_delivery_toDS + 0x0000000000000000 0x1fc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_delivery_toSelf + 0x0000000000000000 0x3cc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.mesh_process_mcast_cover_node + 0x0000000000000000 0x4ca /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_process_mcast + 0x0000000000000000 0x17a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_process_bcast + 0x0000000000000000 0x39c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_root_switch + 0x0000000000000000 0x182 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_root_waive + 0x0000000000000000 0x1e2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_announce + 0x0000000000000000 0x68 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_routing_table + 0x0000000000000000 0x68 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_process_options + 0x0000000000000000 0x226 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_process_ucast + 0x0000000000000000 0x9b8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_forward_packet + 0x0000000000000000 0x3ca /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.CSWTCH$144 + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.__func__$9491 + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.__func__$9477 + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.__func__$9459 + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.__func__$9427 + 0x0000000000000000 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.__func__$9393 + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .bss.mesh_xseqno + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .data.MESH_BCAST_ADDR + 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .comment 0x0000000000000000 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_channel_enable_jp + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .literal.esp_mesh_scan_done_get_channel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .literal.mesh_nwk_process_reselect + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .literal.mesh_nwk_process_look_for_network + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .literal.mesh_nwk_process_allow_switch + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .rodata.str1.1 + 0x0000000000000000 0x69c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .rodata 0x0000000000000000 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .text.esp_mesh_channel_enable_jp + 0x0000000000000000 0x67 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .text.esp_mesh_scan_done_get_channel + 0x0000000000000000 0x7ab /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .text.mesh_nwk_process_reselect + 0x0000000000000000 0x2c2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .text.mesh_nwk_process_look_for_network + 0x0000000000000000 0x368 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .text.mesh_nwk_process_allow_switch + 0x0000000000000000 0x13c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .rodata.__func__$9460 + 0x0000000000000000 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .rodata.__func__$9449 + 0x0000000000000000 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .bss.look_for_nwk_count$9444 + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .bss.scan_times$9424 + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .rodata.__func__$9430 + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .comment 0x0000000000000000 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .literal.mesh_set_root_candidate$part$17 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_set_root_candidate_ie$part$18 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_sta_auth_expire_time + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_register_timer_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_ie_update_rssi + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.is_mesh_last_parent + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_send_root_switch + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_switch_parent + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_compute_my_votes + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_check_rc_expire + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_change_layer + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_parent_candidate_config + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_parent_check_root_conflict + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.route_announce_timer_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.route_announce_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.route_announce_timer_stop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_ie_monitor + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ie_monitor_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_bcn_change_timer_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_root_connect_timer_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.candidate_monitor_timer_stop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_disable_parent_switch_monitor + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.candidate_monitor_timer_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_ps_control_check_awake + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_set_awake + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_set_sleep + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_get_min_duty + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_find_conflict_roots + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_remove_conflict_roots + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.is_self_mac_greater + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_is_yield_root + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_add_conflict_roots + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_yield_roots_announce + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_yield_roots_monitor + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_delete_timers + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_send_roots_gone + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_send_roots_fixed + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_send_roots_stop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_check_conflict_roots + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_send_rmv_announcement + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_scan_allowed + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_rt_change_debug + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_rt_change_debug + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_vote_done + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_disconnected + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_scan_request + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_rootless + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_check_no_parent_found + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_root_process_connect + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_child_set_ps_duty + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_child_clr_ps_duty + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_process_ps_type + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_is_better_parent + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.is_mesh_child + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_flush_scan_result + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_scan_done + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.scan_result_print + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_scan_done_process_weak + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_conn_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_conn_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_parent_insert_candidate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_scan_done_vote + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_scan_done + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_update_current_parent + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_set_root_candidate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_update_ie_rssi + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_set_root_candidate_ie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_compute_votes + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_process_root_candidate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_process_same_root_candidate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_add_invalid_rc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal._mesh_find_root_competitor + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.print_rc_info + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_is_last_rc_existing + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_update_rcandidate_rssi + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_init_rcandidate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_check_last_rcandidate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_find_root_competitor + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_vote_root_candidate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_router + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_nvs_settings + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_is_better_parent + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent_compute_rank + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_set_ignore + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent_limit_layer2_cap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent_try_rssi + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent_try_layer + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_child_num + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_process_ps_awake + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_child_event + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_process_child_macconnected + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.print_txupQ_pending + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_child_idx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_child_idx_lock + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_insert_child + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_remove_child + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_remove_children + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_leaf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_no_parent + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_clear_parent + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_node_process_disconnect + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_revote_root + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_node_process_healing + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_push_to_nwk_queue + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_route_announce_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ie_monitor_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_bcn_change_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_root_connect_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_candidate_monitor_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_candidate_monitor_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_sta_connect + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_connect_to_router + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_connect_to_candidate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_root_connect_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_root_process_disconnect + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_manual_networking + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_sta_disconnect + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_connect + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_disconnect + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_parent_reselect + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_check_layer + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_ie_change + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_conflict_discnx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_node_process_cycle + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_wifi_event_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_post_toDS_state + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_rssi_threshold + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_rssi_threshold + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_set_default_rssi_threshold + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_nwk_inited + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_nwk_running + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_process_parent_organized + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_task_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_nwk_task_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_nwk_task_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_beacon_interval + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_adjust_passive_scan_time + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_beacon_interval + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_parent_select_done + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_parent_select + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_bcn_change_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_task_main + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ps_get_duties + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_print_scan_result + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_set_root_candidate$part$17 + 0x0000000000000000 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_set_root_candidate_ie$part$18 + 0x0000000000000000 0x56 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_sta_auth_expire_time + 0x0000000000000000 0x47 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_register_timer_cb + 0x0000000000000000 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_ie_update_rssi + 0x0000000000000000 0xc9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_set_ie + 0x0000000000000000 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.is_mesh_last_parent + 0x0000000000000000 0x44 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_send_root_switch + 0x0000000000000000 0x78 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.str1.1 + 0x0000000000000000 0x2b64 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_switch_parent + 0x0000000000000000 0x202 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_compute_my_votes + 0x0000000000000000 0x85 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_check_rc_expire + 0x0000000000000000 0x36a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_change_layer + 0x0000000000000000 0x9e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_set_parent_candidate_config + 0x0000000000000000 0xc3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_parent_check_root_conflict + 0x0000000000000000 0xce /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.route_announce_timer_start + 0x0000000000000000 0xb7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.route_announce_timeout_process + 0x0000000000000000 0xb4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.route_announce_timer_stop + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_ie_monitor + 0x0000000000000000 0x130 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_ie_monitor_timeout_process + 0x0000000000000000 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_bcn_change_timer_start + 0x0000000000000000 0x3a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_root_connect_timer_start + 0x0000000000000000 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.candidate_monitor_timer_stop + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_disable_parent_switch_monitor + 0x0000000000000000 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.candidate_monitor_timer_start + 0x0000000000000000 0x212 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_ps_control_check_awake + 0x0000000000000000 0xa3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_ps_control_set_awake + 0x0000000000000000 0x5c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_ps_control_set_sleep + 0x0000000000000000 0x72 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_ps_control_get_min_duty + 0x0000000000000000 0x138 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_ps_control_timeout_process + 0x0000000000000000 0x1ee /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_find_conflict_roots + 0x0000000000000000 0x60 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_remove_conflict_roots + 0x0000000000000000 0xe0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.is_self_mac_greater + 0x0000000000000000 0x82 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_is_yield_root + 0x0000000000000000 0x59 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_add_conflict_roots + 0x0000000000000000 0x20d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_yield_roots_announce + 0x0000000000000000 0x21e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_yield_roots_monitor + 0x0000000000000000 0x1c6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_delete_timers + 0x0000000000000000 0xc2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_send_roots_gone + 0x0000000000000000 0x86 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_send_roots_fixed + 0x0000000000000000 0xea /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_send_roots_stop + 0x0000000000000000 0xc8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_check_conflict_roots + 0x0000000000000000 0x18e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_send_rmv_announcement + 0x0000000000000000 0x1e0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_scan_allowed + 0x0000000000000000 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_rt_change_debug + 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_rt_change_debug + 0x0000000000000000 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_vote_done + 0x0000000000000000 0xd0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_disconnected + 0x0000000000000000 0xae /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_scan_request + 0x0000000000000000 0xfd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_rootless + 0x0000000000000000 0xac /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_check_no_parent_found + 0x0000000000000000 0x9e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_root_process_connect + 0x0000000000000000 0x88 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_child_set_ps_duty + 0x0000000000000000 0x2d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_child_clr_ps_duty + 0x0000000000000000 0x31 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_process_ps_type + 0x0000000000000000 0xa6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_is_better_parent + 0x0000000000000000 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.is_mesh_child + 0x0000000000000000 0x6a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_flush_scan_result + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_scan_done + 0x0000000000000000 0x212 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.scan_result_print + 0x0000000000000000 0x29c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_scan_done_process_weak + 0x0000000000000000 0xf5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_conn_init + 0x0000000000000000 0xca /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_conn_deinit + 0x0000000000000000 0xc2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_parent_insert_candidate + 0x0000000000000000 0x166 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_scan_done_vote + 0x0000000000000000 0x534 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_scan_done + 0x0000000000000000 0x774 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_update_current_parent + 0x0000000000000000 0x13f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_set_root_candidate + 0x0000000000000000 0x99 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_update_ie_rssi + 0x0000000000000000 0xa9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_set_root_candidate_ie + 0x0000000000000000 0x88 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_compute_votes + 0x0000000000000000 0xed /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_process_root_candidate + 0x0000000000000000 0x24d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_process_same_root_candidate + 0x0000000000000000 0x65 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_add_invalid_rc + 0x0000000000000000 0x116 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text._mesh_find_root_competitor + 0x0000000000000000 0x68a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.print_rc_info + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_is_last_rc_existing + 0x0000000000000000 0x124 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_update_rcandidate_rssi + 0x0000000000000000 0xa1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_init_rcandidate + 0x0000000000000000 0xf8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_check_last_rcandidate + 0x0000000000000000 0x26e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_find_root_competitor + 0x0000000000000000 0x1cc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_vote_root_candidate + 0x0000000000000000 0x5a8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_router + 0x0000000000000000 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_nvs_settings + 0x0000000000000000 0x25d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_is_better_parent + 0x0000000000000000 0x124 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_parent_compute_rank + 0x0000000000000000 0x6e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_set_ignore + 0x0000000000000000 0x104 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_parent_limit_layer2_cap + 0x0000000000000000 0x25e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_parent_try_rssi + 0x0000000000000000 0x1fb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_parent_try_layer + 0x0000000000000000 0x14c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_parent + 0x0000000000000000 0x22c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_child_num + 0x0000000000000000 0x60 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_process_ps_awake + 0x0000000000000000 0x145 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_child_event + 0x0000000000000000 0xe8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_process_child_macconnected + 0x0000000000000000 0x254 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.print_txupQ_pending + 0x0000000000000000 0x286 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_child_idx + 0x0000000000000000 0x74 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_child_idx_lock + 0x0000000000000000 0x4c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_insert_child + 0x0000000000000000 0x2fd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_remove_child + 0x0000000000000000 0x75 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_remove_children + 0x0000000000000000 0x125 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_leaf + 0x0000000000000000 0x6c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_no_parent + 0x0000000000000000 0xdd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_clear_parent + 0x0000000000000000 0x15a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_node_process_disconnect + 0x0000000000000000 0x45 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_revote_root + 0x0000000000000000 0x59 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_node_process_healing + 0x0000000000000000 0xd5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_push_to_nwk_queue + 0x0000000000000000 0x12a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_route_announce_timeout + 0x0000000000000000 0x5f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_ie_monitor_timeout + 0x0000000000000000 0x5f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_bcn_change_timeout + 0x0000000000000000 0x5f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_root_connect_timeout + 0x0000000000000000 0x5f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_candidate_monitor_timeout + 0x0000000000000000 0x5f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_candidate_monitor_timeout_process + 0x0000000000000000 0xc6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_ps_control_timeout + 0x0000000000000000 0x5f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_sta_connect + 0x0000000000000000 0x215 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_connect_to_router + 0x0000000000000000 0x33d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_connect_to_candidate + 0x0000000000000000 0x404 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_root_connect_timeout_process + 0x0000000000000000 0x72 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_root_process_disconnect + 0x0000000000000000 0x112 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_manual_networking + 0x0000000000000000 0x35d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_sta_disconnect + 0x0000000000000000 0x7e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_connect + 0x0000000000000000 0x86 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_disconnect + 0x0000000000000000 0x86 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_parent_reselect + 0x0000000000000000 0xdf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_check_layer + 0x0000000000000000 0xf6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_ie_change + 0x0000000000000000 0x402 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_conflict_discnx + 0x0000000000000000 0x80 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_node_process_cycle + 0x0000000000000000 0xfd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_wifi_event_cb + 0x0000000000000000 0x4d3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.mesh_wifi_event_cb + 0x0000000000000000 0xdc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_post_toDS_state + 0x0000000000000000 0x60 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_set_rssi_threshold + 0x0000000000000000 0x42 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_rssi_threshold + 0x0000000000000000 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_set_default_rssi_threshold + 0x0000000000000000 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_nwk_inited + 0x0000000000000000 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_nwk_running + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_process_parent_organized + 0x0000000000000000 0x73 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_task_deinit + 0x0000000000000000 0xb9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_nwk_task_init + 0x0000000000000000 0x3c9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_nwk_task_deinit + 0x0000000000000000 0xa0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_beacon_interval + 0x0000000000000000 0x6d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_adjust_passive_scan_time + 0x0000000000000000 0x8e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_set_beacon_interval + 0x0000000000000000 0x51 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_parent_select_done + 0x0000000000000000 0x909 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_parent_select + 0x0000000000000000 0x943 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_bcn_change_timeout_process + 0x0000000000000000 0x3a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_task_main + 0x0000000000000000 0x385f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.mesh_nwk_task_main + 0x0000000000000000 0xb0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_ps_get_duties + 0x0000000000000000 0x11a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_print_scan_result + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10902 + 0x0000000000000000 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.last_event_id$10832 + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10807 + 0x0000000000000000 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10799 + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10768 + 0x0000000000000000 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10755 + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10739 + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10466 + 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10462 + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10450 + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10425 + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10406 + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10384 + 0x0000000000000000 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10377 + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10309 + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10173 + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10168 + 0x0000000000000000 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10154 + 0x0000000000000000 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10131 + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10120 + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10106 + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10045 + 0x0000000000000000 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9906 + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9874 + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9866 + 0x0000000000000000 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9861 + 0x0000000000000000 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9849 + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9840 + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9815 + 0x0000000000000000 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9809 + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.cnx_backoff$9802 + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_final_struggle$9790 + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.max_voter_num$9785 + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9787 + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9735 + 0x0000000000000000 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9723 + 0x0000000000000000 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9679 + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9659 + 0x0000000000000000 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_rt_change_dbg + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_monitor_timer_interval + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_history_root_backoff + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.retry_attemps + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mesh_ps_cnt + 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_layer_backoff_times + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_rssi_backoff_times + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.vote_log_time_start + 0x0000000000000000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.vote_log_time_stop + 0x0000000000000000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_vote_scan_times + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_extra_scan_attempts + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_vote_ps_times + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_vote_rc_times + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_last_rcandidate + 0x0000000000000000 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_rcandidate + 0x0000000000000000 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mesh_ps_control + 0x0000000000000000 0x50 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .data.s_mesh_beacon_interval + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_running_channel + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .data.s_monitor_parent_config + 0x0000000000000000 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_first_short_time_retries + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_parent_rssi_threshold + 0x0000000000000000 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_root_addr + 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_is_parent_set + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_sta_discnx_times + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_sta_cnx_times + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_mesh_last_parent + 0x0000000000000000 0x6c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_mesh_last_parent_chain + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_mesh_last_parent_ie + 0x0000000000000000 0x3a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.ann_time_start + 0x0000000000000000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mie_log_time_start + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_root_connect_timer_armed + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.ps_control_timer + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.candidate_monitor_timer + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.root_connect_timer + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.bcn_change_timer + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mie_monitor_timer + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.route_announce_timer + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mesh_timer_func + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mesh_nwk_task + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mesh_nwk_mbox + 0x0000000000000000 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.is_nwk_running + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_parent_root_children_list + 0x0000000000000000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_vote_invalid_list + 0x0000000000000000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_vote_expire_list + 0x0000000000000000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_parent_cyclic_list + 0x0000000000000000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_parent_map_list + 0x0000000000000000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_parent_idle_list + 0x0000000000000000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_print_scan_result_enable + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .data.s_mesh_scan_done + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_scan_req + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_last_layer + 0x0000000000000000 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_mesh_rmv_opt + 0x0000000000000000 0x4d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mesh_conn_mutex + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_mesh_conn + 0x0000000000000000 0x2c8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_is_wifi_disconnecting + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_is_wifi_connecting + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_is_wifi_connected + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .comment 0x0000000000000000 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + COMMON 0x0000000000000000 0x70 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_rt_change_timeout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_route_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_route_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_rt_change_timer_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_rt_change_timeout_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_match_self + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_get_total_children_num + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_lookup_sub_route + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_lookup_route + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_print_route_table + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_get_sub_capacity + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.routetype2str + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_update_route_table + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_delete_sub_children + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_send_add_announcement + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_fill_rmv_sub_child + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_malloc_rmv_announcement + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_construct_rmv_announcement + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_pack_rmv_announcement + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_pack_rmv_announcement + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_pack_multi_routing_table + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_ie_update_capacity + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_check_nonassociated_children + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_monitor_nonassociated_children + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_remove_nonassociated_children + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_copy_mgmt_announce + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_process_redundant_subchildren + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_combine_multi_redundant_ack + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_check_multi_redundant_ack + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_refresh_routing_table + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_get_routing_table_size + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_get_routing_table + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_get_subnet_nodes_num + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_get_subnet_nodes_list + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_send_rtable_request + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_send_rtable_ack + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_nwk_redundant_route + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_rt_change_timeout + 0x0000000000000000 0x5c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_route_init + 0x0000000000000000 0x65 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_route_deinit + 0x0000000000000000 0xac /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_rt_change_timer_start + 0x0000000000000000 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_rt_change_timeout_process + 0x0000000000000000 0x57 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_match_self + 0x0000000000000000 0x5c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_get_total_children_num + 0x0000000000000000 0x7d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_lookup_sub_route + 0x0000000000000000 0xc4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.str1.1 + 0x0000000000000000 0xd03 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_lookup_route + 0x0000000000000000 0x14a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_print_route_table + 0x0000000000000000 0x9f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_get_sub_capacity + 0x0000000000000000 0x59 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.routetype2str + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_update_route_table + 0x0000000000000000 0x3ff /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_delete_sub_children + 0x0000000000000000 0x68 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_send_add_announcement + 0x0000000000000000 0xed /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_fill_rmv_sub_child + 0x0000000000000000 0x39c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_malloc_rmv_announcement + 0x0000000000000000 0xbc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_construct_rmv_announcement + 0x0000000000000000 0xc0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_pack_rmv_announcement + 0x0000000000000000 0xcd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_pack_rmv_announcement + 0x0000000000000000 0x136 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_pack_multi_routing_table + 0x0000000000000000 0x4fb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_ie_update_capacity + 0x0000000000000000 0x184 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_check_nonassociated_children + 0x0000000000000000 0x84 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_monitor_nonassociated_children + 0x0000000000000000 0x2ed /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_remove_nonassociated_children + 0x0000000000000000 0x1c6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_copy_mgmt_announce + 0x0000000000000000 0x2df /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_process_redundant_subchildren + 0x0000000000000000 0x3bd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_combine_multi_redundant_ack + 0x0000000000000000 0x2ac /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_check_multi_redundant_ack + 0x0000000000000000 0x2b1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_refresh_routing_table + 0x0000000000000000 0x6fa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_get_routing_table_size + 0x0000000000000000 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_get_routing_table + 0x0000000000000000 0x1ba /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_get_subnet_nodes_num + 0x0000000000000000 0xc0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_get_subnet_nodes_list + 0x0000000000000000 0xfe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_send_rtable_request + 0x0000000000000000 0x8e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_send_rtable_ack + 0x0000000000000000 0x20a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_nwk_redundant_route + 0x0000000000000000 0x1ba /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.CSWTCH$137 + 0x0000000000000000 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9723 + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9710 + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9681 + 0x0000000000000000 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9676 + 0x0000000000000000 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9651 + 0x0000000000000000 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9636 + 0x0000000000000000 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9547 + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9529 + 0x0000000000000000 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9489 + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9416 + 0x0000000000000000 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9399 + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9391 + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss.mesh_multi_send_ack + 0x0000000000000000 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss.mesh_multi_recv_ack + 0x0000000000000000 0xf0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss.rt_change_timer + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss.mesh_route_table + 0x0000000000000000 0x50 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss.is_route_inited + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .comment 0x0000000000000000 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_print_txQ_waiting + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_print_txQ_waiting + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_get_tx_pending + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_get_tx_pending + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_event + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_forward_check_active + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_check_tid_mbox_full + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_push_to_ack_state_queue + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_tx_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_best_effort_tx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_push_to_wnd_queue + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_operation_rxseqno + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_get_cidx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_insert_child + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_delete_child + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_get_xonseq + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_clear_xonseq + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_process_txupQ_pending + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_push_to_tx_queue + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_force_txupQ_pending + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_available_txupQ_num + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_flush_txQ + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_tx_tid_flush + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_tx_tid_stop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_push_to_ps_tx_queue + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_ps_tx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.tx_task_main + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_discard_context + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_xon + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_recv_xon + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_tx_task_main + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_deliver_packet + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_flush_packets + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_process_disconnected + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_process_expired + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_flush_upstream_packets + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.xon_task_main + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_process_no_wnd + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_task_main + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_tx_task_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_tx_task_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_tx_task_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_send_block_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_send_block_main + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_flush_upstream_packets + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_time + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.str1.1 + 0x0000000000000000 0x141a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_print_txQ_waiting + 0x0000000000000000 0x13e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_print_txQ_waiting + 0x0000000000000000 0x72 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_get_tx_pending + 0x0000000000000000 0x1b1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_get_tx_pending + 0x0000000000000000 0x62 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_event + 0x0000000000000000 0x1c8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_start + 0x0000000000000000 0x1b0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_forward_check_active + 0x0000000000000000 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_check_tid_mbox_full + 0x0000000000000000 0x1d4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.mesh_check_tid_mbox_full + 0x0000000000000000 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_push_to_ack_state_queue + 0x0000000000000000 0xac /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_tx_cb + 0x0000000000000000 0x10b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_best_effort_tx + 0x0000000000000000 0x323 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_push_to_wnd_queue + 0x0000000000000000 0x102 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_operation_rxseqno + 0x0000000000000000 0x3c8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_get_cidx + 0x0000000000000000 0x70 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_insert_child + 0x0000000000000000 0x94 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_delete_child + 0x0000000000000000 0x3a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_get_xonseq + 0x0000000000000000 0x50 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_clear_xonseq + 0x0000000000000000 0x5e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending + 0x0000000000000000 0xc86 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_process_txupQ_pending + 0x0000000000000000 0x270 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_push_to_tx_queue + 0x0000000000000000 0x535 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_force_txupQ_pending + 0x0000000000000000 0x146 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_available_txupQ_num + 0x0000000000000000 0x1d0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_flush_txQ + 0x0000000000000000 0x130 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_tx_tid_flush + 0x0000000000000000 0x1e5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_tx_tid_stop + 0x0000000000000000 0x1c8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_push_to_ps_tx_queue + 0x0000000000000000 0x7d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_ps_tx + 0x0000000000000000 0x138 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.tx_task_main + 0x0000000000000000 0x240 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_discard_context + 0x0000000000000000 0x16a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_xon + 0x0000000000000000 0x6e5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_recv_xon + 0x0000000000000000 0x14f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_tx_task_main + 0x0000000000000000 0x9a2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_xon_deliver_packet + 0x0000000000000000 0x1c0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_xon_flush_packets + 0x0000000000000000 0x23d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_xon_process_disconnected + 0x0000000000000000 0x309 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_xon_process_expired + 0x0000000000000000 0x131 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_flush_upstream_packets + 0x0000000000000000 0x6e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.xon_task_main + 0x0000000000000000 0x1b5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_xon_process_no_wnd + 0x0000000000000000 0xf0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_xon_task_main + 0x0000000000000000 0xa8f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_tx_task_deinit + 0x0000000000000000 0x1da /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_tx_task_init + 0x0000000000000000 0x252 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.esp_mesh_tx_task_init + 0x0000000000000000 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_tx_task_deinit + 0x0000000000000000 0xa4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_deinit + 0x0000000000000000 0xc2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_send_block_deinit + 0x0000000000000000 0x91 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_send_block_main + 0x0000000000000000 0x4b2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_init + 0x0000000000000000 0x70 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_flush_upstream_packets + 0x0000000000000000 0x182 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_time + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9936 + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9928 + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9891 + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9833 + 0x0000000000000000 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9780 + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9762 + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9754 + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9746 + 0x0000000000000000 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_tx_fail_cnt$9721 + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9728 + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9710 + 0x0000000000000000 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9662 + 0x0000000000000000 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9655 + 0x0000000000000000 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9644 + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9631 + 0x0000000000000000 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9621 + 0x0000000000000000 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9583 + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9567 + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9534 + 0x0000000000000000 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9522 + 0x0000000000000000 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9499 + 0x0000000000000000 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9462 + 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9431 + 0x0000000000000000 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.send_block_flush_mbox + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.send_block_task + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.send_block_mbox + 0x0000000000000000 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.is_block_running + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .data.g_mesh_packet_lifetime + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_xreq_seqno + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_be_xmit_seqno + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_new_wnd_mbox + 0x0000000000000000 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_ack_state_mbox + 0x0000000000000000 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_tx_mbox + 0x0000000000000000 0xa8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_tx_task + 0x0000000000000000 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.is_mesh_tx_started + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_reassign_xseqno + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .data.MESH_BCAST_ADDR + 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .comment 0x0000000000000000 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + COMMON 0x0000000000000000 0x2e8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_timer_route_announce + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_mie_monitor + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_bcn_change + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_root_connect + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_candidate_monitor + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_rt_change + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_ps_control + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_do_process + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text.mesh_timer_route_announce + 0x0000000000000000 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text.mesh_timer_mie_monitor + 0x0000000000000000 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text.mesh_timer_bcn_change + 0x0000000000000000 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text.mesh_timer_root_connect + 0x0000000000000000 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text.mesh_timer_candidate_monitor + 0x0000000000000000 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text.mesh_timer_rt_change + 0x0000000000000000 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text.mesh_timer_ps_control + 0x0000000000000000 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .rodata.str1.1 + 0x0000000000000000 0x5a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text.mesh_timer_do_process + 0x0000000000000000 0xe8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .rodata.__func__$9422 + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .data.mesh_timer_info + 0x0000000000000000 0x40 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .comment 0x0000000000000000 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.esp_mesh_push_to_rx_queue + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.mesh_topo_get_ttl + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.esp_mesh_wifi_recv_cb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.esp_mesh_rx_task_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.mesh_rx_task_deinit + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.mesh_rx_task_main + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.esp_mesh_rx_task_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .rodata.str1.1 + 0x0000000000000000 0x2f7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .text.esp_mesh_push_to_rx_queue + 0x0000000000000000 0xca /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .text.mesh_topo_get_ttl + 0x0000000000000000 0xc2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .text.esp_mesh_wifi_recv_cb + 0x0000000000000000 0x748 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .text.esp_mesh_rx_task_deinit + 0x0000000000000000 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .text.mesh_rx_task_deinit + 0x0000000000000000 0x95 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .text.mesh_rx_task_main + 0x0000000000000000 0x230 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .text.esp_mesh_rx_task_init + 0x0000000000000000 0x88 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .rodata.__func__$9448 + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .rodata.__func__$9435 + 0x0000000000000000 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .bss.parent_last_mac_seqno$9432 + 0x0000000000000000 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .rodata.__func__$9407 + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .bss.mesh_rx_task + 0x0000000000000000 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .bss.mesh_rx_mbox + 0x0000000000000000 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .bss.is_rx_running + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .data.MESH_BCAST_ADDR + 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .comment 0x0000000000000000 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.esp_mesh_ap_list_clear + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_find_expire + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_clear_expire + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_find_invalid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_clear_invalid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_update_invalid + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_find + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_enqueue + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .rodata.str1.1 + 0x0000000000000000 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_clear + 0x0000000000000000 0xce /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_find_expire + 0x0000000000000000 0x52 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_clear_expire + 0x0000000000000000 0xbe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_find_invalid + 0x0000000000000000 0xba /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_clear_invalid + 0x0000000000000000 0xc2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_update_invalid + 0x0000000000000000 0x42 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_find + 0x0000000000000000 0x94 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_enqueue + 0x0000000000000000 0x1b9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .rodata.__func__$9455 + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .rodata.__func__$9383 + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .comment 0x0000000000000000 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.touch_ll_set_threshold + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_ll_get_threshold + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_ll_read_trigger_status_mask + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_isr_deregister + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_set_voltage + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_get_voltage + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_set_cnt_mode + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_get_cnt_mode + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_io_init + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_fsm_start + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_fsm_stop + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_set_fsm_mode + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_get_fsm_mode + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_sw_start + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_set_thresh + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_get_thresh + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_get_wakeup_status + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .iram1.0.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .iram1.1.literal + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_ll_set_threshold + 0x0000000000000000 0x85 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_ll_get_threshold + 0x0000000000000000 0x5f esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_ll_read_trigger_status_mask + 0x0000000000000000 0x46 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_isr_deregister + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.touch_pad_set_voltage.str1.4 + 0x0000000000000000 0x6e esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_set_voltage + 0x0000000000000000 0xda esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_get_voltage + 0x0000000000000000 0x37 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.touch_pad_set_cnt_mode.str1.4 + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_set_cnt_mode + 0x0000000000000000 0xbc esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_get_cnt_mode + 0x0000000000000000 0x65 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_io_init + 0x0000000000000000 0x62 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_fsm_start + 0x0000000000000000 0x2e esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_fsm_stop + 0x0000000000000000 0x2e esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.touch_pad_set_fsm_mode.str1.4 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_set_fsm_mode + 0x0000000000000000 0x9e esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_get_fsm_mode + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_sw_start + 0x0000000000000000 0x42 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_set_thresh + 0x0000000000000000 0x5d esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_get_thresh + 0x0000000000000000 0x42 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_get_wakeup_status + 0x0000000000000000 0x42 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .iram1.0 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .iram1.1 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$0 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$1 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$2 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$3 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$4 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$5 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$6 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$7 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_frame 0x0000000000000000 0x1d8 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_info 0x0000000000000000 0x44c8 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_abbrev 0x0000000000000000 0x45b esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_loc 0x0000000000000000 0x55d esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_aranges + 0x0000000000000000 0xb0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_ranges 0x0000000000000000 0xa0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_line 0x0000000000000000 0x14ab esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_str 0x0000000000000000 0x3109 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.bootloader_common_check_long_hold_gpio_level + 0x0000000000000000 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_check_long_hold_gpio + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_label_search + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_erase_part_type_data + 0x0000000000000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_get_sha256_of_partition + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_vddsdio_configure + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_check_long_hold_gpio_level.str1.4 + 0x0000000000000000 0xf4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_check_long_hold_gpio_level + 0x0000000000000000 0xf6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_check_long_hold_gpio + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_label_search.str1.4 + 0x0000000000000000 0x3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_label_search + 0x0000000000000000 0xb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_erase_part_type_data.str1.4 + 0x0000000000000000 0x115 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_erase_part_type_data + 0x0000000000000000 0x142 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_get_sha256_of_partition + 0x0000000000000000 0xa2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_vddsdio_configure + 0x0000000000000000 0x37 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x2d esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_frame 0x0000000000000000 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_info 0x0000000000000000 0x1999 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_abbrev 0x0000000000000000 0x3c6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_loc 0x0000000000000000 0x484 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_aranges + 0x0000000000000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_ranges 0x0000000000000000 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_line 0x0000000000000000 0x1136 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_str 0x0000000000000000 0x133a esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_ota_select_crc + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_ota_select_valid + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_check_chip_validity + 0x0000000000000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_get_active_otadata + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_ota_select_crc + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_ota_select_invalid + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_ota_select_valid + 0x0000000000000000 0x29 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .rodata.bootloader_common_check_chip_validity.str1.4 + 0x0000000000000000 0xea esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_check_chip_validity + 0x0000000000000000 0x118 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_select_otadata + 0x0000000000000000 0x68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_get_active_otadata + 0x0000000000000000 0x31 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_frame 0x0000000000000000 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_info 0x0000000000000000 0x9fa esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_abbrev 0x0000000000000000 0x223 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_loc 0x0000000000000000 0x444 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_aranges + 0x0000000000000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_ranges 0x0000000000000000 0x88 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_line 0x0000000000000000 0x9ff esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_str 0x0000000000000000 0xe25 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.log_invalid_app_partition + 0x0000000000000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.write_otadata + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.set_actual_ota_seq + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_common_read_otadata + 0x0000000000000000 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_common_get_partition_description + 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_load_partition_table + 0x0000000000000000 0x8c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_get_selected_boot_partition + 0x0000000000000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_reset + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_atexit + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.set_cache_and_start_app + 0x0000000000000000 0xe4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.unpack_load_app + 0x0000000000000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.load_image + 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_load_boot_image + 0x0000000000000000 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_sha256_flash_contents + 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.index_to_partition + 0x0000000000000000 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.check_anti_rollback + 0x0000000000000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.try_load_partition + 0x0000000000000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.log_invalid_app_partition.str1.4 + 0x0000000000000000 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.log_invalid_app_partition + 0x0000000000000000 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.write_otadata.str1.4 + 0x0000000000000000 0x45 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.write_otadata + 0x0000000000000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.set_actual_ota_seq.str1.4 + 0x0000000000000000 0x3d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.set_actual_ota_seq + 0x0000000000000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_common_read_otadata.str1.4 + 0x0000000000000000 0x91 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_common_read_otadata + 0x0000000000000000 0x95 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_common_get_partition_description + 0x0000000000000000 0x89 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_partition_table.str1.4 + 0x0000000000000000 0x1df esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_load_partition_table + 0x0000000000000000 0x1b0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_get_selected_boot_partition.str1.4 + 0x0000000000000000 0x113 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_get_selected_boot_partition + 0x0000000000000000 0x112 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_reset + 0x0000000000000000 0x9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_atexit + 0x0000000000000000 0x9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.set_cache_and_start_app.str1.4 + 0x0000000000000000 0x89 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.set_cache_and_start_app + 0x0000000000000000 0x4d5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.unpack_load_app.str1.4 + 0x0000000000000000 0x6d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.unpack_load_app + 0x0000000000000000 0xc4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.load_image.str1.4 + 0x0000000000000000 0x3e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.load_image + 0x0000000000000000 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_boot_image.str1.4 + 0x0000000000000000 0xe2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_load_boot_image + 0x0000000000000000 0x15b esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_hex_to_str + 0x0000000000000000 0x75 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_debug_buffer + 0x0000000000000000 0x5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_flash_contents + 0x0000000000000000 0x8b esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .bss.ota_has_initial_contents + 0x0000000000000000 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_frame 0x0000000000000000 0x1d8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_info 0x0000000000000000 0x2960 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_abbrev 0x0000000000000000 0x4a8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_loc 0x0000000000000000 0x1b8f esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_aranges + 0x0000000000000000 0xb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_ranges 0x0000000000000000 0xd0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_line 0x0000000000000000 0x2e74 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_str 0x0000000000000000 0x162e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.esp_partition_table_verify + 0x0000000000000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .rodata.esp_partition_table_verify.str1.4 + 0x0000000000000000 0x16c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .text.esp_partition_table_verify + 0x0000000000000000 0x175 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_frame 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_info 0x0000000000000000 0x63d esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_abbrev 0x0000000000000000 0x1e2 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_loc 0x0000000000000000 0x231 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_aranges + 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_ranges 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_line 0x0000000000000000 0x8d9 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_str 0x0000000000000000 0x459 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .literal.should_map + 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_segment_header + 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_appended_hash_and_sig + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_checksum + 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_image_header + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_image_header + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.should_load + 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_segment_data + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_segment + 0x0000000000000000 0x54 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_segments + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_simple_hash + 0x0000000000000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.image_load + 0x0000000000000000 0x3c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_get_metadata + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify_bootloader_data + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify_bootloader + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_get_flash_size + 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.should_map + 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_segment_header.str1.4 + 0x0000000000000000 0x98 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_segment_header + 0x0000000000000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_appended_hash_and_sig.str1.4 + 0x0000000000000000 0x4d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_appended_hash_and_sig + 0x0000000000000000 0x69 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_checksum.str1.4 + 0x0000000000000000 0x43 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_checksum + 0x0000000000000000 0xca esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_image_header.str1.4 + 0x0000000000000000 0x9f esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_image_header + 0x0000000000000000 0x70 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_image_header + 0x0000000000000000 0x68 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.should_load + 0x0000000000000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segment_data.str1.4 + 0x0000000000000000 0x3d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segment_data + 0x0000000000000000 0xbc esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segment.str1.4 + 0x0000000000000000 0xd9 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segment + 0x0000000000000000 0x154 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segments.str1.4 + 0x0000000000000000 0x31 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segments + 0x0000000000000000 0x91 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_simple_hash.str1.4 + 0x0000000000000000 0x5e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_simple_hash + 0x0000000000000000 0x6c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.image_load.str1.4 + 0x0000000000000000 0x47 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.image_load + 0x0000000000000000 0x11d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image + 0x0000000000000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image_no_verify + 0x0000000000000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_get_metadata + 0x0000000000000000 0x7c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader_data + 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader + 0x0000000000000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_get_flash_size + 0x0000000000000000 0x66 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_frame 0x0000000000000000 0x1d8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_info 0x0000000000000000 0x1cbb esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_abbrev 0x0000000000000000 0x37a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_loc 0x0000000000000000 0x103a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_aranges + 0x0000000000000000 0xb0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_ranges 0x0000000000000000 0xc0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_line 0x0000000000000000 0x213e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_str 0x0000000000000000 0x1442 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.bootloader_sha256_start + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha256_data + 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha256_finish + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_start + 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.bootloader_sha256_data.str1.4 + 0x0000000000000000 0x59 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_data + 0x0000000000000000 0x37 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_finish + 0x0000000000000000 0x47 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_frame 0x0000000000000000 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_info 0x0000000000000000 0x526 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_abbrev 0x0000000000000000 0x19b esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_loc 0x0000000000000000 0xae esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_aranges + 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_ranges 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_line 0x0000000000000000 0x550 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_str 0x0000000000000000 0x3d9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_random_enable + 0x0000000000000000 0x74 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .literal.bootloader_random_disable + 0x0000000000000000 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .text.bootloader_random_enable + 0x0000000000000000 0x1c4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .text.bootloader_random_disable + 0x0000000000000000 0x11d esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_frame 0x0000000000000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_info 0x0000000000000000 0x26e esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_abbrev 0x0000000000000000 0xd5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_aranges + 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_ranges 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_line 0x0000000000000000 0x1051 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_str 0x0000000000000000 0x566 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .literal.touch_ll_set_threshold + 0x0000000000000000 0x8 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_hal_config + 0x0000000000000000 0x10 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_hal_set_voltage + 0x0000000000000000 0x10 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_hal_get_voltage + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_hal_set_meas_mode + 0x0000000000000000 0xc esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_hal_get_meas_mode + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_ll_set_threshold + 0x0000000000000000 0x85 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_hal_config + 0x0000000000000000 0x53 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_hal_set_voltage + 0x0000000000000000 0x5f esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_hal_get_voltage + 0x0000000000000000 0x29 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_hal_set_meas_mode + 0x0000000000000000 0x60 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_hal_get_meas_mode + 0x0000000000000000 0x3d esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_frame 0x0000000000000000 0xa0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_info 0x0000000000000000 0x26f1 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x320 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_loc 0x0000000000000000 0x5b0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x48 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_ranges 0x0000000000000000 0x38 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_line 0x0000000000000000 0x845 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_str 0x0000000000000000 0x175c esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_ll_set_meas_time + 0x0000000000000000 0xc esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_ll_read_trigger_status_mask + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_hal_init + 0x0000000000000000 0x40 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_hal_deinit + 0x0000000000000000 0x10 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_hal_get_wakeup_status + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_ll_set_meas_time + 0x0000000000000000 0x57 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_ll_read_trigger_status_mask + 0x0000000000000000 0x46 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_hal_init + 0x0000000000000000 0x135 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_hal_deinit + 0x0000000000000000 0x3d esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_hal_get_wakeup_status + 0x0000000000000000 0x2f esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_frame 0x0000000000000000 0x88 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_info 0x0000000000000000 0x337a esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x34b esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_loc 0x0000000000000000 0x118 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x40 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_ranges 0x0000000000000000 0x30 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_line 0x0000000000000000 0x72a esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_str 0x0000000000000000 0x2304 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .rodata.touch_sensor_channel_io_map + 0x0000000000000000 0x28 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .debug_info 0x0000000000000000 0x261 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .debug_abbrev 0x0000000000000000 0x84 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .debug_aranges + 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .debug_line 0x0000000000000000 0x13e esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .debug_str 0x0000000000000000 0x871 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .literal.esp_mesh_send_event_internal + 0x0000000000000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .rodata.esp_mesh_send_event_internal.str1.4 + 0x0000000000000000 0xb esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .text.esp_mesh_send_event_internal + 0x0000000000000000 0x18 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .rodata.MESH_EVENT + 0x0000000000000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_frame 0x0000000000000000 0x28 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_info 0x0000000000000000 0x348 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_abbrev 0x0000000000000000 0xfa esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_loc 0x0000000000000000 0x25 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_aranges + 0x0000000000000000 0x20 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_ranges 0x0000000000000000 0x10 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_line 0x0000000000000000 0x3f4 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_str 0x0000000000000000 0x8fd esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .comment 0x0000000000000000 0x30 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opvs.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opvs.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opvs.o) + .literal._ZSt15set_new_handlerPFvvE + 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .text._ZSt15set_new_handlerPFvvE + 0x0000000000000000 0x1f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .literal._ZSt18uncaught_exceptionv + 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + .literal._ZSt19uncaught_exceptionsv + 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + .text.__cxa_get_exception_ptr + 0x0000000000000000 0xa /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + .text._ZSt18uncaught_exceptionv + 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + .text._ZSt19uncaught_exceptionsv + 0x0000000000000000 0xd /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .literal._ZSt13set_terminatePFvvE + 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .literal._ZN10__cxxabiv112__unexpectedEPFvvE + 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .literal._ZSt14set_unexpectedPFvvE + 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .literal._ZSt10unexpectedv + 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .text._ZSt13set_terminatePFvvE + 0x0000000000000000 0x25 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .text._ZN10__cxxabiv112__unexpectedEPFvvE + 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .text._ZSt14set_unexpectedPFvvE + 0x0000000000000000 0x25 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .text._ZSt10unexpectedv + 0x0000000000000000 0xf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opv.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opv.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opv.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + .group 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + .group 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + .group 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + .group 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + .group 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .group 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .literal._ZNSt9type_infoD0Ev + 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .literal._ZNKSt9type_info10__do_catchEPKS_PPvj + 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .text._ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv + 0x0000000000000000 0x7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .text._ZNSt9type_infoD0Ev + 0x0000000000000000 0xf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .text._ZNKSt9type_info10__do_catchEPKS_PPvj + 0x0000000000000000 0x32 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .rodata._ZTVSt9type_info + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .xt.prop._ZTVSt9type_info + 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .group 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + .group 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .group 0x0000000000000000 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x3c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x3c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .literal._ZN9__gnu_cxx9__freeresEv + 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .literal.__cxa_allocate_dependent_exception + 0x0000000000000000 0x10 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .literal.__cxa_free_dependent_exception + 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .text.__cxx_eh_arena_size_get + 0x0000000000000000 0xa /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .text._ZN9__gnu_cxx9__freeresEv + 0x0000000000000000 0x16 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .text.__cxa_allocate_dependent_exception + 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .gcc_except_table.__cxa_allocate_dependent_exception + 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .text.__cxa_free_dependent_exception + 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .gcc_except_table.__cxa_free_dependent_exception + 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .rodata._ZTSSt9exception + 0x0000000000000000 0xd /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .rodata._ZTISt9exception + 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .xt.prop._ZTISt9exception + 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .group 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .group 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .group 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .literal._ZNKSt9exception4whatEv + 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .literal._ZNKSt13bad_exception4whatEv + 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .literal._ZNSt9exceptionD0Ev + 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .literal._ZNSt13bad_exceptionD0Ev + 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .literal._ZN10__cxxabiv115__forced_unwindD0Ev + 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .literal._ZN10__cxxabiv119__foreign_exceptionD0Ev + 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .text._ZNSt13bad_exceptionD2Ev + 0x0000000000000000 0x5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .rodata._ZNKSt9exception4whatEv.str1.1 + 0x0000000000000000 0xf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .text._ZNKSt9exception4whatEv + 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .rodata._ZNKSt13bad_exception4whatEv.str1.1 + 0x0000000000000000 0x13 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .text._ZNKSt13bad_exception4whatEv + 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .text._ZNSt9exceptionD0Ev + 0x0000000000000000 0xf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .text._ZNSt13bad_exceptionD0Ev + 0x0000000000000000 0xf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv115__forced_unwindD2Ev + 0x0000000000000000 0x5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv115__forced_unwindD0Ev + 0x0000000000000000 0xf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv119__foreign_exceptionD2Ev + 0x0000000000000000 0x5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv119__foreign_exceptionD0Ev + 0x0000000000000000 0xf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .text._ZGTtNKSt9exceptionD1Ev + 0x0000000000000000 0x5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .text._ZGTtNKSt13bad_exceptionD1Ev + 0x0000000000000000 0x5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .rodata._ZTVSt9exception + 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .rodata._ZTVSt13bad_exception + 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .rodata._ZTVN10__cxxabiv115__forced_unwindE + 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .rodata._ZTVN10__cxxabiv119__foreign_exceptionE + 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .xt.prop._ZTVSt9exception + 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .xt.prop._ZTVSt13bad_exception + 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .xt.prop._ZTVN10__cxxabiv115__forced_unwindE + 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .xt.prop._ZTVN10__cxxabiv119__foreign_exceptionE + 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .literal.__cxa_rethrow + 0x0000000000000000 0x18 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + .text.__cxa_rethrow + 0x0000000000000000 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divsf3.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divsf3.o) + .text 0x0000000000000000 0x85 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdisf.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdisf.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdisf.o) + .debug_line 0x0000000000000000 0x159 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdisf.o) + .debug_line_str + 0x0000000000000000 0xc5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdisf.o) + .debug_info 0x0000000000000000 0x25 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdisf.o) + .debug_abbrev 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdisf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdisf.o) + .debug_str 0x0000000000000000 0xd3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdisf.o) + .literal 0x0000000000000000 0x10 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .text 0x0000000000000000 0x312 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .debug_line 0x0000000000000000 0x6b1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .debug_line_str + 0x0000000000000000 0xc5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .debug_info 0x0000000000000000 0x25 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .debug_abbrev 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .debug_str 0x0000000000000000 0xd3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .literal 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_muldf3.o) + .text 0x0000000000000000 0x1ff /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_muldf3.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_muldf3.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_muldf3.o) + .debug_line 0x0000000000000000 0x478 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_muldf3.o) + .debug_line_str + 0x0000000000000000 0xc5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_muldf3.o) + .debug_info 0x0000000000000000 0x25 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_muldf3.o) + .debug_abbrev 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_muldf3.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_muldf3.o) + .debug_str 0x0000000000000000 0xd3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_muldf3.o) + .literal 0x0000000000000000 0x10 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdf3.o) + .text 0x0000000000000000 0x213 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdf3.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdf3.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdf3.o) + .debug_line 0x0000000000000000 0x4a1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdf3.o) + .debug_line_str + 0x0000000000000000 0xc5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdf3.o) + .debug_info 0x0000000000000000 0x25 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdf3.o) + .debug_abbrev 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdf3.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdf3.o) + .debug_str 0x0000000000000000 0xd3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdf3.o) + .literal 0x0000000000000000 0x18 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .text 0x0000000000000000 0x176 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .debug_line 0x0000000000000000 0x36f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .debug_line_str + 0x0000000000000000 0xc5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .debug_info 0x0000000000000000 0x25 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .debug_abbrev 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .debug_str 0x0000000000000000 0xd3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .literal 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .text 0x0000000000000000 0x4c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .debug_line 0x0000000000000000 0xe7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .debug_line_str + 0x0000000000000000 0xc5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .debug_info 0x0000000000000000 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .debug_abbrev 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .debug_str 0x0000000000000000 0xd3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .literal 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + .text 0x0000000000000000 0x5d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + .debug_line 0x0000000000000000 0x117 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + .debug_line_str + 0x0000000000000000 0xc5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + .debug_info 0x0000000000000000 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + .debug_abbrev 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + .debug_str 0x0000000000000000 0xd3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + .text 0x0000000000000000 0x3d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatsidf.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatsidf.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatsidf.o) + .debug_line 0x0000000000000000 0xc9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatsidf.o) + .debug_line_str + 0x0000000000000000 0xc5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatsidf.o) + .debug_info 0x0000000000000000 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatsidf.o) + .debug_abbrev 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatsidf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatsidf.o) + .debug_str 0x0000000000000000 0xd3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatsidf.o) + .literal 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + .text 0x0000000000000000 0x62 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + .debug_line 0x0000000000000000 0x117 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + .debug_line_str + 0x0000000000000000 0xc5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + .debug_info 0x0000000000000000 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + .debug_abbrev 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + .debug_str 0x0000000000000000 0xd3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + .text 0x0000000000000000 0x23 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_ffsdi2.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_ffsdi2.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_ffsdi2.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_ffsdi2.o) + .debug_info 0x0000000000000000 0x185 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_ffsdi2.o) + .debug_abbrev 0x0000000000000000 0x10b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_ffsdi2.o) + .debug_loclists + 0x0000000000000000 0x8d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_ffsdi2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_ffsdi2.o) + .debug_line 0x0000000000000000 0xdb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_ffsdi2.o) + .debug_str 0x0000000000000000 0x16e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_ffsdi2.o) + .debug_line_str + 0x0000000000000000 0x17c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_ffsdi2.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_ffsdi2.o) + .literal 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .text 0x0000000000000000 0x37 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .debug_info 0x0000000000000000 0xce /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .debug_abbrev 0x0000000000000000 0x68 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .debug_loclists + 0x0000000000000000 0xac /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .debug_line 0x0000000000000000 0xf7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .debug_str 0x0000000000000000 0x144 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .debug_line_str + 0x0000000000000000 0x17c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .text 0x0000000000000000 0x2ae /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdi3.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdi3.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdi3.o) + .text 0x0000000000000000 0x29a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_moddi3.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_moddi3.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_moddi3.o) + .text 0x0000000000000000 0x270 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_udivdi3.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_udivdi3.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_udivdi3.o) + .text 0x0000000000000000 0x25e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_umoddi3.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_umoddi3.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_umoddi3.o) + .literal._Z12abort_returnIPPvET_v + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal._Z12abort_returnIPvET_v + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal._Z12abort_returnIP11frame_stateET_v + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.abort_expect_void + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.abort_expect_void_and_return + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.forward_abort_uw_ctx + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_SetEnableExceptionFdeSorting + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap___register_frame_info_bases + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap___register_frame_info + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap___register_frame_info_table_bases + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap___register_frame_info_table + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_Find_FDE + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_GetGR + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_GetCFA + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_SetIP + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_SetGR + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_GetIPInfo + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal._Z17__frame_state_forPvP11frame_state + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_ForcedUnwind + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_Backtrace + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text._Z12abort_returnIPPvET_v + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text._Z12abort_returnIPvET_v + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text._Z12abort_returnIP11frame_stateET_v + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.abort_expect_void + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.abort_expect_void_and_return + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.forward_abort_uw_ctx + 0x0000000000000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_SetEnableExceptionFdeSorting + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap___register_frame_info_bases + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap___register_frame_info + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap___register_frame_info_table_bases + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap___register_frame_info_table + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_Find_FDE + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_GetGR + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_GetCFA + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_SetIP + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_SetGR + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_GetIPInfo + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text._Z17__frame_state_forPvP11frame_state + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_ForcedUnwind + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_Backtrace + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.RFChannelSel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .literal.phy_change_channel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .literal.phy_change_channel_nomac + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .text.RFChannelSel + 0x0000000000000000 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .text.phy_change_channel + 0x0000000000000000 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .phyiram.20.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .phyiram.18.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .phyiram.19.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .phyiram.17.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.ram_pbus_force_mode + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.ram_pbus_xpd_tx_on + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.i2c_xtal_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.i2c_rfpll_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.ram_rfpll_reset + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.ram_restart_cal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.ram_wait_rfpll_cal_end + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.ram_rfpll_set_freq + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_rxmax_ext_ana + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.phy_freq_correct_opt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_adc_wr_dly + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.i2c_bbtop_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.i2c_rftx_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.i2c_bias_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.get_rf_freq_cap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.correct_rfpll_offset + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.wr_rf_freq_mem + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.get_rf_freq_init$part$1 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.write_freq_mem_all + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.get_rf_freq_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.bt_i2c_read_set + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.bt_i2c_read_mem + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.bt_i2c_write_set + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.bt_i2c_set_wifi_data + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.phy_wifi_pll_track + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.phy_bt_pll_track + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.tsens_read_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.phy_bt_power_track + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.bt_get_i2c_data + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.write_wifi_chan_data + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.set_chan_freq_hw_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.rf_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.check_rfpll_write_i2c + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.set_chan_freq_sw_start + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.set_channel_rfpll_freq + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_set_chan_nomac + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_set_chan + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_set_chan_offset + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_set_chan_ana + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.phy_set_wifi_mode_only + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.i2c_xtal_init + 0x0000000000000000 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.i2c_rfpll_init + 0x0000000000000000 0x90 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.chip_v7_adc_wr_dly + 0x0000000000000000 0x62 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.i2c_bbtop_init + 0x0000000000000000 0x58 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.i2c_rftx_init + 0x0000000000000000 0x78 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.i2c_bias_init + 0x0000000000000000 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.get_rf_freq_init + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.bt_i2c_read_set + 0x0000000000000000 0xf1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.bt_i2c_read_mem + 0x0000000000000000 0xc3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.phy_wifi_pll_track + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.check_rfpll_write_i2c + 0x0000000000000000 0x86 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.chip_v7_set_chan + 0x0000000000000000 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.phy_set_wifi_mode_only + 0x0000000000000000 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.0.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_set_pbus_mem + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_start_tx_tone + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_bb_tx_ht20_cen + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_phy_get_noisefloor + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_check_noise_floor + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_bb_bss_bw_40_en + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_txdc_cal$part$4 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_txiq_cal$part$5 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.spur_cal$part$7 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.2.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.3.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.4.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.5.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.6.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.7.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.8.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.9.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.10.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.13.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.12.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.14.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.16.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_gen_rx_gain_table + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_rx_gain_cal_iq + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_rx_gain_cal_dc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.wr_rx_gain_mem + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_rx_gain_testchip_70 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_correct_bbgain + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_tx_gain_cal$part$3 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_tx_gain_cal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_index_to_bb + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_bb_to_index + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_txdc_cal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.get_bbgain_db + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_txiq_cal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.wr_bt_tx_gain_mem + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.force_bttx_gain + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_bttx_low_power + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_tx_gain_table_bt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_tx_dig_gain + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.spur_cal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_chanfreq + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_chanfreq_nomac + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.chip_sleep_prot_en + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.chip_sleep_prot_dis + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.chip_v7_rxmax_ext_dig + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.chip_v7_rxmax_ext + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_cca + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_rx_sense + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.read_hw_noisefloor + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_get_txpwr_param + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.noise_check_loop + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.noise_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.target_power_backoff + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_set_rfrx_dcap + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.chip_v7_set_chan_misc + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_rx_gain_table + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.rx_blocking_set + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.rx_gain_level + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.txiq_cal_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_rx11blr_cfg + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.analog_gain_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bb_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.wifi_rifs_mode_en + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_chan_filt_set + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_get_tx_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.register_chipv7_phy_init_param + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.uart_wait_idle + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_get_romfunc_addr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_byte_to_word + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.rf_cal_data_recovery + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.rf_cal_data_backup + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_get_rf_cal_version + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_rfcal_data_check + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.i2cmst_reg_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.fe_reg_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.11.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.15.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_opt_2480 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.get_phy_version_str + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_version_print + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.tx_cont_en + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.tx_cont_dis + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.tx_cont_cfg + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_get_tx_pwr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_init_pwr_print + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_get_rx_freq + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.reset_rf_dig + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.register_chipv7_phy + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_set_most_tpw + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_get_most_tpw + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_rx_sense_set + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ant_dft_cfg + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ant_wifitx_cfg + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ant_wifirx_cfg + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ant_bttx_cfg + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ant_btrx_cfg + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.esp_tx_state_out + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_chan_dump_cfg + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.chan14_mic_cfg + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.chan14_mic_enable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_get_adc_rand + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_enable_low_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_disable_low_rate + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_close_pa + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.btpwr_backoff + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_dig_reg_backup + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.5 0x0000000000000000 0x67 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.10 0x0000000000000000 0x42 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.bt_tx_gain_cal + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.bt_bb_to_index + 0x0000000000000000 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.bt_txdc_cal + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.get_bbgain_db + 0x0000000000000000 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.bt_txiq_cal + 0x0000000000000000 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.force_bttx_gain + 0x0000000000000000 0xa7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_bttx_low_power + 0x0000000000000000 0xb1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.set_tx_dig_gain + 0x0000000000000000 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.spur_cal + 0x0000000000000000 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.set_chanfreq + 0x0000000000000000 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.chip_sleep_prot_en + 0x0000000000000000 0x9e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.chip_sleep_prot_dis + 0x0000000000000000 0x35 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.chip_v7_rxmax_ext_dig + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.chip_v7_rxmax_ext + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.set_cca 0x0000000000000000 0x8e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_get_txpwr_param + 0x0000000000000000 0x81 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.target_power_backoff + 0x0000000000000000 0x37 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_set_rfrx_dcap + 0x0000000000000000 0xf0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.rx_blocking_set + 0x0000000000000000 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.rx_gain_level + 0x0000000000000000 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_rx11blr_cfg + 0x0000000000000000 0x7d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.wifi_rifs_mode_en + 0x0000000000000000 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_chan_filt_set + 0x0000000000000000 0x112 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_get_tx_rate + 0x0000000000000000 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.uart_wait_idle + 0x0000000000000000 0x3a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.bt_opt_2480 + 0x0000000000000000 0xb3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_version_print + 0x0000000000000000 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.tx_cont_en + 0x0000000000000000 0x8b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.tx_cont_dis + 0x0000000000000000 0x52 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.tx_cont_cfg + 0x0000000000000000 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_get_tx_pwr + 0x0000000000000000 0x59 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_init_pwr_print + 0x0000000000000000 0x152 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_get_rx_freq + 0x0000000000000000 0x51 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_get_most_tpw + 0x0000000000000000 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_rx_sense_set + 0x0000000000000000 0xa8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.ant_dft_cfg + 0x0000000000000000 0x33 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.ant_wifitx_cfg + 0x0000000000000000 0x5a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.ant_wifirx_cfg + 0x0000000000000000 0xc8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.ant_bttx_cfg + 0x0000000000000000 0x53 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.ant_btrx_cfg + 0x0000000000000000 0xc7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.esp_tx_state_out + 0x0000000000000000 0xfd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_chan_dump_cfg + 0x0000000000000000 0xb8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.chan14_mic_enable + 0x0000000000000000 0x71 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_get_adc_rand + 0x0000000000000000 0x198 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_close_pa + 0x0000000000000000 0xb9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.btpwr_backoff + 0x0000000000000000 0x74 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_dig_reg_backup + 0x0000000000000000 0x3c9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .bss.rfrx_dcap_enable + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .bss.rfrx_vga_lna_dcap + 0x0000000000000000 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .bss.bt_txpwr_backoff + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .bss.chan14_mic_flag + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .bss.bt_mode_wifibb + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .bss.rxmax_ext_level + 0x0000000000000000 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .iram1.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .phyiram.21.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .phyiram.22.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .phyiram.23.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .phyiram.24.literal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_index_to_txbbgain + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_txdc_cal_v70 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.txcal_debuge_mode + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_txcal_work_mode + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_get_fm_sar_dout + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_txiq_get_mis_pwr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_txiq_cover + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.rfcal_txiq + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_iq_est_enable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_iq_est_disable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_dc_iq_est + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_pbus_rx_dco_cal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.rxdc_est_min + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.pbus_rx_dco_cal_1step + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.rc_cal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.tx_cap_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_meas_tone_pwr_db + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_rfcal_pwrctrl + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_tx_pwr_backoff + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.cal_rf_ana_gain + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.tx_pwctrl_init_cal + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.tx_pwctrl_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.bt_tx_pwctrl_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.set_bt_chan_cal_interp + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.phy_set_bt_dig_gain + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_phy_get_vdd33 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.txpwr_offset + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.phy_get_bb_freqoffset + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.phy_pwdet_always_en + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.dpd_scale_set + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .text.set_bt_chan_cal_interp + 0x0000000000000000 0xcc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .text.phy_set_bt_dig_gain + 0x0000000000000000 0x4a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .text.phy_get_bb_freqoffset + 0x0000000000000000 0x87 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .text.phy_pwdet_always_en + 0x0000000000000000 0x6f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .text.dpd_scale_set + 0x0000000000000000 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.BT_tx_8m_enable + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.BT_tx_if_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.BT_init_rx_filters + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_dgmixer_fstep_250k + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_rfoffset_en + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_bb_init_cmplx + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_bb_init_cmplx_reg + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.rw_coex_on + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.force_bt_mode + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.force_wifi_mode + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.unforce_wifi_mode + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.coex_bt_high_prio + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_rxfilt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_txfilt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_cmplx_hq_wr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_cmplx_lq_wr + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_cmplx_hq_re + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_cmplx_lq_re + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.BT_tx_8m_enable + 0x0000000000000000 0x7f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.bt_dgmixer_fstep_250k + 0x0000000000000000 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.bt_rfoffset_en + 0x0000000000000000 0x47 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.rw_coex_on + 0x0000000000000000 0x90 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.force_bt_mode + 0x0000000000000000 0xf6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.bt_rxfilt + 0x0000000000000000 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.bt_txfilt + 0x0000000000000000 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.bt_cmplx_hq_wr + 0x0000000000000000 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.bt_cmplx_lq_wr + 0x0000000000000000 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.bt_cmplx_hq_re + 0x0000000000000000 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.bt_cmplx_lq_re + 0x0000000000000000 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.temprature_sens_read + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.dac_out + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.touch_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.touch_read + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.vdd33_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.get_vdd33 + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc1_read_test + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc1_amp_read_full + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.hall_sens_read_full + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.hall_sens_amp_read_full + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc2_read_test + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc1_pad_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc1_read + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc1_amp_read + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.hall_sens_read + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.hall_sens_amp_read + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc2_pad_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc2_read + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc_pad_int + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc_pad_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.dac_pad_init + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.dac_out 0x0000000000000000 0x249 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.touch_init + 0x0000000000000000 0xc2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.touch_read + 0x0000000000000000 0xba /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.vdd33_init + 0x0000000000000000 0x13b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.get_vdd33 + 0x0000000000000000 0x100 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.adc1_read_test + 0x0000000000000000 0x1f0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.adc1_amp_read_full + 0x0000000000000000 0x213 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.hall_sens_read_full + 0x0000000000000000 0xfd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.hall_sens_amp_read_full + 0x0000000000000000 0xe8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.adc2_read_test + 0x0000000000000000 0x1b0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.adc1_pad_init + 0x0000000000000000 0x6e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.adc1_read + 0x0000000000000000 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.adc1_amp_read + 0x0000000000000000 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.hall_sens_read + 0x0000000000000000 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.hall_sens_amp_read + 0x0000000000000000 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.adc2_pad_init + 0x0000000000000000 0x70 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.adc2_read + 0x0000000000000000 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.adc_pad_int + 0x0000000000000000 0x108 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.adc_pad_init + 0x0000000000000000 0x180 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.dac_pad_init + 0x0000000000000000 0xce /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .rodata.CSWTCH$24 + 0x0000000000000000 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .rodata.CSWTCH$18 + 0x0000000000000000 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.rtc_cmd_wakeup_conf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_muxsel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_funsel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_slpsel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_slpoe + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_slpie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_funie + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_pu + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_pd + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_hold + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_apbbridge_sel + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_powerup_rf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_powerdown_rf + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_get_st + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_is_st_idle + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_soc_clk_ck12m + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_init_full + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pad_gpio_wakeup + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pad_ext_wakeup + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_cmd_ext_wakeup + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_wifi_force_pd + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_sdreg_off + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_slp_prep_lite_12M + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.cfg_sdio_volt + 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .data 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .bss 0x0000000000000000 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_cmd_wakeup_conf + 0x0000000000000000 0x67 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_muxsel + 0x0000000000000000 0x29e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_funsel + 0x0000000000000000 0x292 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_slpsel + 0x0000000000000000 0x292 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_slpoe + 0x0000000000000000 0x1ba /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_slpie + 0x0000000000000000 0x28e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_funie + 0x0000000000000000 0x292 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_pu + 0x0000000000000000 0x1ba /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_pd + 0x0000000000000000 0x1ba /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_hold + 0x0000000000000000 0x266 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_apbbridge_sel + 0x0000000000000000 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_powerup_rf + 0x0000000000000000 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_powerdown_rf + 0x0000000000000000 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_get_st + 0x0000000000000000 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_is_st_idle + 0x0000000000000000 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_soc_clk_ck12m + 0x0000000000000000 0x4f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_init_full + 0x0000000000000000 0x3ba /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_pad_gpio_wakeup + 0x0000000000000000 0xd3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_pad_ext_wakeup + 0x0000000000000000 0xd7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_cmd_ext_wakeup + 0x0000000000000000 0xce /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_wifi_force_pd + 0x0000000000000000 0x68 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_sdreg_off + 0x0000000000000000 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_slp_prep_lite_12M + 0x0000000000000000 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.cfg_sdio_volt + 0x0000000000000000 0xb3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .debug_frame 0x0000000000000000 0x250 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .debug_info 0x0000000000000000 0x965 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .debug_abbrev 0x0000000000000000 0x1ac /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .debug_loc 0x0000000000000000 0x455 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .debug_aranges + 0x0000000000000000 0xd8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .debug_ranges 0x0000000000000000 0xc8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .debug_line 0x0000000000000000 0x104b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .debug_str 0x0000000000000000 0x4a2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .comment 0x0000000000000000 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_ceil.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_ceil.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_floor.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_floor.o) + .literal 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .text 0x0000000000000000 0x29 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .debug_info 0x0000000000000000 0x8ea /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .debug_abbrev 0x0000000000000000 0x1eb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .debug_loclists + 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .debug_line 0x0000000000000000 0xc6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .debug_str 0x0000000000000000 0x4a5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .debug_line_str + 0x0000000000000000 0x2c1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .literal 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .text 0x0000000000000000 0x12 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .debug_info 0x0000000000000000 0xf1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .debug_abbrev 0x0000000000000000 0xab /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .debug_line 0x0000000000000000 0x7c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .debug_str 0x0000000000000000 0xed /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .debug_line_str + 0x0000000000000000 0x262 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .rodata 0x0000000000000000 0x101 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .debug_info 0x0000000000000000 0xb9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .debug_abbrev 0x0000000000000000 0x62 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .debug_aranges + 0x0000000000000000 0x18 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .debug_line 0x0000000000000000 0x3e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .debug_str 0x0000000000000000 0xda /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .debug_line_str + 0x0000000000000000 0x1e0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .bss 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .debug_info 0x0000000000000000 0x42 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .debug_abbrev 0x0000000000000000 0x38 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .debug_aranges + 0x0000000000000000 0x18 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .debug_line 0x0000000000000000 0x3a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .debug_str 0x0000000000000000 0x4a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .debug_line_str + 0x0000000000000000 0x198 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .literal 0x0000000000000000 0x48 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .text 0x0000000000000000 0x12a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .debug_info 0x0000000000000000 0xb0a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .debug_abbrev 0x0000000000000000 0x2c6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .debug_loclists + 0x0000000000000000 0x9d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .debug_line 0x0000000000000000 0x381 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .debug_str 0x0000000000000000 0x5c4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .debug_line_str + 0x0000000000000000 0x2dd /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .literal 0x0000000000000000 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .text 0x0000000000000000 0x90 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .debug_info 0x0000000000000000 0x9d1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .debug_abbrev 0x0000000000000000 0x240 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .debug_loclists + 0x0000000000000000 0x2d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .debug_rnglists + 0x0000000000000000 0x13 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .debug_line 0x0000000000000000 0x1d8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .debug_str 0x0000000000000000 0x565 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .debug_line_str + 0x0000000000000000 0x2cc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .literal 0x0000000000000000 0x3c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .text 0x0000000000000000 0x204 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .debug_frame 0x0000000000000000 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .debug_info 0x0000000000000000 0xbe3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .debug_abbrev 0x0000000000000000 0x310 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .debug_loclists + 0x0000000000000000 0x161 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .debug_line 0x0000000000000000 0x680 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .debug_str 0x0000000000000000 0x5b9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .debug_line_str + 0x0000000000000000 0x2dd /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .literal 0x0000000000000000 0x3c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .text 0x0000000000000000 0x15a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .debug_info 0x0000000000000000 0xb98 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .debug_abbrev 0x0000000000000000 0x2a5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .debug_loclists + 0x0000000000000000 0x168 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .debug_rnglists + 0x0000000000000000 0x16 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .debug_line 0x0000000000000000 0x42e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .debug_str 0x0000000000000000 0x587 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .debug_line_str + 0x0000000000000000 0x2da /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .literal 0x0000000000000000 0x94 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .text 0x0000000000000000 0x25f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .rodata 0x0000000000000000 0x60 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_frame 0x0000000000000000 0x160 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_info 0x0000000000000000 0x1147 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_abbrev 0x0000000000000000 0x40b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_loclists + 0x0000000000000000 0xdb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_rnglists + 0x0000000000000000 0x1c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_line 0x0000000000000000 0x812 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_str 0x0000000000000000 0x7c1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_line_str + 0x0000000000000000 0x2e6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .literal 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .text 0x0000000000000000 0x5c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .debug_info 0x0000000000000000 0x988 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .debug_abbrev 0x0000000000000000 0x256 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .debug_loclists + 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .debug_line 0x0000000000000000 0x13a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .debug_str 0x0000000000000000 0x4f6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .debug_line_str + 0x0000000000000000 0x2d9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .literal 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .text 0x0000000000000000 0xa4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .debug_info 0x0000000000000000 0xa88 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .debug_abbrev 0x0000000000000000 0x284 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .debug_loclists + 0x0000000000000000 0x74 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .debug_line 0x0000000000000000 0x1ec /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .debug_str 0x0000000000000000 0x57a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .debug_line_str + 0x0000000000000000 0x2c9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .literal 0x0000000000000000 0x2c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .text 0x0000000000000000 0xc0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_info 0x0000000000000000 0xb48 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_abbrev 0x0000000000000000 0x29c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_loclists + 0x0000000000000000 0x66 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_line 0x0000000000000000 0x26c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_str 0x0000000000000000 0x5c4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_line_str + 0x0000000000000000 0x2dc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .literal 0x0000000000000000 0x38 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .text 0x0000000000000000 0x138 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .debug_info 0x0000000000000000 0xb86 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .debug_abbrev 0x0000000000000000 0x2f1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .debug_loclists + 0x0000000000000000 0x11b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .debug_rnglists + 0x0000000000000000 0x16 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .debug_line 0x0000000000000000 0x3d4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .debug_str 0x0000000000000000 0x597 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .debug_line_str + 0x0000000000000000 0x2da /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .literal 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .text 0x0000000000000000 0x29 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .debug_info 0x0000000000000000 0x93b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .debug_abbrev 0x0000000000000000 0x251 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .debug_loclists + 0x0000000000000000 0x50 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .debug_line 0x0000000000000000 0x119 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .debug_str 0x0000000000000000 0x4b0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .debug_line_str + 0x0000000000000000 0x2bf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .literal 0x0000000000000000 0x2c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .text 0x0000000000000000 0x152 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .debug_info 0x0000000000000000 0xa51 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .debug_abbrev 0x0000000000000000 0x27a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .debug_loclists + 0x0000000000000000 0xa2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .debug_line 0x0000000000000000 0x3a8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .debug_str 0x0000000000000000 0x568 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .debug_line_str + 0x0000000000000000 0x2cc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .text 0x0000000000000000 0x6f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .debug_info 0x0000000000000000 0x958 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .debug_abbrev 0x0000000000000000 0x1c7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .debug_loclists + 0x0000000000000000 0x7d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .debug_line 0x0000000000000000 0x252 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .debug_str 0x0000000000000000 0x4b8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .debug_line_str + 0x0000000000000000 0x2bf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .literal 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .text 0x0000000000000000 0xf4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .debug_info 0x0000000000000000 0xb86 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .debug_abbrev 0x0000000000000000 0x2dc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .debug_loclists + 0x0000000000000000 0x104 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .debug_rnglists + 0x0000000000000000 0x13 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .debug_line 0x0000000000000000 0x2df /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .debug_str 0x0000000000000000 0x5c3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .debug_line_str + 0x0000000000000000 0x2d6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .literal 0x0000000000000000 0x18 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime.o) + .text 0x0000000000000000 0x3a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime.o) + .rodata.str1.1 + 0x0000000000000000 0x6d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime.o) + .debug_info 0x0000000000000000 0x9c7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime.o) + .debug_abbrev 0x0000000000000000 0x23d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime.o) + .debug_loclists + 0x0000000000000000 0x2e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime.o) + .debug_rnglists + 0x0000000000000000 0x13 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime.o) + .debug_line 0x0000000000000000 0x110 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime.o) + .debug_str 0x0000000000000000 0x527 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime.o) + .debug_line_str + 0x0000000000000000 0x343 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime.o) + .literal 0x0000000000000000 0x50 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .text 0x0000000000000000 0x1c6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .debug_info 0x0000000000000000 0x24e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .debug_abbrev 0x0000000000000000 0xf7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .debug_loclists + 0x0000000000000000 0xe1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .debug_line 0x0000000000000000 0x5c2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .debug_str 0x0000000000000000 0x187 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .debug_line_str + 0x0000000000000000 0x2b2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .bss 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .debug_info 0x0000000000000000 0x80e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .debug_abbrev 0x0000000000000000 0x173 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .debug_aranges + 0x0000000000000000 0x18 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .debug_line 0x0000000000000000 0x51 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .debug_str 0x0000000000000000 0x49a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .debug_line_str + 0x0000000000000000 0x261 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .literal 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-itoa.o) + .text 0x0000000000000000 0x4c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-itoa.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-itoa.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-itoa.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-itoa.o) + .debug_info 0x0000000000000000 0x17e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-itoa.o) + .debug_abbrev 0x0000000000000000 0x119 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-itoa.o) + .debug_loclists + 0x0000000000000000 0x8d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-itoa.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-itoa.o) + .debug_line 0x0000000000000000 0x15a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-itoa.o) + .debug_str 0x0000000000000000 0xf7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-itoa.o) + .debug_line_str + 0x0000000000000000 0x1e8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-itoa.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-itoa.o) + .literal 0x0000000000000000 0x38 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .text 0x0000000000000000 0x260 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .debug_info 0x0000000000000000 0x390 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .debug_abbrev 0x0000000000000000 0x191 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .debug_loclists + 0x0000000000000000 0x117 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .debug_line 0x0000000000000000 0x676 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .debug_str 0x0000000000000000 0x221 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .debug_line_str + 0x0000000000000000 0x2cb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .text 0x0000000000000000 0x1b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .debug_info 0x0000000000000000 0x110 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .debug_abbrev 0x0000000000000000 0xb1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .debug_loclists + 0x0000000000000000 0x74 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .debug_line 0x0000000000000000 0xd0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .debug_str 0x0000000000000000 0xf0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .debug_line_str + 0x0000000000000000 0x25b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .literal 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .text 0x0000000000000000 0x4f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_info 0x0000000000000000 0x12b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_abbrev 0x0000000000000000 0x90 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_loclists + 0x0000000000000000 0x120 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_line 0x0000000000000000 0x177 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_str 0x0000000000000000 0xe0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_line_str + 0x0000000000000000 0x25b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .literal 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .text 0x0000000000000000 0x135 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .debug_line 0x0000000000000000 0x30f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .debug_line_str + 0x0000000000000000 0xd6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .debug_info 0x0000000000000000 0x31 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .debug_abbrev 0x0000000000000000 0x21 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .debug_str 0x0000000000000000 0xeb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .text 0x0000000000000000 0x41 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .debug_info 0x0000000000000000 0x10f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .debug_abbrev 0x0000000000000000 0xac /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .debug_loclists + 0x0000000000000000 0xec /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .debug_line 0x0000000000000000 0x127 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .debug_str 0x0000000000000000 0xfa /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .debug_line_str + 0x0000000000000000 0x25e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .literal 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .text 0x0000000000000000 0x74 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .debug_line 0x0000000000000000 0x146 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .debug_line_str + 0x0000000000000000 0xd6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .debug_info 0x0000000000000000 0x2f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .debug_abbrev 0x0000000000000000 0x21 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .debug_str 0x0000000000000000 0xeb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .literal 0x0000000000000000 0x54 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .text 0x0000000000000000 0x593 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .rodata 0x0000000000000000 0x60 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .debug_info 0x0000000000000000 0x4a1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .debug_abbrev 0x0000000000000000 0x20c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .debug_loclists + 0x0000000000000000 0x2d9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .debug_rnglists + 0x0000000000000000 0x17 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .debug_line 0x0000000000000000 0xcda /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .debug_str 0x0000000000000000 0x27a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .debug_line_str + 0x0000000000000000 0x2cb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .rodata 0x0000000000000000 0x60 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .debug_info 0x0000000000000000 0xad /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .debug_abbrev 0x0000000000000000 0x61 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .debug_aranges + 0x0000000000000000 0x18 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .debug_line 0x0000000000000000 0x3f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .debug_str 0x0000000000000000 0xe2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .debug_line_str + 0x0000000000000000 0x1aa /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .literal 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .text 0x0000000000000000 0x34f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .debug_frame 0x0000000000000000 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .debug_info 0x0000000000000000 0x857 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .debug_abbrev 0x0000000000000000 0x267 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .debug_loclists + 0x0000000000000000 0x52d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .debug_line 0x0000000000000000 0x92c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .debug_str 0x0000000000000000 0x13b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .debug_line_str + 0x0000000000000000 0x258 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .literal 0x0000000000000000 0x4c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .text 0x0000000000000000 0xcf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .rodata.str1.1 + 0x0000000000000000 0x6d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .debug_info 0x0000000000000000 0x99e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .debug_abbrev 0x0000000000000000 0x24c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .debug_loclists + 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .debug_rnglists + 0x0000000000000000 0x1b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .debug_line 0x0000000000000000 0x2e9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .debug_str 0x0000000000000000 0x4c4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .debug_line_str + 0x0000000000000000 0x2ca /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .literal 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-remove.o) + .text 0x0000000000000000 0x2e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-remove.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-remove.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-remove.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-remove.o) + .debug_info 0x0000000000000000 0x8be /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-remove.o) + .debug_abbrev 0x0000000000000000 0x213 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-remove.o) + .debug_loclists + 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-remove.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-remove.o) + .debug_line 0x0000000000000000 0xd3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-remove.o) + .debug_str 0x0000000000000000 0x4b6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-remove.o) + .debug_line_str + 0x0000000000000000 0x2ca /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-remove.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-remove.o) + .literal 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rename.o) + .text 0x0000000000000000 0x18 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rename.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rename.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rename.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rename.o) + .debug_info 0x0000000000000000 0x884 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rename.o) + .debug_abbrev 0x0000000000000000 0x1e2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rename.o) + .debug_loclists + 0x0000000000000000 0x1e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rename.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rename.o) + .debug_line 0x0000000000000000 0x98 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rename.o) + .debug_str 0x0000000000000000 0x4a3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rename.o) + .debug_line_str + 0x0000000000000000 0x2c2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rename.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rename.o) + .literal 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setbuf.o) + .text 0x0000000000000000 0x1b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setbuf.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setbuf.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setbuf.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setbuf.o) + .debug_info 0x0000000000000000 0x89c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setbuf.o) + .debug_abbrev 0x0000000000000000 0x1b6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setbuf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setbuf.o) + .debug_line 0x0000000000000000 0xa3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setbuf.o) + .debug_str 0x0000000000000000 0x4a2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setbuf.o) + .debug_line_str + 0x0000000000000000 0x2c2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setbuf.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setbuf.o) + .literal 0x0000000000000000 0x48 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .text 0x0000000000000000 0x1e3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .debug_info 0x0000000000000000 0xb83 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .debug_abbrev 0x0000000000000000 0x2a7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .debug_loclists + 0x0000000000000000 0x163 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .debug_rnglists + 0x0000000000000000 0x16 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .debug_line 0x0000000000000000 0x592 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .debug_str 0x0000000000000000 0x5ab /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .debug_line_str + 0x0000000000000000 0x2e0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .literal 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .text 0x0000000000000000 0xc6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .debug_frame 0x0000000000000000 0x88 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .debug_info 0x0000000000000000 0xb40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .debug_abbrev 0x0000000000000000 0x231 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .debug_loclists + 0x0000000000000000 0xaa /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .debug_line 0x0000000000000000 0x254 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .debug_str 0x0000000000000000 0x50e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .debug_line_str + 0x0000000000000000 0x2cf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .text 0x0000000000000000 0x21 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcat.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcat.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcat.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcat.o) + .debug_info 0x0000000000000000 0xe1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcat.o) + .debug_abbrev 0x0000000000000000 0x86 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcat.o) + .debug_loclists + 0x0000000000000000 0x7e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcat.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcat.o) + .debug_line 0x0000000000000000 0xda /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcat.o) + .debug_str 0x0000000000000000 0xd9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcat.o) + .debug_line_str + 0x0000000000000000 0x1ee /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcat.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcat.o) + .text 0x0000000000000000 0x1d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .debug_info 0x0000000000000000 0xf4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .debug_abbrev 0x0000000000000000 0x82 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .debug_loclists + 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .debug_line 0x0000000000000000 0xd6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .debug_str 0x0000000000000000 0xd9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .debug_line_str + 0x0000000000000000 0x1ee /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .literal 0x0000000000000000 0x1c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .text 0x0000000000000000 0x123 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .debug_line 0x0000000000000000 0x2b5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .debug_line_str + 0x0000000000000000 0xd6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .debug_info 0x0000000000000000 0x31 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .debug_abbrev 0x0000000000000000 0x21 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .debug_str 0x0000000000000000 0xeb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .literal 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .text 0x0000000000000000 0x90 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .debug_line 0x0000000000000000 0x182 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .debug_line_str + 0x0000000000000000 0xd6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .debug_info 0x0000000000000000 0x31 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .debug_abbrev 0x0000000000000000 0x21 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .debug_str 0x0000000000000000 0xeb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .text 0x0000000000000000 0x25 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_info 0x0000000000000000 0xe9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_abbrev 0x0000000000000000 0x9f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_loclists + 0x0000000000000000 0x3c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_line 0x0000000000000000 0xf9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_str 0x0000000000000000 0xe1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_line_str + 0x0000000000000000 0x25e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .literal 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .text 0x0000000000000000 0x15 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .debug_info 0x0000000000000000 0x86a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .debug_abbrev 0x0000000000000000 0x1d1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .debug_loclists + 0x0000000000000000 0x1e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .debug_line 0x0000000000000000 0x96 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .debug_str 0x0000000000000000 0x4a3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .debug_line_str + 0x0000000000000000 0x2c7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .literal 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .text 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .debug_info 0x0000000000000000 0x913 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .debug_abbrev 0x0000000000000000 0x21c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .debug_loclists + 0x0000000000000000 0x2e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .debug_line 0x0000000000000000 0xd3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .debug_str 0x0000000000000000 0x4bf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .debug_line_str + 0x0000000000000000 0x2d6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .literal 0x0000000000000000 0x10 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .text 0x0000000000000000 0x2e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .debug_info 0x0000000000000000 0x923 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .debug_abbrev 0x0000000000000000 0x21a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .debug_loclists + 0x0000000000000000 0x26 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .debug_line 0x0000000000000000 0xbf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .debug_str 0x0000000000000000 0x4d2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .debug_line_str + 0x0000000000000000 0x2d3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .literal 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcat.o) + .text 0x0000000000000000 0x52 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcat.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcat.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcat.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcat.o) + .debug_info 0x0000000000000000 0x141 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcat.o) + .debug_abbrev 0x0000000000000000 0xdb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcat.o) + .debug_loclists + 0x0000000000000000 0xa3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcat.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcat.o) + .debug_line 0x0000000000000000 0x1c7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcat.o) + .debug_str 0x0000000000000000 0xed /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcat.o) + .debug_line_str + 0x0000000000000000 0x25e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcat.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcat.o) + .literal 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .text 0x0000000000000000 0x47 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .debug_info 0x0000000000000000 0x114 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .debug_abbrev 0x0000000000000000 0xa0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .debug_loclists + 0x0000000000000000 0xf2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .debug_line 0x0000000000000000 0x15b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .debug_str 0x0000000000000000 0xe1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .debug_line_str + 0x0000000000000000 0x25e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .literal 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .text 0x0000000000000000 0x63 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .debug_line 0x0000000000000000 0x122 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .debug_line_str + 0x0000000000000000 0xd6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .debug_info 0x0000000000000000 0x2f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .debug_abbrev 0x0000000000000000 0x21 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .debug_str 0x0000000000000000 0xeb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .text 0x0000000000000000 0x3c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .debug_info 0x0000000000000000 0xde /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .debug_abbrev 0x0000000000000000 0x79 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .debug_loclists + 0x0000000000000000 0xa6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .debug_line 0x0000000000000000 0x107 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .debug_str 0x0000000000000000 0xe1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .debug_line_str + 0x0000000000000000 0x25e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .literal 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .text 0x0000000000000000 0x113 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .debug_line 0x0000000000000000 0x2a8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .debug_line_str + 0x0000000000000000 0xd7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .debug_info 0x0000000000000000 0x31 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .debug_abbrev 0x0000000000000000 0x21 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .debug_str 0x0000000000000000 0xed /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .literal 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .text 0x0000000000000000 0x18 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .debug_info 0x0000000000000000 0x88d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .debug_abbrev 0x0000000000000000 0x1e2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .debug_loclists + 0x0000000000000000 0x1e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .debug_line 0x0000000000000000 0x98 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .debug_str 0x0000000000000000 0x4ac /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .debug_line_str + 0x0000000000000000 0x2ca /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .literal 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .text 0x0000000000000000 0x41 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .debug_info 0x0000000000000000 0x90f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .debug_abbrev 0x0000000000000000 0x21f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .debug_loclists + 0x0000000000000000 0x87 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .debug_line 0x0000000000000000 0x139 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .debug_str 0x0000000000000000 0x4b9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .debug_line_str + 0x0000000000000000 0x2d9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .text 0x0000000000000000 0x1a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .debug_info 0x0000000000000000 0xe1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .debug_abbrev 0x0000000000000000 0x8d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .debug_loclists + 0x0000000000000000 0x3f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .debug_line 0x0000000000000000 0xbd /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .debug_str 0x0000000000000000 0xe7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .debug_line_str + 0x0000000000000000 0x25e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .literal 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .text 0x0000000000000000 0x2d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .debug_info 0x0000000000000000 0x112 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .debug_abbrev 0x0000000000000000 0xca /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .debug_loclists + 0x0000000000000000 0x60 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .debug_line 0x0000000000000000 0xec /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .debug_str 0x0000000000000000 0xe6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .debug_line_str + 0x0000000000000000 0x1f1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .text 0x0000000000000000 0x36 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_info 0x0000000000000000 0xef /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_abbrev 0x0000000000000000 0x9f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_loclists + 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_line 0x0000000000000000 0x134 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_str 0x0000000000000000 0xe0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_line_str + 0x0000000000000000 0x25b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .literal 0x0000000000000000 0x18 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + .text 0x0000000000000000 0x6c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + .rodata.str1.1 + 0x0000000000000000 0x6f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + .debug_info 0x0000000000000000 0x961 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + .debug_abbrev 0x0000000000000000 0x24a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + .debug_loclists + 0x0000000000000000 0x36 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + .debug_rnglists + 0x0000000000000000 0x13 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + .debug_line 0x0000000000000000 0x1f9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + .debug_str 0x0000000000000000 0x4cc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + .debug_line_str + 0x0000000000000000 0x2d9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + .literal 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok_r.o) + .text 0x0000000000000000 0x76 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok_r.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok_r.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok_r.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok_r.o) + .debug_info 0x0000000000000000 0x1a9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok_r.o) + .debug_abbrev 0x0000000000000000 0x10e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok_r.o) + .debug_loclists + 0x0000000000000000 0x10e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok_r.o) + .debug_line 0x0000000000000000 0x276 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok_r.o) + .debug_str 0x0000000000000000 0x110 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok_r.o) + .debug_line_str + 0x0000000000000000 0x1f4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok_r.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok_r.o) + .literal 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .text 0x0000000000000000 0x156 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .debug_frame 0x0000000000000000 0x70 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .debug_info 0x0000000000000000 0xe47 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .debug_abbrev 0x0000000000000000 0x323 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .debug_loclists + 0x0000000000000000 0x240 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .debug_rnglists + 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .debug_line 0x0000000000000000 0x579 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .debug_str 0x0000000000000000 0x723 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .debug_line_str + 0x0000000000000000 0x357 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .literal 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .text 0x0000000000000000 0x1a6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .debug_info 0x0000000000000000 0x298 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .debug_abbrev 0x0000000000000000 0x139 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .debug_loclists + 0x0000000000000000 0xdd /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .debug_line 0x0000000000000000 0x49f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .debug_str 0x0000000000000000 0x1b2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .debug_line_str + 0x0000000000000000 0x280 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .literal 0x0000000000000000 0x10 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .text 0x0000000000000000 0x1e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .debug_info 0x0000000000000000 0x106 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .debug_abbrev 0x0000000000000000 0xc8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .debug_line 0x0000000000000000 0x7e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .debug_str 0x0000000000000000 0x144 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .debug_line_str + 0x0000000000000000 0x1e8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .literal 0x0000000000000000 0x18 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .text 0x0000000000000000 0x31 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .debug_info 0x0000000000000000 0x889 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .debug_abbrev 0x0000000000000000 0x1d7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .debug_line 0x0000000000000000 0xac /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .debug_str 0x0000000000000000 0x4d0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .debug_line_str + 0x0000000000000000 0x2c2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .literal 0x0000000000000000 0x84 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .text 0x0000000000000000 0x3c6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .bss 0x0000000000000000 0x1a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .rodata.str1.1 + 0x0000000000000000 0x60 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .debug_info 0x0000000000000000 0xe28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .debug_abbrev 0x0000000000000000 0x2bd /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .debug_loclists + 0x0000000000000000 0x164 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .debug_line 0x0000000000000000 0x9e5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .debug_str 0x0000000000000000 0x5ec /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .debug_line_str + 0x0000000000000000 0x364 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .data 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .bss 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .rodata.str1.1 + 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .debug_info 0x0000000000000000 0xcb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .debug_abbrev 0x0000000000000000 0x5e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .debug_aranges + 0x0000000000000000 0x18 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .debug_line 0x0000000000000000 0x3e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .debug_str 0x0000000000000000 0xee /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .debug_line_str + 0x0000000000000000 0x1db /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .literal 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-utoa.o) + .text 0x0000000000000000 0x78 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-utoa.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-utoa.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-utoa.o) + .rodata.str1.1 + 0x0000000000000000 0x25 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-utoa.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-utoa.o) + .debug_info 0x0000000000000000 0x1cf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-utoa.o) + .debug_abbrev 0x0000000000000000 0x113 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-utoa.o) + .debug_loclists + 0x0000000000000000 0xdb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-utoa.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-utoa.o) + .debug_line 0x0000000000000000 0x257 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-utoa.o) + .debug_str 0x0000000000000000 0x112 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-utoa.o) + .debug_line_str + 0x0000000000000000 0x1f3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-utoa.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-utoa.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .literal 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .text 0x0000000000000000 0xc4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_info 0x0000000000000000 0xa28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_abbrev 0x0000000000000000 0x27d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_loclists + 0x0000000000000000 0x92 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_rnglists + 0x0000000000000000 0x13 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_line 0x0000000000000000 0x2c9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_str 0x0000000000000000 0x516 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_line_str + 0x0000000000000000 0x2c6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .text 0x0000000000000000 0xd /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .debug_info 0x0000000000000000 0xfc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .debug_abbrev 0x0000000000000000 0xc1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .debug_loclists + 0x0000000000000000 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .debug_line 0x0000000000000000 0x99 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .debug_str 0x0000000000000000 0xe3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .debug_line_str + 0x0000000000000000 0x1e5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .literal 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .text 0x0000000000000000 0x90 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .debug_info 0x0000000000000000 0x9a4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .debug_abbrev 0x0000000000000000 0x245 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .debug_loclists + 0x0000000000000000 0xa0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .debug_line 0x0000000000000000 0x229 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .debug_str 0x0000000000000000 0x4eb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .debug_line_str + 0x0000000000000000 0x2e0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .literal 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .text 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .data 0x0000000000000000 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .debug_info 0x0000000000000000 0x170 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .debug_abbrev 0x0000000000000000 0xb7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .debug_line 0x0000000000000000 0x74 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .debug_str 0x0000000000000000 0x162 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .debug_line_str + 0x0000000000000000 0x26c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace_l.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace_l.o) + .text 0x0000000000000000 0x7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lnumeric.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lnumeric.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lnumeric.o) + .bss 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_nan.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_nan.o) + .literal 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .text 0x0000000000000000 0xa0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .debug_info 0x0000000000000000 0x10e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .debug_abbrev 0x0000000000000000 0x9a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .debug_loclists + 0x0000000000000000 0xf2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .debug_line 0x0000000000000000 0x264 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .debug_str 0x0000000000000000 0xe9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .debug_line_str + 0x0000000000000000 0x1e7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .literal 0x0000000000000000 0x1c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .text 0x0000000000000000 0xc2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .debug_info 0x0000000000000000 0xa11 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .debug_abbrev 0x0000000000000000 0x25a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .debug_loclists + 0x0000000000000000 0x5a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .debug_line 0x0000000000000000 0x2db /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .debug_str 0x0000000000000000 0x512 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .debug_line_str + 0x0000000000000000 0x2ea /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .literal 0x0000000000000000 0x154 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .text 0x0000000000000000 0x242 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .rodata.str1.1 + 0x0000000000000000 0x697 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .rodata 0x0000000000000000 0x23c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .debug_frame 0x0000000000000000 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .debug_info 0x0000000000000000 0x980 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .debug_abbrev 0x0000000000000000 0x22e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .debug_loclists + 0x0000000000000000 0x4a0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .debug_line 0x0000000000000000 0xaa0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .debug_str 0x0000000000000000 0x4ee /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .debug_line_str + 0x0000000000000000 0x2d7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .literal 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .text 0x0000000000000000 0x132 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .debug_frame 0x0000000000000000 0x70 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .debug_info 0x0000000000000000 0xdc1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .debug_abbrev 0x0000000000000000 0x2e6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .debug_loclists + 0x0000000000000000 0x1fd /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .debug_line 0x0000000000000000 0x4fc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .debug_str 0x0000000000000000 0x71f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .debug_line_str + 0x0000000000000000 0x352 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .text 0x0000000000000000 0x7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .debug_frame 0x0000000000000000 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .debug_info 0x0000000000000000 0x88 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .debug_abbrev 0x0000000000000000 0x77 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .debug_loclists + 0x0000000000000000 0x1e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .debug_line 0x0000000000000000 0x7b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .debug_str 0x0000000000000000 0x68 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .debug_line_str + 0x0000000000000000 0x19b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .literal 0x0000000000000000 0x3c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .text 0x0000000000000000 0x20c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .debug_frame 0x0000000000000000 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .debug_info 0x0000000000000000 0xbb6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .debug_abbrev 0x0000000000000000 0x2d9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .debug_loclists + 0x0000000000000000 0x17e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .debug_rnglists + 0x0000000000000000 0x17 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .debug_line 0x0000000000000000 0x6ba /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .debug_str 0x0000000000000000 0x5a4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .debug_line_str + 0x0000000000000000 0x2de /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .literal 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .text 0x0000000000000000 0x41 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .debug_info 0x0000000000000000 0xbb3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .debug_abbrev 0x0000000000000000 0x241 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .debug_loclists + 0x0000000000000000 0x61 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .debug_line 0x0000000000000000 0x17f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .debug_str 0x0000000000000000 0x6ce /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .debug_line_str + 0x0000000000000000 0x343 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .literal 0x0000000000000000 0x10 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .text 0x0000000000000000 0x1e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .debug_frame 0x0000000000000000 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .debug_info 0x0000000000000000 0x88a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .debug_abbrev 0x0000000000000000 0x1e4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .debug_line 0x0000000000000000 0xaa /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .debug_str 0x0000000000000000 0x516 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .debug_line_str + 0x0000000000000000 0x2cb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .comment 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .literal 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfdi.o) + .text 0x0000000000000000 0x6c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfdi.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfdi.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfdi.o) + .debug_line 0x0000000000000000 0x135 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfdi.o) + .debug_line_str + 0x0000000000000000 0xc5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfdi.o) + .debug_info 0x0000000000000000 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfdi.o) + .debug_abbrev 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfdi.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfdi.o) + .debug_str 0x0000000000000000 0xd3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfdi.o) + .text 0x0000000000000000 0x81 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdidf.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdidf.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdidf.o) + .debug_line 0x0000000000000000 0x159 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdidf.o) + .debug_line_str + 0x0000000000000000 0xc5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdidf.o) + .debug_info 0x0000000000000000 0x25 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdidf.o) + .debug_abbrev 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdidf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdidf.o) + .debug_str 0x0000000000000000 0xd3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdidf.o) + .literal 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + .text 0x0000000000000000 0xa4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + .debug_line 0x0000000000000000 0x195 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + .debug_line_str + 0x0000000000000000 0xc5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + .debug_info 0x0000000000000000 0x25 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + .debug_abbrev 0x0000000000000000 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + .debug_str 0x0000000000000000 0xd3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + .literal 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtend.o + .init.literal 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtend.o + .text 0x0000000000000000 0x16 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtend.o + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtend.o + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtend.o + .ctors 0x0000000000000000 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtend.o + .tm_clone_table + 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtend.o + .init 0x0000000000000000 0x6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtend.o + .text 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtn.o + .data 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtn.o + .bss 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtn.o + .init 0x0000000000000000 0x2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtn.o + .fini 0x0000000000000000 0x2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtn.o + +Memory Configuration + +Name Origin Length Attributes +iram0_0_seg 0x0000000040080000 0x0000000000020000 xr +iram0_2_seg 0x00000000400d0020 0x000000000032ffe0 xr +dram0_0_seg 0x000000003ffbdb5c 0x000000000001e6a4 rw +drom0_0_seg 0x000000003f400020 0x00000000003fffe0 r +rtc_iram_seg 0x00000000400c0000 0x0000000000002000 xrw +rtc_data_seg 0x000000003ff80000 0x0000000000002000 rw +rtc_fast_reserved_seg 0x000000003ff82000 0x0000000000000000 rw +rtc_slow_seg 0x0000000050000000 0x0000000000001fe8 rw +rtc_slow_reserved_seg 0x0000000050001fe8 0x0000000000000018 rw +extern_ram_seg 0x000000003f800000 0x0000000000400000 xrw +*default* 0x0000000000000000 0xffffffffffffffff + +Linker script and memory map + +LOAD /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o +LOAD /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crti.o +LOAD /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtbegin.o + 0x0000000000000000 IDF_TARGET_ESP32 = 0x0 +LOAD CMakeFiles/wifi_prov_mgr.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/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/esp_mm/libesp_mm.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/bt/libbt.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/espressif__qrcode/libespressif__qrcode.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/bt/libbt.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a +LOAD esp-idf/console/libconsole.a +LOAD esp-idf/protobuf-c/libprotobuf-c.a +LOAD esp-idf/json/libjson.a +LOAD esp-idf/espressif__qrcode/libespressif__qrcode.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_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/esp_mm/libesp_mm.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 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD /home/djordje/Data/Documents/Espressif/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/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/esp_mm/libesp_mm.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 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD /home/djordje/Data/Documents/Espressif/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/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/esp_mm/libesp_mm.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 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD /home/djordje/Data/Documents/Espressif/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/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/esp_mm/libesp_mm.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 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD /home/djordje/Data/Documents/Espressif/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/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/esp_mm/libesp_mm.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 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libwapi.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a +LOAD esp-idf/newlib/libnewlib.a +LOAD /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a +LOAD esp-idf/pthread/libpthread.a +LOAD /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a +LOAD esp-idf/cxx/libcxx.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a +LOAD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a +LOAD /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a +LOAD /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a +LOAD /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a +LOAD /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a +LOAD /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a +LOAD /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libnosys.a +LOAD /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a +LOAD /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a +LOAD /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtend.o +LOAD /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtn.o + 0x000000003ff40000 PROVIDE (UART0 = 0x3ff40000) + 0x000000003ff42000 PROVIDE (SPI1 = 0x3ff42000) + 0x000000003ff43000 PROVIDE (SPI0 = 0x3ff43000) + 0x000000003ff44000 PROVIDE (GPIO = 0x3ff44000) + [!provide] PROVIDE (SDM = 0x3ff44f00) + 0x000000003ff48000 PROVIDE (RTCCNTL = 0x3ff48000) + 0x000000003ff48400 PROVIDE (RTCIO = 0x3ff48400) + 0x000000003ff48800 PROVIDE (SENS = 0x3ff48800) + [!provide] PROVIDE (HINF = 0x3ff4b000) + [!provide] PROVIDE (UHCI1 = 0x3ff4c000) + [!provide] PROVIDE (I2S0 = 0x3ff4f000) + 0x000000003ff50000 PROVIDE (UART1 = 0x3ff50000) + [!provide] PROVIDE (I2C0 = 0x3ff53000) + [!provide] PROVIDE (UHCI0 = 0x3ff54000) + [!provide] PROVIDE (HOST = 0x3ff55000) + [!provide] PROVIDE (RMT = 0x3ff56000) + [!provide] PROVIDE (RMTMEM = 0x3ff56800) + [!provide] PROVIDE (PCNT = 0x3ff57000) + [!provide] PROVIDE (SLC = 0x3ff58000) + [!provide] PROVIDE (LEDC = 0x3ff59000) + 0x000000003ff5a000 PROVIDE (EFUSE = 0x3ff5a000) + [!provide] PROVIDE (MCPWM0 = 0x3ff5e000) + 0x000000003ff5f000 PROVIDE (TIMERG0 = 0x3ff5f000) + 0x000000003ff60000 PROVIDE (TIMERG1 = 0x3ff60000) + 0x000000003ff64000 PROVIDE (SPI2 = 0x3ff64000) + 0x000000003ff65000 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) + 0x000000003ff6e000 PROVIDE (UART2 = 0x3ff6e000) + [!provide] PROVIDE (Add2SelfBigHex256 = 0x40015b7c) + [!provide] PROVIDE (AddBigHex256 = 0x40015b28) + 0x0000000040015c98 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) + 0x0000000040010004 PROVIDE (btdm_r_btdm_option_data_p_get = 0x40010004) + 0x0000000040010078 PROVIDE (btdm_r_btdm_rom_version_get = 0x40010078) + [!provide] PROVIDE (btdm_r_data_init = 0x4001002c) + 0x0000000040054298 PROVIDE (btdm_r_import_rf_phy_func_p_get = 0x40054298) + 0x0000000040019af0 PROVIDE (btdm_r_ip_func_p_get = 0x40019af0) + [!provide] PROVIDE (btdm_r_ip_func_p_set = 0x40019afc) + 0x000000004005427c PROVIDE (btdm_r_modules_func_p_get = 0x4005427c) + [!provide] PROVIDE (btdm_r_modules_func_p_set = 0x40054270) + 0x0000000040054288 PROVIDE (btdm_r_plf_func_p_set = 0x40054288) + 0x000000003ffb8bd4 PROVIDE (bt_util_buf_env = 0x3ffb8bd4) + 0x00000000400095e0 PROVIDE (cache_flash_mmu_set_rom = 0x400095e0) + 0x0000000040009a14 PROVIDE (Cache_Flush_rom = 0x40009a14) + 0x0000000040009ab8 PROVIDE (Cache_Read_Disable_rom = 0x40009ab8) + 0x0000000040009a84 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) + 0x000000003ffae704 PROVIDE (co_default_bdaddr = 0x3ffae704) + 0x000000003ffb80e0 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) + 0x000000004005cfec 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) + 0x000000004000d4f4 PROVIDE (_data_start_btdm_rom = 0x4000d4f4) + 0x000000003ffae6e0 PROVIDE (_data_start_btdm = 0x3ffae6e0) + 0x000000003ffaff10 PROVIDE (_data_end_btdm = 0x3ffaff10) + [!provide] PROVIDE (_bss_start_btdm = 0x3ffb8000) + [!provide] PROVIDE (_bss_end_btdm = 0x3ffbff70) + [!provide] PROVIDE (dbg_default_handler = 0x3ff97218) + 0x000000003ff97220 PROVIDE (dbg_default_state = 0x3ff97220) + 0x000000003ffb8d5d 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) + 0x000000003ffae290 PROVIDE (g_rom_spiflash_dummy_len_plus = 0x3ffae290) + 0x000000003ffb8d60 PROVIDE (ecc_env = 0x3ffb8d60) + [!provide] PROVIDE (ecc_Jacobian_InfinityPoint256 = 0x3ff972e8) + 0x000000003ffb8d74 PROVIDE (em_buf_env = 0x3ffb8d74) + 0x000000004005d144 PROVIDE (esp_crc8 = 0x4005d144) + [!provide] PROVIDE (_etext = 0x4000d66c) + [!provide] PROVIDE (ets_readySet_ = 0x3ffe01f0) + [!provide] PROVIDE (ets_startup_callback = 0x3ffe0404) + 0x000000003ff9914c PROVIDE (rwip_coex_cfg = 0x3ff9914c) + 0x000000003ff99159 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) + 0x000000003ffae270 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) + 0x000000003ffb9350 PROVIDE (hci_env = 0x3ffb9350) + 0x000000003ffb8bcc 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) + 0x000000003ffb9340 PROVIDE (hci_fc_env = 0x3ffb9340) + [!provide] PROVIDE (jd_decomp = 0x400613e8) + [!provide] PROVIDE (jd_prepare = 0x40060fa8) + 0x000000003ffb93cc PROVIDE (ke_env = 0x3ffb93cc) + 0x000000004001a430 PROVIDE (ke_handler_search = 0x4001a430) + 0x000000003ffb81d4 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) + 0x000000004002f494 PROVIDE (lc_default_state_tab_p_get = 0x4002f494) + 0x000000003ffb94ec PROVIDE (lc_env = 0x3ffb94ec) + 0x000000004002f488 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) + 0x000000003ffb9510 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) + 0x0000000040046058 PROVIDE (llc_default_state_tab_p_get = 0x40046058) + 0x000000003ffb96d0 PROVIDE (llc_env = 0x3ffb96d0) + [!provide] PROVIDE (llc_hci_acl_data_tx_handler = 0x40042398) + 0x0000000040042358 PROVIDE (llc_hci_cmd_handler_tab_p_get = 0x40042358) + [!provide] PROVIDE (llc_hci_command_handler = 0x40042360) + 0x0000000040043f64 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) + 0x00000000400466b4 PROVIDE (lld_evt_deferred_elt_push = 0x400466b4) + 0x00000000400466dc PROVIDE (lld_evt_deferred_elt_pop = 0x400466dc) + [!provide] PROVIDE (lld_evt_winsize_change = 0x40046730) + [!provide] PROVIDE (lld_evt_rxwin_compute = 0x400467c8) + 0x0000000040046818 PROVIDE (lld_evt_slave_time_compute = 0x40046818) + 0x000000003ffb9704 PROVIDE (lld_evt_env = 0x3ffb9704) + 0x00000000400468e4 PROVIDE (lld_evt_elt_wait_get = 0x400468e4) + 0x000000004004692c PROVIDE (lld_evt_get_next_free_slot = 0x4004692c) + [!provide] PROVIDE (lld_pdu_adv_pk_desc_tab = 0x3ff98c70) + 0x000000003ff98b68 PROVIDE (lld_pdu_llcp_pk_desc_tab = 0x3ff98b68) + 0x000000004004a760 PROVIDE (lld_pdu_tx_flush_list = 0x4004a760) + 0x000000004004ab14 PROVIDE (lld_pdu_pack = 0x4004ab14) + 0x000000003ff98d8a PROVIDE (LLM_AA_CT1 = 0x3ff98d8a) + 0x000000003ff98d88 PROVIDE (LLM_AA_CT2 = 0x3ff98d88) + [!provide] PROVIDE (llm_default_handler = 0x3ff98d80) + 0x000000004004e718 PROVIDE (llm_default_state_tab_p_get = 0x4004e718) + 0x000000004004c920 PROVIDE (llm_hci_cmd_handler_tab_p_get = 0x4004c920) + 0x000000003ffb976c 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) + 0x0000000040054268 PROVIDE (lm_default_state_tab_p_get = 0x40054268) + 0x000000003ffb9860 PROVIDE (lm_env = 0x3ffb9860) + 0x000000004005425c 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) + [!provide] PROVIDE (mmu_init = 0x400095a4) + [!provide] PROVIDE (MultiplyBigHexByUint32_256 = 0x40016214) + 0x00000000400160b8 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) + 0x000000003ff971f8 PROVIDE (one_bits = 0x3ff971f8) + 0x0000000040004100 PROVIDE (phy_get_romfuncs = 0x40004100) + [!provide] PROVIDE (_Pri_4_HandlerAddress = 0x3ffe0648) + [!provide] PROVIDE (_Pri_5_HandlerAddress = 0x3ffe064c) + 0x000000003ffae6e0 PROVIDE (r_btdm_option_data = 0x3ffae6e0) + 0x0000000040010218 PROVIDE (r_bt_util_buf_acl_rx_alloc = 0x40010218) + 0x0000000040010234 PROVIDE (r_bt_util_buf_acl_rx_free = 0x40010234) + 0x0000000040010268 PROVIDE (r_bt_util_buf_acl_tx_alloc = 0x40010268) + 0x0000000040010280 PROVIDE (r_bt_util_buf_acl_tx_free = 0x40010280) + [!provide] PROVIDE (r_bt_util_buf_init = 0x400100e4) + 0x00000000400101d0 PROVIDE (r_bt_util_buf_lmp_tx_alloc = 0x400101d0) + 0x00000000400101ec 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) + 0x0000000040011dc0 PROVIDE (lm_n192_mod_mul = 0x40011dc0) + 0x0000000040011e9c PROVIDE (lm_n192_mod_add = 0x40011e9c) + 0x0000000040011eec 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) + 0x0000000040014e9c PROVIDE (ea_conflict_check = 0x40014e9c) + 0x0000000040014f88 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) + 0x0000000040015894 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) + 0x0000000040016804 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) + 0x0000000040018454 PROVIDE (r_hci_look_for_cmd_desc = 0x40018454) + 0x00000000400184c4 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) + 0x00000000400185bc 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) + 0x000000004001cd54 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) + 0x000000004001c948 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) + 0x000000004001c99c 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) + 0x000000004001ca28 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) + 0x000000004002e4c8 PROVIDE (lc_set_encap_pdu_data_p192 = 0x4002e4c8) + 0x000000004002e454 PROVIDE (lc_set_encap_pdu_data_p256 = 0x4002e454) + 0x0000000040023420 PROVIDE (lm_get_auth_method = 0x40023420) + 0x0000000040027290 PROVIDE (lmp_accepted_ext_handler = 0x40027290) + [!provide] PROVIDE (lmp_not_accepted_ext_handler = 0x40029c54) + 0x0000000040027468 PROVIDE (lmp_clk_adj_handler = 0x40027468) + 0x00000000400274f4 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) + 0x000000004002751c PROVIDE (lmp_clk_adj_req_handler = 0x4002751c) + [!provide] PROVIDE (lmp_feats_res_ext_handler = 0x4002cac4) + 0x000000004002ccb0 PROVIDE (lmp_feats_req_ext_handler = 0x4002ccb0) + 0x0000000040027574 PROVIDE (lmp_pkt_type_tbl_req_handler = 0x40027574) + 0x0000000040027610 PROVIDE (lmp_esco_link_req_handler = 0x40027610) + 0x00000000400276e8 PROVIDE (lmp_rmv_esco_link_req_handler = 0x400276e8) + [!provide] PROVIDE (lmp_ch_class_req_handler = 0x40027730) + 0x000000004002ca18 PROVIDE (lmp_ch_class_handler = 0x4002ca18) + 0x000000004002780c PROVIDE (lmp_ssr_req_handler = 0x4002780c) + 0x0000000040027900 PROVIDE (lmp_ssr_res_handler = 0x40027900) + 0x00000000400279a4 PROVIDE (lmp_pause_enc_aes_req_handler = 0x400279a4) + 0x000000004002df90 PROVIDE (lmp_pause_enc_req_handler = 0x4002df90) + 0x000000004002e084 PROVIDE (lmp_resume_enc_req_handler = 0x4002e084) + 0x0000000040027a74 PROVIDE (lmp_num_comparison_fail_handler = 0x40027a74) + 0x0000000040027aec PROVIDE (lmp_passkey_fail_handler = 0x40027aec) + 0x000000004002c5c8 PROVIDE (lmp_keypress_notif_handler = 0x4002c5c8) + 0x00000000400263bc PROVIDE (lmp_pwr_ctrl_req_handler = 0x400263bc) + 0x0000000040026480 PROVIDE (lmp_pwr_ctrl_res_handler = 0x40026480) + 0x0000000040026548 PROVIDE (lmp_auto_rate_handler = 0x40026548) + 0x000000004002657c PROVIDE (lmp_pref_rate_handler = 0x4002657c) + 0x0000000040025050 PROVIDE (lmp_name_req_handler = 0x40025050) + 0x00000000400250bc PROVIDE (lmp_name_res_handler = 0x400250bc) + [!provide] PROVIDE (lmp_not_accepted_handler = 0x400251d0) + 0x000000004002e894 PROVIDE (lmp_accepted_handler = 0x4002e894) + 0x0000000040025a44 PROVIDE (lmp_clk_off_req_handler = 0x40025a44) + 0x0000000040025ab8 PROVIDE (lmp_clk_off_res_handler = 0x40025ab8) + 0x0000000040025b74 PROVIDE (lmp_detach_handler = 0x40025b74) + 0x000000004002b6b0 PROVIDE (lmp_tempkey_handler = 0x4002b6b0) + 0x000000004002b74c PROVIDE (lmp_temprand_handler = 0x4002b74c) + 0x000000004002b840 PROVIDE (lmp_sres_handler = 0x4002b840) + 0x000000004002bda0 PROVIDE (lmp_aurand_handler = 0x4002bda0) + 0x000000004002c13c PROVIDE (lmp_unitkey_handler = 0x4002c13c) + [!provide] PROVIDE (lmp_combkey_handler = 0x4002c234) + 0x000000004002c414 PROVIDE (lmp_inrand_handler = 0x4002c414) + 0x0000000040027b84 PROVIDE (lmp_oob_fail_handler = 0x40027b84) + 0x0000000040027c08 PROVIDE (lmp_ping_req_handler = 0x40027c08) + 0x0000000040027c5c PROVIDE (lmp_ping_res_handler = 0x40027c5c) + 0x0000000040025c60 PROVIDE (lmp_enc_mode_req_handler = 0x40025c60) + [!provide] PROVIDE (lmp_enc_key_size_req_handler = 0x40025e54) + 0x0000000040025f84 PROVIDE (lmp_switch_req_handler = 0x40025f84) + 0x000000004002e124 PROVIDE (lmp_start_enc_req_handler = 0x4002e124) + 0x000000004002de30 PROVIDE (lmp_stop_enc_req_handler = 0x4002de30) + [!provide] PROVIDE (lmp_sniff_req_handler = 0x400260c8) + [!provide] PROVIDE (lmp_unsniff_req_handler = 0x400261e0) + 0x000000004002629c PROVIDE (lmp_incr_pwr_req_handler = 0x4002629c) + 0x00000000400262f8 PROVIDE (lmp_decr_pwr_req_handler = 0x400262f8) + 0x0000000040026354 PROVIDE (lmp_max_pwr_handler = 0x40026354) + 0x0000000040026388 PROVIDE (lmp_min_pwr_handler = 0x40026388) + 0x00000000400265f0 PROVIDE (lmp_ver_req_handler = 0x400265f0) + 0x0000000040026670 PROVIDE (lmp_ver_res_handler = 0x40026670) + 0x0000000040026790 PROVIDE (lmp_qos_handler = 0x40026790) + 0x0000000040026844 PROVIDE (lmp_qos_req_handler = 0x40026844) + 0x0000000040026930 PROVIDE (lmp_sco_link_req_handler = 0x40026930) + 0x0000000040026a10 PROVIDE (lmp_rmv_sco_link_req_handler = 0x40026a10) + 0x0000000040026a54 PROVIDE (lmp_max_slot_handler = 0x40026a54) + 0x0000000040026aac PROVIDE (lmp_max_slot_req_handler = 0x40026aac) + 0x0000000040026b54 PROVIDE (lmp_timing_accu_req_handler = 0x40026b54) + 0x0000000040026bcc PROVIDE (lmp_timing_accu_res_handler = 0x40026bcc) + 0x0000000040026c84 PROVIDE (lmp_setup_cmp_handler = 0x40026c84) + 0x000000004002b548 PROVIDE (lmp_feats_res_handler = 0x4002b548) + 0x000000004002b620 PROVIDE (lmp_feats_req_handler = 0x4002b620) + 0x000000004002b3d8 PROVIDE (lmp_host_con_req_handler = 0x4002b3d8) + 0x000000004002b4c4 PROVIDE (lmp_use_semi_perm_key_handler = 0x4002b4c4) + 0x0000000040026cc8 PROVIDE (lmp_slot_off_handler = 0x40026cc8) + 0x0000000040026d0c PROVIDE (lmp_page_mode_req_handler = 0x40026d0c) + 0x0000000040026d4c PROVIDE (lmp_page_scan_mode_req_handler = 0x40026d4c) + 0x0000000040026d94 PROVIDE (lmp_supv_to_handler = 0x40026d94) + 0x0000000040026e7c PROVIDE (lmp_test_activate_handler = 0x40026e7c) + 0x0000000040026ee4 PROVIDE (lmp_test_ctrl_handler = 0x40026ee4) + 0x0000000040027038 PROVIDE (lmp_enc_key_size_mask_req_handler = 0x40027038) + 0x00000000400270a4 PROVIDE (lmp_enc_key_size_mask_res_handler = 0x400270a4) + [!provide] PROVIDE (lmp_set_afh_handler = 0x4002b2e4) + 0x0000000040027120 PROVIDE (lmp_encaps_hdr_handler = 0x40027120) + [!provide] PROVIDE (lmp_encaps_payl_handler = 0x4002e590) + 0x000000004002acf0 PROVIDE (lmp_sp_nb_handler = 0x4002acf0) + 0x000000004002b170 PROVIDE (lmp_sp_cfm_handler = 0x4002b170) + 0x000000004002ab48 PROVIDE (lmp_dhkey_chk_handler = 0x4002ab48) + [!provide] PROVIDE (lmp_pause_enc_aes_req_handler = 0x400279a4) + 0x000000004002c670 PROVIDE (lmp_io_cap_res_handler = 0x4002c670) + 0x000000004002c7a4 PROVIDE (lmp_io_cap_req_handler = 0x4002c7a4) + 0x000000004002cec4 PROVIDE (lc_cmd_cmp_bd_addr_send = 0x4002cec4) + 0x000000004002fb40 PROVIDE (ld_acl_tx_packet_type_select = 0x4002fb40) + 0x0000000040033268 PROVIDE (ld_acl_sched = 0x40033268) + 0x000000004003340c PROVIDE (ld_acl_sniff_sched = 0x4003340c) + 0x000000004003274c PROVIDE (ld_acl_rx = 0x4003274c) + 0x000000004002ffdc PROVIDE (ld_acl_tx = 0x4002ffdc) + 0x000000004002fbec PROVIDE (ld_acl_rx_sync = 0x4002fbec) + 0x000000004002fd8c PROVIDE (ld_acl_rx_sync2 = 0x4002fd8c) + 0x000000004002fe78 PROVIDE (ld_acl_rx_no_sync = 0x4002fe78) + 0x0000000040030cf8 PROVIDE (ld_acl_clk_isr = 0x40030cf8) + 0x0000000040033bb0 PROVIDE (ld_acl_rsw_frm_cbk = 0x40033bb0) + 0x0000000040031778 PROVIDE (ld_sco_modify = 0x40031778) + 0x0000000040051838 PROVIDE (lm_cmd_cmp_send = 0x40051838) + 0x00000000400349dc PROVIDE (ld_sco_frm_cbk = 0x400349dc) + 0x000000004002fa94 PROVIDE (ld_acl_sco_rsvd_check = 0x4002fa94) + 0x000000004003482c PROVIDE (ld_acl_sniff_frm_cbk = 0x4003482c) + 0x000000004003ab48 PROVIDE (ld_inq_end = 0x4003ab48) + 0x000000004003aba4 PROVIDE (ld_inq_sched = 0x4003aba4) + 0x000000004003ae4c PROVIDE (ld_inq_frm_cbk = 0x4003ae4c) + 0x000000004003ebe4 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) + 0x000000004003617c 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) + 0x0000000040034414 PROVIDE (ld_acl_frm_cbk = 0x40034414) + 0x0000000040032bc0 PROVIDE (ld_acl_rsw_end = 0x40032bc0) + 0x0000000040033140 PROVIDE (ld_acl_end = 0x40033140) + 0x0000000040033814 PROVIDE (ld_acl_resched = 0x40033814) + 0x0000000040032050 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) + 0x000000004003c294 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) + 0x000000004003c714 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) + 0x000000004003f9c4 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) + 0x0000000040040384 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) + 0x0000000040044678 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) + 0x00000000400449ac 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) + 0x0000000040048ea0 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) + 0x0000000040046b3c 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) + 0x000000004004b414 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) + 0x0000000040049190 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) + 0x000000004004c9f8 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) + 0x000000004004ed34 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) + 0x00000000400542a0 PROVIDE (nvds_null_read = 0x400542a0) + 0x00000000400542a8 PROVIDE (nvds_null_write = 0x400542a8) + 0x00000000400542b0 PROVIDE (nvds_null_erase = 0x400542b0) + 0x00000000400542c4 PROVIDE (nvds_read = 0x400542c4) + 0x00000000400542fc PROVIDE (nvds_write = 0x400542fc) + 0x0000000040054334 PROVIDE (nvds_erase = 0x40054334) + 0x0000000040054358 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) + 0x0000000040004148 PROVIDE (rom_i2c_readReg = 0x40004148) + 0x00000000400041c0 PROVIDE (rom_i2c_readReg_Mask = 0x400041c0) + 0x00000000400041a4 PROVIDE (rom_i2c_writeReg = 0x400041a4) + 0x00000000400041fc 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) + 0x000000004000ab7c 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) + 0x0000000040055ab8 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) + 0x000000003ffbdb28 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) + 0x0000000040015e8c PROVIDE (SubtractBigHexMod256 = 0x40015e8c) + [!provide] PROVIDE (SubtractBigHexUint32_256 = 0x40015f8c) + [!provide] PROVIDE (SubtractFromSelfBigHex256 = 0x40015c20) + [!provide] PROVIDE (SubtractFromSelfBigHexSign256 = 0x40015dc8) + 0x000000003ffb8d40 PROVIDE (sw_to_hw = 0x3ffb8d40) + 0x000000003ffae020 PROVIDE (syscall_table_ptr_app = 0x3ffae020) + 0x000000003ffae024 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) + 0x000000004000bfdc PROVIDE (_xtos_set_intlevel = 0x4000bfdc) + 0x000000003ffe01e0 PROVIDE (g_ticks_per_us_pro = 0x3ffe01e0) + 0x000000003ffe40f0 PROVIDE (g_ticks_per_us_app = 0x3ffe40f0) + 0x0000000040063238 PROVIDE (esp_rom_spiflash_config_param = 0x40063238) + 0x00000000400621b0 PROVIDE (esp_rom_spiflash_read_user_cmd = 0x400621b0) + 0x0000000040062e60 PROVIDE (esp_rom_spiflash_write_encrypted_disable = 0x40062e60) + 0x0000000040062df4 PROVIDE (esp_rom_spiflash_write_encrypted_enable = 0x40062df4) + 0x0000000040062e1c PROVIDE (esp_rom_spiflash_prepare_encrypted_data = 0x40062e1c) + [!provide] PROVIDE (esp_rom_spiflash_select_qio_pins = 0x40061ddc) + [!provide] PROVIDE (esp_rom_spiflash_attach = 0x40062a6c) + 0x0000000040062bc8 PROVIDE (esp_rom_spiflash_config_clk = 0x40062bc8) + 0x000000003ffae270 PROVIDE (g_rom_spiflash_chip = 0x3ffae270) + [!provide] PROVIDE (SPI_write_enable = 0x40062320) + 0x00000000400417b4 PROVIDE (hci_le_rd_rem_used_feats_cmd_handler = 0x400417b4) + 0x0000000040043808 PROVIDE (llcp_length_req_handler = 0x40043808) + 0x0000000040043ba8 PROVIDE (llcp_unknown_rsp_handler = 0x40043ba8) + 0x000000004004291c PROVIDE (llcp_channel_map_req_handler = 0x4004291c) + 0x00000000400426f0 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) + 0x00000000400092d0 PROVIDE (uart_rx_one_char = 0x400092d0) + [!provide] PROVIDE (uart_rx_one_char_block = 0x400092a4) + [!provide] PROVIDE (uart_rx_readbuff = 0x40009394) + 0x0000000040009258 PROVIDE (uart_tx_flush = 0x40009258) + 0x0000000040009200 PROVIDE (uart_tx_one_char = 0x40009200) + [!provide] PROVIDE (uart_tx_one_char2 = 0x4000922c) + 0x0000000040009028 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) + 0x0000000040009edc PROVIDE (gpio_matrix_in = 0x40009edc) + 0x0000000040009f0c PROVIDE (gpio_matrix_out = 0x40009f0c) + 0x0000000040009fdc PROVIDE (gpio_pad_select_gpio = 0x40009fdc) + [!provide] PROVIDE (gpio_pad_set_drv = 0x4000a11c) + [!provide] PROVIDE (gpio_pad_pulldown = 0x4000a348) + 0x000000004000a22c 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) + 0x0000000040008658 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) + 0x000000004000681c PROVIDE (intr_matrix_set = 0x4000681c) + [!provide] PROVIDE (check_pos = 0x400068b8) + 0x000000004000689c 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) + 0x0000000040007d18 PROVIDE (ets_install_putc1 = 0x40007d18) + 0x0000000040007d38 PROVIDE (ets_install_putc2 = 0x40007d38) + 0x0000000040007d28 PROVIDE (ets_install_uart_printf = 0x40007d28) + 0x0000000040007d54 PROVIDE (ets_printf = 0x40007d54) + [!provide] PROVIDE (rtc_boot_control = 0x4000821c) + 0x00000000400081d4 PROVIDE (rtc_get_reset_reason = 0x400081d4) + [!provide] PROVIDE (rtc_get_wakeup_cause = 0x400081f4) + [!provide] PROVIDE (rtc_select_apb_bridge = 0x40008288) + 0x0000000040008208 PROVIDE (set_rtc_memory_crc = 0x40008208) + 0x000000004000824c PROVIDE (software_reset = 0x4000824c) + 0x0000000040008264 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) + 0x0000000040008534 PROVIDE (ets_delay_us = 0x40008534) + [!provide] PROVIDE (ets_get_cpu_frequency = 0x4000855c) + 0x0000000040008588 PROVIDE (ets_get_detected_xtal_freq = 0x40008588) + [!provide] PROVIDE (ets_get_xtal_scale = 0x4000856c) + 0x0000000040008550 PROVIDE (ets_update_cpu_frequency_rom = 0x40008550) + 0x000000003ffb8154 PROVIDE (hci_tl_env = 0x3ffb8154) + 0x000000003ffb8258 PROVIDE (ld_acl_env = 0x3ffb8258) + 0x000000003ffb80ec PROVIDE (ea_env = 0x3ffb80ec) + 0x000000003ffb81f8 PROVIDE (lc_sco_data_path_config = 0x3ffb81f8) + 0x000000003ffb81fc 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) + 0x000000003ffb8284 PROVIDE (ld_fm_env = 0x3ffb8284) + 0x000000003ffb82e4 PROVIDE (ld_inq_env = 0x3ffb82e4) + [!provide] PROVIDE (ld_iscan_env = 0x3ffb82e8) + [!provide] PROVIDE (ld_page_env = 0x3ffb82f0) + [!provide] PROVIDE (ld_pca_env = 0x3ffb82f4) + 0x000000003ffb8308 PROVIDE (ld_pscan_env = 0x3ffb8308) + 0x000000003ffb830c PROVIDE (ld_sched_env = 0x3ffb830c) + [!provide] PROVIDE (ld_sched_params = 0x3ffb96c0) + 0x000000003ffb824c PROVIDE (ld_sco_env = 0x3ffb824c) + [!provide] PROVIDE (ld_sscan_env = 0x3ffb832c) + [!provide] PROVIDE (ld_strain_env = 0x3ffb8330) + 0x000000003ffb8230 PROVIDE (LM_Sniff = 0x3ffb8230) + [!provide] PROVIDE (LM_SniffSubRate = 0x3ffb8214) + [!provide] PROVIDE (prbs_64bytes = 0x3ff98992) + 0x000000003ffb8364 PROVIDE (nvds_env = 0x3ffb8364) + 0x000000003ff9912a PROVIDE (nvds_magic_number = 0x3ff9912a) + 0x000000003ff98b58 PROVIDE (TASK_DESC_LLD = 0x3ff98b58) + [!provide] PROVIDE (ld_acl_clk_isr = 0x40030cf8) + 0x0000000040033944 PROVIDE (ld_acl_evt_canceled_cbk = 0x40033944) + 0x0000000040033870 PROVIDE (ld_acl_evt_stop_cbk = 0x40033870) + 0x0000000040030ab0 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) + 0x000000004002f270 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) + 0x000000004002859c PROVIDE (lc_pwr_decr_ind_handler = 0x4002859c) + 0x00000000400284a8 PROVIDE (lc_pwr_incr_ind_handler = 0x400284a8) + 0x0000000040028690 PROVIDE (lc_pwr_max_ind_handler = 0x40028690) + 0x000000004005cfec 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) + 0x0000000040009fdc PROVIDE (esp_rom_gpio_pad_select_gpio = gpio_pad_select_gpio) + 0x000000004000a22c 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) + 0x0000000040009edc PROVIDE (esp_rom_gpio_connect_in_signal = gpio_matrix_in) + 0x0000000040009f0c PROVIDE (esp_rom_gpio_connect_out_signal = gpio_matrix_out) + 0x000000004005d144 PROVIDE (esp_rom_efuse_mac_address_crc8 = esp_crc8) + 0x0000000040008658 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) + 0x0000000040009258 PROVIDE (esp_rom_uart_flush_tx = uart_tx_flush) + 0x0000000040009200 PROVIDE (esp_rom_uart_tx_one_char = uart_tx_one_char) + [!provide] PROVIDE (esp_rom_uart_tx_wait_idle = uart_tx_wait_idle) + 0x00000000400092d0 PROVIDE (esp_rom_uart_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_uart_rx_string = UartRxString) + 0x0000000040009028 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) + 0x000000004005da7c PROVIDE (esp_rom_md5_init = 0x4005da7c) + 0x000000004005da9c PROVIDE (esp_rom_md5_update = 0x4005da9c) + 0x000000004005db1c PROVIDE (esp_rom_md5_final = 0x4005db1c) + 0x000000004000824c PROVIDE (esp_rom_software_reset_system = software_reset) + 0x0000000040008264 PROVIDE (esp_rom_software_reset_cpu = software_reset_cpu) + 0x0000000040007d54 PROVIDE (esp_rom_printf = ets_printf) + 0x0000000040008534 PROVIDE (esp_rom_delay_us = ets_delay_us) + 0x0000000040007d28 PROVIDE (esp_rom_install_uart_printf = ets_install_uart_printf) + 0x00000000400081d4 PROVIDE (esp_rom_get_reset_reason = rtc_get_reset_reason) + 0x000000004000681c 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) + 0x0000000040004148 PROVIDE (esp_rom_regi2c_read = rom_i2c_readReg) + 0x00000000400041c0 PROVIDE (esp_rom_regi2c_read_mask = rom_i2c_readReg_Mask) + 0x00000000400041a4 PROVIDE (esp_rom_regi2c_write = rom_i2c_writeReg) + 0x00000000400041fc PROVIDE (esp_rom_regi2c_write_mask = rom_i2c_writeReg_Mask) + 0x000000004006387c __absvdi2 = 0x4006387c + 0x0000000040063868 __absvsi2 = 0x40063868 + 0x0000000040002590 __adddf3 = 0x40002590 + 0x00000000400020e8 __addsf3 = 0x400020e8 + 0x0000000040002cbc __addvdi3 = 0x40002cbc + 0x0000000040002c98 __addvsi3 = 0x40002c98 + 0x000000004000c818 __ashldi3 = 0x4000c818 + 0x000000004000c830 __ashrdi3 = 0x4000c830 + 0x0000000040064b08 __bswapdi2 = 0x40064b08 + 0x0000000040064ae0 __bswapsi2 = 0x40064ae0 + 0x0000000040064b7c __clrsbdi2 = 0x40064b7c + 0x0000000040064b64 __clrsbsi2 = 0x40064b64 + 0x000000004000ca50 __clzdi2 = 0x4000ca50 + 0x000000004000c7e8 __clzsi2 = 0x4000c7e8 + 0x0000000040063820 __cmpdi2 = 0x40063820 + 0x000000004000ca64 __ctzdi2 = 0x4000ca64 + 0x000000004000c7f0 __ctzsi2 = 0x4000c7f0 + 0x00000000400645a4 __divdc3 = 0x400645a4 + 0x0000000040002954 __divdf3 = 0x40002954 + 0x000000004000ca84 __divdi3 = 0x4000ca84 + 0x000000004000c7b8 __divsi3 = 0x4000c7b8 + 0x00000000400636a8 __eqdf2 = 0x400636a8 + 0x0000000040063374 __eqsf2 = 0x40063374 + 0x0000000040002c34 __extendsfdf2 = 0x40002c34 + 0x000000004000ca2c __ffsdi2 = 0x4000ca2c + 0x000000004000c804 __ffssi2 = 0x4000c804 + 0x0000000040002ac4 __fixdfdi = 0x40002ac4 + 0x0000000040002a78 __fixdfsi = 0x40002a78 + 0x000000004000244c __fixsfdi = 0x4000244c + 0x000000004000240c __fixsfsi = 0x4000240c + 0x0000000040002b30 __fixunsdfsi = 0x40002b30 + 0x0000000040002504 __fixunssfdi = 0x40002504 + 0x00000000400024ac __fixunssfsi = 0x400024ac + 0x000000004000c988 __floatdidf = 0x4000c988 + 0x000000004000c8c0 __floatdisf = 0x4000c8c0 + 0x000000004000c944 __floatsidf = 0x4000c944 + 0x000000004000c870 __floatsisf = 0x4000c870 + 0x000000004000c978 __floatundidf = 0x4000c978 + 0x000000004000c8b0 __floatundisf = 0x4000c8b0 + 0x000000004000c938 __floatunsidf = 0x4000c938 + 0x000000004000c864 __floatunsisf = 0x4000c864 + 0x0000000040064a70 __gcc_bcmp = 0x40064a70 + 0x0000000040063768 __gedf2 = 0x40063768 + 0x000000004006340c __gesf2 = 0x4006340c + 0x00000000400636dc __gtdf2 = 0x400636dc + 0x00000000400633a0 __gtsf2 = 0x400633a0 + 0x0000000040063704 __ledf2 = 0x40063704 + 0x00000000400633c0 __lesf2 = 0x400633c0 + 0x000000004000c84c __lshrdi3 = 0x4000c84c + 0x0000000040063790 __ltdf2 = 0x40063790 + 0x000000004006342c __ltsf2 = 0x4006342c + 0x000000004000cd4c __moddi3 = 0x4000cd4c + 0x000000004000c7c0 __modsi3 = 0x4000c7c0 + 0x0000000040063c90 __muldc3 = 0x40063c90 + 0x000000004006358c __muldf3 = 0x4006358c + 0x000000004000c9fc __muldi3 = 0x4000c9fc + 0x00000000400632c8 __mulsf3 = 0x400632c8 + 0x000000004000c7b0 __mulsi3 = 0x4000c7b0 + 0x0000000040002d78 __mulvdi3 = 0x40002d78 + 0x0000000040002d60 __mulvsi3 = 0x40002d60 + 0x00000000400636a8 __nedf2 = 0x400636a8 + 0x00000000400634a0 __negdf2 = 0x400634a0 + 0x000000004000ca14 __negdi2 = 0x4000ca14 + 0x00000000400020c0 __negsf2 = 0x400020c0 + 0x0000000040002e98 __negvdi2 = 0x40002e98 + 0x0000000040002e78 __negvsi2 = 0x40002e78 + 0x0000000040063374 __nesf2 = 0x40063374 + 0x000000003ff96544 __nsau_data = 0x3ff96544 + 0x0000000040002f3c __paritysi2 = 0x40002f3c + 0x000000003ff96544 __popcount_tab = 0x3ff96544 + 0x0000000040002ef8 __popcountdi2 = 0x40002ef8 + 0x0000000040002ed0 __popcountsi2 = 0x40002ed0 + 0x00000000400638e4 __powidf2 = 0x400638e4 + 0x00000000400026e4 __subdf3 = 0x400026e4 + 0x00000000400021d0 __subsf3 = 0x400021d0 + 0x0000000040002d20 __subvdi3 = 0x40002d20 + 0x0000000040002cf8 __subvsi3 = 0x40002cf8 + 0x0000000040002b90 __truncdfsf2 = 0x40002b90 + 0x0000000040063840 __ucmpdi2 = 0x40063840 + 0x0000000040064bec __udiv_w_sdiv = 0x40064bec + 0x000000004000cff8 __udivdi3 = 0x4000cff8 + 0x0000000040064bf4 __udivmoddi4 = 0x40064bf4 + 0x000000004000c7c8 __udivsi3 = 0x4000c7c8 + 0x000000004000d280 __umoddi3 = 0x4000d280 + 0x000000004000c7d0 __umodsi3 = 0x4000c7d0 + 0x000000004000c7d8 __umulsidi3 = 0x4000c7d8 + 0x00000000400637f4 __unorddf2 = 0x400637f4 + 0x0000000040063478 __unordsf2 = 0x40063478 + 0x000000003ff96354 _ctype_ = 0x3ff96354 + 0x000000003ff96350 __ctype_ptr__ = 0x3ff96350 + 0x000000003ffae0b4 environ = 0x3ffae0b4 + 0x000000003ffae0b0 _global_impure_ptr = 0x3ffae0b0 + 0x000000003ff96530 __mb_cur_max = 0x3ff96530 + 0x000000003ff96458 __sf_fake_stderr = 0x3ff96458 + 0x000000003ff96498 __sf_fake_stdin = 0x3ff96498 + 0x000000003ff96478 __sf_fake_stdout = 0x3ff96478 + 0x000000003ff96540 __wctomb = 0x3ff96540 + 0x000000003ffae0ac __sfp_lock = 0x3ffae0ac + 0x000000003ffae0a8 __sinit_lock = 0x3ffae0a8 + 0x000000003ffae0b8 __env_lock_object = 0x3ffae0b8 + 0x000000003ffae080 __tz_lock_object = 0x3ffae080 + 0x0000000040001778 close = 0x40001778 + 0x000000004000178c open = 0x4000178c + 0x00000000400017dc read = 0x400017dc + 0x00000000400017f4 sbrk = 0x400017f4 + 0x0000000040001808 times = 0x40001808 + 0x000000004000181c write = 0x4000181c + 0x0000000040056340 abs = 0x40056340 + 0x0000000040058ef0 __ascii_wctomb = 0x40058ef0 + 0x00000000400566c4 atoi = 0x400566c4 + 0x00000000400566d4 _atoi_r = 0x400566d4 + 0x00000000400566ec atol = 0x400566ec + 0x00000000400566fc _atol_r = 0x400566fc + 0x000000004000c1f4 bzero = 0x4000c1f4 + 0x0000000040001df8 _cleanup = 0x40001df8 + 0x0000000040001d48 _cleanup_r = 0x40001d48 + 0x0000000040000e8c creat = 0x40000e8c + 0x0000000040056348 div = 0x40056348 + 0x000000004000c728 __dummy_lock = 0x4000c728 + 0x000000004000c730 __dummy_lock_try = 0x4000c730 + 0x0000000040001fd4 __env_lock = 0x40001fd4 + 0x0000000040001fe0 __env_unlock = 0x40001fe0 + 0x00000000400020ac fclose = 0x400020ac + 0x0000000040001fec _fclose_r = 0x40001fec + 0x0000000040059394 fflush = 0x40059394 + 0x0000000040059320 _fflush_r = 0x40059320 + 0x0000000040001f44 _findenv_r = 0x40001f44 + 0x0000000040001f1c __fp_lock_all = 0x40001f1c + 0x0000000040001f30 __fp_unlock_all = 0x40001f30 + 0x0000000040058da0 __fputwc = 0x40058da0 + 0x0000000040058ea8 fputwc = 0x40058ea8 + 0x0000000040058e4c _fputwc_r = 0x40058e4c + 0x000000004000c738 _fwalk = 0x4000c738 + 0x000000004000c770 _fwalk_reent = 0x4000c770 + 0x0000000040001fbc _getenv_r = 0x40001fbc + 0x0000000040000f04 isalnum = 0x40000f04 + 0x0000000040000f18 isalpha = 0x40000f18 + 0x000000004000c20c isascii = 0x4000c20c + 0x0000000040000f2c isblank = 0x40000f2c + 0x0000000040000f50 iscntrl = 0x40000f50 + 0x0000000040000f64 isdigit = 0x40000f64 + 0x0000000040000f94 isgraph = 0x40000f94 + 0x0000000040000f78 islower = 0x40000f78 + 0x0000000040000fa8 isprint = 0x40000fa8 + 0x0000000040000fc0 ispunct = 0x40000fc0 + 0x0000000040000fd4 isspace = 0x40000fd4 + 0x0000000040000fe8 isupper = 0x40000fe8 + 0x0000000040056678 __itoa = 0x40056678 + 0x00000000400566b4 itoa = 0x400566b4 + 0x0000000040056370 labs = 0x40056370 + 0x0000000040056378 ldiv = 0x40056378 + 0x00000000400562cc longjmp = 0x400562cc + 0x000000004000c220 memccpy = 0x4000c220 + 0x000000004000c244 memchr = 0x4000c244 + 0x000000004000c260 memcmp = 0x4000c260 + 0x000000004000c2c8 memcpy = 0x4000c2c8 + 0x000000004000c3c0 memmove = 0x4000c3c0 + 0x000000004000c400 memrchr = 0x4000c400 + 0x000000004000c44c memset = 0x4000c44c + 0x0000000040056424 qsort = 0x40056424 + 0x0000000040001058 rand = 0x40001058 + 0x00000000400010d4 rand_r = 0x400010d4 + 0x000000004000c498 __sccl = 0x4000c498 + 0x00000000400011b8 __sclose = 0x400011b8 + 0x0000000040001148 __seofread = 0x40001148 + 0x0000000040056268 setjmp = 0x40056268 + 0x00000000400591e0 __sflush_r = 0x400591e0 + 0x0000000040001dc8 __sfmoreglue = 0x40001dc8 + 0x0000000040001e90 __sfp = 0x40001e90 + 0x0000000040001e08 __sfp_lock_acquire = 0x40001e08 + 0x0000000040001e14 __sfp_lock_release = 0x40001e14 + 0x0000000040001e38 __sinit = 0x40001e38 + 0x0000000040001e20 __sinit_lock_acquire = 0x40001e20 + 0x0000000040001e2c __sinit_lock_release = 0x40001e2c + 0x0000000040001004 srand = 0x40001004 + 0x0000000040001118 __sread = 0x40001118 + 0x0000000040001184 __sseek = 0x40001184 + 0x00000000400011cc strcasecmp = 0x400011cc + 0x0000000040001210 strcasestr = 0x40001210 + 0x000000004000c518 strcat = 0x4000c518 + 0x000000004000c53c strchr = 0x4000c53c + 0x0000000040001274 strcmp = 0x40001274 + 0x0000000040001398 strcoll = 0x40001398 + 0x00000000400013ac strcpy = 0x400013ac + 0x000000004000c558 strcspn = 0x4000c558 + 0x000000004000143c strdup = 0x4000143c + 0x0000000040001450 _strdup_r = 0x40001450 + 0x0000000040001470 strlcat = 0x40001470 + 0x000000004000c584 strlcpy = 0x4000c584 + 0x00000000400014c0 strlen = 0x400014c0 + 0x0000000040001524 strlwr = 0x40001524 + 0x0000000040001550 strncasecmp = 0x40001550 + 0x000000004000c5c4 strncat = 0x4000c5c4 + 0x000000004000c5f4 strncmp = 0x4000c5f4 + 0x00000000400015d4 strncpy = 0x400015d4 + 0x00000000400016b0 strndup = 0x400016b0 + 0x00000000400016c4 _strndup_r = 0x400016c4 + 0x000000004000c628 strnlen = 0x4000c628 + 0x0000000040001708 strrchr = 0x40001708 + 0x0000000040001734 strsep = 0x40001734 + 0x000000004000c648 strspn = 0x4000c648 + 0x000000004000c674 strstr = 0x4000c674 + 0x000000004000c6a8 __strtok_r = 0x4000c6a8 + 0x000000004000c70c strtok_r = 0x4000c70c + 0x000000004005681c strtol = 0x4005681c + 0x0000000040056714 _strtol_r = 0x40056714 + 0x000000004005692c strtoul = 0x4005692c + 0x0000000040056834 _strtoul_r = 0x40056834 + 0x000000004000174c strupr = 0x4000174c + 0x0000000040058f3c __submore = 0x40058f3c + 0x0000000040058cb4 __swbuf = 0x40058cb4 + 0x0000000040058bec __swbuf_r = 0x40058bec + 0x0000000040001150 __swrite = 0x40001150 + 0x000000004000c720 toascii = 0x4000c720 + 0x0000000040001868 tolower = 0x40001868 + 0x0000000040001884 toupper = 0x40001884 + 0x00000000400590f4 ungetc = 0x400590f4 + 0x0000000040058fa0 _ungetc_r = 0x40058fa0 + 0x00000000400561f0 __utoa = 0x400561f0 + 0x0000000040056258 utoa = 0x40056258 + 0x0000000040058920 wcrtomb = 0x40058920 + 0x00000000400588d8 _wcrtomb_r = 0x400588d8 + 0x0000000040058f14 _wctomb_r = 0x40058f14 + 0x0000000000000010 _esp_flash_mmap_prefetch_pad_size = 0x10 + 0x0000000000000000 _esp_memprot_prefetch_pad_size = 0x0 + 0x0000000000000000 _esp_memprot_align_size = 0x0 + 0x0000000000010000 _esp_mmu_block_size = 0x10000 + 0x000000003ffc9550 _heap_start = _heap_low_start + 0x00000000400a0000 _sram1_iram_start = 0x400a0000 + 0x0000000000000000 _sram1_iram_len = (_iram_end > _sram1_iram_start)?(_iram_end - _sram1_iram_start):0x0 + 0x0000000040000000 _heap_end = ALIGN (((0x40000000 - _sram1_iram_len) - 0x3), 0x4) + 0x000000003ff80000 _data_seg_org = ORIGIN (rtc_data_seg) + 0x0000000000000001 ASSERT ((_rodata_start == ORIGIN (default_rodata_seg)), .flash.appdesc section must be placed at the beginning of the rodata segment.) + +.rtc.text 0x00000000400c0000 0x0 + 0x00000000400c0000 . = ALIGN (0x4) + *(.rtc.literal .rtc.text .rtc.text.*) + *rtc_wake_stub*.*(.literal .text .literal.* .text.*) + 0x00000000400c0000 _rtc_text_end = ABSOLUTE (.) + +.rtc.dummy 0x000000003ff80000 0x0 + 0x000000003ff80000 _rtc_dummy_start = ABSOLUTE (.) + 0x000000003ff80000 _rtc_fast_start = ABSOLUTE (.) + 0x0000000000000000 . = SIZEOF (.rtc.text) + 0x000000003ff80000 _rtc_dummy_end = ABSOLUTE (.) + +.rtc.force_fast + 0x000000003ff80000 0x0 + 0x000000003ff80000 . = ALIGN (0x4) + 0x000000003ff80000 _rtc_force_fast_start = ABSOLUTE (.) + 0x000000003ff80000 _coredump_rtc_fast_start = ABSOLUTE (.) + *(.rtc.fast.coredump .rtc.fast.coredump.*) + 0x000000003ff80000 _coredump_rtc_fast_end = ABSOLUTE (.) + *(.rtc.force_fast .rtc.force_fast.*) + 0x000000003ff80000 . = ALIGN (0x4) + 0x000000003ff80000 _rtc_force_fast_end = ABSOLUTE (.) + +.rtc.data 0x0000000050000000 0x0 + 0x0000000050000000 _rtc_data_start = ABSOLUTE (.) + 0x0000000050000000 _coredump_rtc_start = ABSOLUTE (.) + *(.rtc.coredump .rtc.coredump.*) + 0x0000000050000000 _coredump_rtc_end = ABSOLUTE (.) + *(.rtc.data .rtc.data.*) + *(.rtc.rodata .rtc.rodata.*) + *rtc_wake_stub*.*(.data .rodata .data.* .rodata.*) + 0x0000000050000000 _rtc_data_end = ABSOLUTE (.) + +.rtc.bss 0x0000000050000000 0x0 + 0x0000000050000000 _rtc_bss_start = ABSOLUTE (.) + *rtc_wake_stub*.*(.bss .bss.*) + *rtc_wake_stub*.*(COMMON) + *(.rtc.bss) + 0x0000000050000000 _rtc_bss_end = ABSOLUTE (.) + +.rtc_noinit 0x0000000050000000 0x0 + 0x0000000050000000 . = ALIGN (0x4) + 0x0000000050000000 _rtc_noinit_start = ABSOLUTE (.) + *(.rtc_noinit .rtc_noinit.*) + 0x0000000050000000 . = ALIGN (0x4) + 0x0000000050000000 _rtc_noinit_end = ABSOLUTE (.) + +.rtc.force_slow + 0x0000000050000000 0x0 + 0x0000000050000000 . = ALIGN (0x4) + 0x0000000050000000 _rtc_force_slow_start = ABSOLUTE (.) + *(.rtc.force_slow .rtc.force_slow.*) + 0x0000000050000000 . = ALIGN (0x4) + 0x0000000050000000 _rtc_force_slow_end = ABSOLUTE (.) + +.rtc_fast_reserved + 0x000000003ff82000 0x0 + 0x000000003ff82000 . = ALIGN (0x4) + 0x000000003ff82000 _rtc_fast_reserved_start = ABSOLUTE (.) + *(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*) + 0x000000003ff82000 _rtc_fast_reserved_end = ABSOLUTE (.) + 0x0000000000000000 _rtc_fast_reserved_length = (_rtc_fast_reserved_end - _rtc_fast_reserved_start) + 0x0000000000000001 ASSERT ((_rtc_fast_reserved_length <= LENGTH (rtc_fast_reserved_seg)), RTC FAST reserved segment data does not fit.) + +.rtc_slow_reserved + 0x0000000050001fe8 0x18 + 0x0000000050001fe8 . = ALIGN (0x4) + 0x0000000050001fe8 _rtc_slow_reserved_start = ABSOLUTE (.) + *(.rtc_timer_data_in_rtc_mem .rtc_timer_data_in_rtc_mem.*) + .rtc_timer_data_in_rtc_mem + 0x0000000050001fe8 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x0000000050002000 _rtc_slow_reserved_end = ABSOLUTE (.) + 0x0000000000000018 _rtc_slow_reserved_length = (_rtc_slow_reserved_end - _rtc_slow_reserved_start) + 0x0000000000000018 _rtc_reserved_length = _rtc_slow_reserved_length + 0x0000000000000001 ASSERT ((_rtc_slow_reserved_length <= LENGTH (rtc_slow_reserved_seg)), RTC SLOW reserved segment data does not fit.) + 0x0000000000000000 _rtc_slow_length = (ORIGIN (rtc_slow_seg) == ORIGIN (rtc_data_location))?(_rtc_force_slow_end - _rtc_data_start):(_rtc_force_slow_end - _rtc_force_slow_start) + 0x0000000000000000 _rtc_fast_length = (ORIGIN (rtc_slow_seg) == ORIGIN (rtc_data_location))?(_rtc_force_fast_end - _rtc_fast_start):(_rtc_noinit_end - _rtc_fast_start) + 0x0000000000000000 ASSERT ((_rtc_slow_length <= LENGTH (rtc_slow_seg)), RTC_SLOW segment data does not fit.) + 0x0000000000000000 ASSERT ((_rtc_fast_length <= LENGTH (rtc_data_seg)), RTC_FAST segment data does not fit.) + +.iram0.vectors 0x0000000040080000 0x403 + 0x0000000040080000 _iram_start = ABSOLUTE (.) + 0x0000000040080000 _vector_table = ABSOLUTE (.) + 0x0000000000000000 . = 0x0 + *(.WindowVectors.text) + .WindowVectors.text + 0x0000000040080000 0x16a esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x0000000040080000 _WindowOverflow4 + 0x0000000040080040 _WindowUnderflow4 + 0x0000000040080050 _xt_alloca_exc + 0x0000000040080080 _WindowOverflow8 + 0x00000000400800c0 _WindowUnderflow8 + 0x0000000040080100 _WindowOverflow12 + 0x0000000040080140 _WindowUnderflow12 + 0x0000000000000180 . = 0x180 + *fill* 0x000000004008016a 0x16 + *(.Level2InterruptVector.text) + .Level2InterruptVector.text + 0x0000000040080180 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x0000000040080180 _Level2Vector + 0x00000000000001c0 . = 0x1c0 + *fill* 0x0000000040080186 0x3a + *(.Level3InterruptVector.text) + .Level3InterruptVector.text + 0x00000000400801c0 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x00000000400801c0 _Level3Vector + 0x0000000000000200 . = 0x200 + *fill* 0x00000000400801c6 0x3a + *(.Level4InterruptVector.text) + .Level4InterruptVector.text + 0x0000000040080200 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x0000000040080200 _Level4Vector + 0x0000000000000240 . = 0x240 + *fill* 0x0000000040080206 0x3a + *(.Level5InterruptVector.text) + .Level5InterruptVector.text + 0x0000000040080240 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x0000000040080240 _Level5Vector + 0x0000000000000280 . = 0x280 + *fill* 0x0000000040080246 0x3a + *(.DebugExceptionVector.text) + .DebugExceptionVector.text + 0x0000000040080280 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x0000000040080280 _DebugExceptionVector + 0x00000000000002c0 . = 0x2c0 + *fill* 0x0000000040080286 0x3a + *(.NMIExceptionVector.text) + .NMIExceptionVector.text + 0x00000000400802c0 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x00000000400802c0 _NMIExceptionVector + 0x0000000000000300 . = 0x300 + *fill* 0x00000000400802c6 0x3a + *(.KernelExceptionVector.text) + .KernelExceptionVector.text + 0x0000000040080300 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x0000000040080300 _KernelExceptionVector + 0x0000000000000340 . = 0x340 + *fill* 0x0000000040080306 0x3a + *(.UserExceptionVector.text) + .UserExceptionVector.text + 0x0000000040080340 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x0000000040080340 _UserExceptionVector + 0x00000000000003c0 . = 0x3c0 + *fill* 0x0000000040080346 0x7a + *(.DoubleExceptionVector.text) + .DoubleExceptionVector.text + 0x00000000400803c0 0xe esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x11 (size before relaxing) + 0x00000000400803c0 _DoubleExceptionVector + 0x0000000000000400 . = 0x400 + *fill* 0x00000000400803ce 0x32 + 0x0000000040080400 _invalid_pc_placeholder = ABSOLUTE (.) + *(.*Vector.literal) + .DoubleExceptionVector.literal + 0x0000000040080400 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .KernelExceptionVector.literal + 0x0000000040080400 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .UserExceptionVector.literal + 0x0000000040080400 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level2InterruptVector.literal + 0x0000000040080400 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level3InterruptVector.literal + 0x0000000040080400 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level4InterruptVector.literal + 0x0000000040080400 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level5InterruptVector.literal + 0x0000000040080400 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .NMIExceptionVector.literal + 0x0000000040080400 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + *(.UserEnter.literal) + *(.UserEnter.text) + 0x0000000040080400 . = ALIGN (0x10) + *(.entry.text) + *(.init.literal) + *(.init) + .init 0x0000000040080400 0x3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crti.o + 0x0000000040080400 _init + 0x0000000040080403 _init_end = ABSOLUTE (.) + +.iram0.text 0x0000000040080404 0x1f2bf + 0x0000000040080404 _iram_text_start = ABSOLUTE (.) + *(.iram1 .iram1.*) + .iram1.6.literal + 0x0000000040080404 0x44 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x50 (size before relaxing) + .iram1.7.literal + 0x0000000040080448 0x1c esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x40 (size before relaxing) + .iram1.8.literal + 0x0000000040080464 0x54 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xbc (size before relaxing) + .iram1.0.literal + 0x00000000400804b8 0x4 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x18 (size before relaxing) + .iram1.literal + 0x00000000400804bc 0x24 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + 0x34 (size before relaxing) + .iram1.7.literal + 0x00000000400804e0 0x18 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.2.literal + 0x00000000400804f8 0x1c esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x2c (size before relaxing) + .iram1.3.literal + 0x0000000040080514 0xc esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x38 (size before relaxing) + .iram1.5.literal + 0x0000000040080520 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x4 (size before relaxing) + .iram1.literal + 0x0000000040080520 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + 0x20 (size before relaxing) + .iram1.0.literal + 0x0000000040080524 0x4 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x1c (size before relaxing) + .iram1.1.literal + 0x0000000040080528 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .iram1.1.literal + 0x0000000040080530 0xc esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x10 (size before relaxing) + .iram1.0.literal + 0x000000004008053c 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x000000004008053c 0x4 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x8 (size before relaxing) + .iram1.2.literal + 0x0000000040080540 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x0000000040080540 0x8 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x20 (size before relaxing) + .iram1.6.literal + 0x0000000040080548 0xc esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x20 (size before relaxing) + .iram1.7.literal + 0x0000000040080554 0x2c esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x9c (size before relaxing) + .iram1.1.literal + 0x0000000040080580 0x14 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x20 (size before relaxing) + .iram1.2.literal + 0x0000000040080594 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x0000000040080594 0x30 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .iram1.3.literal + 0x00000000400805c4 0x10 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x60 (size before relaxing) + .iram1.4.literal + 0x00000000400805d4 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x8 (size before relaxing) + .iram1.literal + 0x00000000400805d4 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x00000000400805d4 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .iram1.2.literal + 0x00000000400805d8 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .iram1.3.literal + 0x00000000400805e4 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + 0x18 (size before relaxing) + .iram1.0.literal + 0x00000000400805f0 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x8 (size before relaxing) + .iram1.2.literal + 0x00000000400805f0 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x00000000400805f0 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x00000000400805f4 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x00000000400805f4 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.9.literal + 0x00000000400805f8 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.0.literal + 0x00000000400805fc 0x28 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x3c (size before relaxing) + .iram1.2.literal + 0x0000000040080624 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x1c (size before relaxing) + .iram1.13.literal + 0x0000000040080628 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x8 (size before relaxing) + .iram1.3.literal + 0x0000000040080628 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .iram1.4.literal + 0x000000004008062c 0x14 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x28 (size before relaxing) + .iram1.10.literal + 0x0000000040080640 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x20 (size before relaxing) + .iram1.11.literal + 0x000000004008064c 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x50 (size before relaxing) + .iram1.12.literal + 0x000000004008065c 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .iram1.5.literal + 0x0000000040080660 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x28 (size before relaxing) + .iram1.14.literal + 0x0000000040080664 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .iram1.0.literal + 0x0000000040080668 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x0000000040080668 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x0000000040080668 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.2.literal + 0x0000000040080670 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x10 (size before relaxing) + .iram1.3.literal + 0x0000000040080678 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x0000000040080678 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xc (size before relaxing) + .iram1.4.literal + 0x000000004008067c 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x34 (size before relaxing) + .iram1.5.literal + 0x0000000040080688 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x30 (size before relaxing) + .iram1.8.literal + 0x0000000040080688 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x0000000040080688 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x30 (size before relaxing) + .iram1.9.literal + 0x000000004008068c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x000000004008068c 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x40 (size before relaxing) + .iram1.0.literal + 0x0000000040080698 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x10 (size before relaxing) + .iram1.1.literal + 0x000000004008069c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x10 (size before relaxing) + .iram1.3.literal + 0x000000004008069c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x24 (size before relaxing) + .iram1.4.literal + 0x00000000400806a4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x24 (size before relaxing) + .iram1.5.literal + 0x00000000400806a4 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x20 (size before relaxing) + .iram1.6.literal + 0x00000000400806b4 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x10 (size before relaxing) + .iram1.7.literal + 0x00000000400806c0 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0xc (size before relaxing) + .iram1.2.literal + 0x00000000400806c0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x20 (size before relaxing) + .iram1.3.literal + 0x00000000400806c8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x20 (size before relaxing) + .iram1.4.literal + 0x00000000400806cc 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + .iram1.0.literal + 0x00000000400806d0 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + .iram1.16.literal + 0x00000000400806d4 0xc esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x10 (size before relaxing) + .iram1.4.literal + 0x00000000400806e0 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x34 (size before relaxing) + .iram1.9.literal + 0x00000000400806e8 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x28 (size before relaxing) + .iram1.1.literal + 0x00000000400806f0 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x00000000400806f0 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x00000000400806f0 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x24 (size before relaxing) + .iram1.5.literal + 0x00000000400806f8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x00000000400806f8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x00000000400806f8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.8.literal + 0x00000000400806f8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.10.literal + 0x00000000400806f8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.11.literal + 0x00000000400806f8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.13.literal + 0x00000000400806f8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.15.literal + 0x00000000400806f8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.18.literal + 0x00000000400806f8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x8 (size before relaxing) + .iram1.22.literal + 0x00000000400806f8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x00000000400806f8 0x8 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x0000000040080700 0xc esp-idf/newlib/libnewlib.a(time.c.obj) + 0x14 (size before relaxing) + .iram1.0.literal + 0x000000004008070c 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x8 (size before relaxing) + .iram1.7.literal + 0x000000004008070c 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x10 (size before relaxing) + .iram1.4.literal + 0x0000000040080710 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x18 (size before relaxing) + .iram1.8.literal + 0x0000000040080720 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x10 (size before relaxing) + .iram1.5.literal + 0x0000000040080720 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x14 (size before relaxing) + .iram1.9.literal + 0x0000000040080724 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x0000000040080728 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x1c (size before relaxing) + .iram1.2.literal + 0x0000000040080728 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x28 (size before relaxing) + .iram1.3.literal + 0x000000004008072c 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x14 (size before relaxing) + .iram1.14.literal + 0x000000004008072c 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xc (size before relaxing) + .iram1.15.literal + 0x000000004008072c 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x000000004008072c 0x4 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x8 (size before relaxing) + .iram1.3.literal + 0x0000000040080730 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .iram1.0.literal + 0x0000000040080738 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .iram1.1.literal + 0x0000000040080748 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x0000000040080748 0x20 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x48 (size before relaxing) + .iram1.4.literal + 0x0000000040080768 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x30 (size before relaxing) + .iram1.6.literal + 0x000000004008077c 0x4 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x0000000040080780 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0xc (size before relaxing) + .iram1.2.literal + 0x0000000040080780 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0xc (size before relaxing) + .iram1.3.literal + 0x0000000040080780 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x0000000040080780 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x0000000040080780 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.9.literal + 0x0000000040080780 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.8.literal + 0x0000000040080780 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.literal + 0x0000000040080780 0x18 esp-idf/bt/libbt.a(hli_vectors.S.obj) + 0x24 (size before relaxing) + .iram1.2.literal + 0x0000000040080798 0x8 esp-idf/bt/libbt.a(hli_api.c.obj) + 0xc (size before relaxing) + .iram1.4.literal + 0x00000000400807a0 0x0 esp-idf/bt/libbt.a(hli_api.c.obj) + 0x4 (size before relaxing) + .iram1.13.literal + 0x00000000400807a0 0x0 esp-idf/bt/libbt.a(hli_api.c.obj) + 0xc (size before relaxing) + .iram1.9.literal + 0x00000000400807a0 0xc esp-idf/bt/libbt.a(hli_api.c.obj) + 0x24 (size before relaxing) + .iram1.14.literal + 0x00000000400807ac 0x0 esp-idf/bt/libbt.a(hli_api.c.obj) + 0x14 (size before relaxing) + .iram1.11.literal + 0x00000000400807ac 0x4 esp-idf/bt/libbt.a(hli_api.c.obj) + 0x18 (size before relaxing) + .iram1.15.literal + 0x00000000400807b0 0x0 esp-idf/bt/libbt.a(hli_api.c.obj) + 0x4 (size before relaxing) + .iram1.25.literal + 0x00000000400807b0 0x8 esp-idf/bt/libbt.a(bt.c.obj) + .iram1.26.literal + 0x00000000400807b8 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0xc (size before relaxing) + .iram1.18.literal + 0x00000000400807b8 0xc esp-idf/bt/libbt.a(bt.c.obj) + 0x10 (size before relaxing) + .iram1.15.literal + 0x00000000400807c4 0x4 esp-idf/bt/libbt.a(bt.c.obj) + 0x10 (size before relaxing) + .iram1.12.literal + 0x00000000400807c8 0x4 esp-idf/bt/libbt.a(bt.c.obj) + 0x10 (size before relaxing) + .iram1.11.literal + 0x00000000400807cc 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x10 (size before relaxing) + .iram1.31.literal + 0x00000000400807cc 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .iram1.30.literal + 0x00000000400807cc 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .iram1.29.literal + 0x00000000400807cc 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .iram1.28.literal + 0x00000000400807cc 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .iram1.24.literal + 0x00000000400807cc 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .iram1.22.literal + 0x00000000400807cc 0xc esp-idf/bt/libbt.a(bt.c.obj) + 0x14 (size before relaxing) + .iram1.21.literal + 0x00000000400807d8 0x8 esp-idf/bt/libbt.a(bt.c.obj) + 0xc (size before relaxing) + .iram1.17.literal + 0x00000000400807e0 0x8 esp-idf/bt/libbt.a(bt.c.obj) + 0x14 (size before relaxing) + .iram1.16.literal + 0x00000000400807e8 0x4 esp-idf/bt/libbt.a(bt.c.obj) + 0x14 (size before relaxing) + .iram1.14.literal + 0x00000000400807ec 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .iram1.13.literal + 0x00000000400807ec 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .iram1.10.literal + 0x00000000400807ec 0xc esp-idf/bt/libbt.a(bt.c.obj) + 0x20 (size before relaxing) + .iram1.9.literal + 0x00000000400807f8 0x8 esp-idf/bt/libbt.a(bt.c.obj) + 0x20 (size before relaxing) + .iram1.39.literal + 0x0000000040080800 0xc esp-idf/bt/libbt.a(nimble_port.c.obj) + .iram1.40.literal + 0x000000004008080c 0x0 esp-idf/bt/libbt.a(nimble_port.c.obj) + 0x4 (size before relaxing) + .iram1.82.literal + 0x000000004008080c 0x4 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .iram1.39.literal + 0x0000000040080810 0x0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x4 (size before relaxing) + .iram1.40.literal + 0x0000000040080810 0x0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x4 (size before relaxing) + .iram1.43.literal + 0x0000000040080810 0x1c esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x24 (size before relaxing) + .iram1.46.literal + 0x000000004008082c 0xc esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x38 (size before relaxing) + .iram1.64.literal + 0x0000000040080838 0x4 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x28 (size before relaxing) + .iram1.41.literal + 0x000000004008083c 0x10 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x30 (size before relaxing) + .iram1.42.literal + 0x000000004008084c 0xc esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x2c (size before relaxing) + .iram1.44.literal + 0x0000000040080858 0x10 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x44 (size before relaxing) + .iram1.45.literal + 0x0000000040080868 0x4 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x30 (size before relaxing) + .iram1.52.literal + 0x000000004008086c 0xc esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x30 (size before relaxing) + .iram1.61.literal + 0x0000000040080878 0xc esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x30 (size before relaxing) + .iram1.48.literal + 0x0000000040080884 0xc esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x44 (size before relaxing) + .iram1.49.literal + 0x0000000040080890 0x8 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x34 (size before relaxing) + .iram1.68.literal + 0x0000000040080898 0x0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x4 (size before relaxing) + .iram1.83.literal + 0x0000000040080898 0x4 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0xc (size before relaxing) + .iram1.81.literal + 0x000000004008089c 0x0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0xc (size before relaxing) + .iram1.50.literal + 0x000000004008089c 0x8 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x74 (size before relaxing) + .iram1.51.literal + 0x00000000400808a4 0x4 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x34 (size before relaxing) + .iram1.54.literal + 0x00000000400808a8 0x0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x4 (size before relaxing) + .iram1.58.literal + 0x00000000400808a8 0x4 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x38 (size before relaxing) + .iram1.59.literal + 0x00000000400808ac 0x4 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x38 (size before relaxing) + .iram1.60.literal + 0x00000000400808b0 0x4 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x34 (size before relaxing) + .iram1.62.literal + 0x00000000400808b4 0x8 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x44 (size before relaxing) + .iram1.63.literal + 0x00000000400808bc 0x4 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x44 (size before relaxing) + .iram1.66.literal + 0x00000000400808c0 0x14 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x50 (size before relaxing) + .iram1.70.literal + 0x00000000400808d4 0x0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x4 (size before relaxing) + .iram1.67.literal + 0x00000000400808d4 0x10 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x40 (size before relaxing) + .iram1.69.literal + 0x00000000400808e4 0x0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0xc (size before relaxing) + .iram1.71.literal + 0x00000000400808e4 0x0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x4 (size before relaxing) + .iram1.73.literal + 0x00000000400808e4 0x0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0xc (size before relaxing) + .iram1.75.literal + 0x00000000400808e4 0x4 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x8 (size before relaxing) + .iram1.80.literal + 0x00000000400808e8 0x4 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x00000000400808ec 0x4 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x00000000400808f0 0x0 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + 0x8 (size before relaxing) + .iram1.4.literal + 0x00000000400808f0 0x0 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x00000000400808f0 0x4 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x8 (size before relaxing) + .iram1.literal + 0x00000000400808f4 0x40 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0xac (size before relaxing) + .iram1.1.literal + 0x0000000040080934 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x54 (size before relaxing) + .iram1.2.literal + 0x0000000040080978 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x0000000040080978 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0xc (size before relaxing) + .iram1.12.literal + 0x0000000040080980 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x1c (size before relaxing) + .iram1.6.literal + 0x0000000040080988 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.7.literal + 0x0000000040080998 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x8 (size before relaxing) + .iram1.8.literal + 0x000000004008099c 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x60 (size before relaxing) + .iram1.9.literal + 0x00000000400809d4 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x18 (size before relaxing) + .iram1.0.literal + 0x00000000400809e4 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x00000000400809e4 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x00000000400809e4 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x00000000400809e4 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x70 (size before relaxing) + .iram1.4.literal + 0x0000000040080a14 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x10 (size before relaxing) + .iram1.16.literal + 0x0000000040080a14 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x0000000040080a14 0x4 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.3.literal + 0x0000000040080a18 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + 0xc (size before relaxing) + .iram1.12.literal + 0x0000000040080a18 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x0000000040080a18 0x3c esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x70 (size before relaxing) + .iram1.13.literal + 0x0000000040080a54 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x0000000040080a54 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x20 (size before relaxing) + .iram1.8.literal + 0x0000000040080a58 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x44 (size before relaxing) + .iram1.11.literal + 0x0000000040080a68 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x24 (size before relaxing) + .iram1.14.literal + 0x0000000040080a74 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x0000000040080a74 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x0000000040080a74 0x8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x18 (size before relaxing) + .iram1.8.literal + 0x0000000040080a7c 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.10.literal + 0x0000000040080a80 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x8 (size before relaxing) + .iram1.6.literal + 0x0000000040080a84 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.5.literal + 0x0000000040080a88 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xc (size before relaxing) + .iram1.12.literal + 0x0000000040080a90 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x24 (size before relaxing) + .iram1.10.literal + 0x0000000040080a9c 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xc (size before relaxing) + .iram1.13.literal + 0x0000000040080a9c 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x8 (size before relaxing) + .iram1.9.literal + 0x0000000040080aa0 0x1c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x5c (size before relaxing) + .iram1.16.literal + 0x0000000040080abc 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x24 (size before relaxing) + .iram1.21.literal + 0x0000000040080acc 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x18 (size before relaxing) + .iram1.22.literal + 0x0000000040080ad0 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x3c (size before relaxing) + .iram1.27.literal + 0x0000000040080adc 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x18 (size before relaxing) + .iram1.24.literal + 0x0000000040080ae4 0x14 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x54 (size before relaxing) + .iram1.9.literal + 0x0000000040080af8 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xc (size before relaxing) + .iram1.17.literal + 0x0000000040080af8 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xc (size before relaxing) + .iram1.8.literal + 0x0000000040080b00 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x14 (size before relaxing) + .iram1.12.literal + 0x0000000040080b0c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.11.literal + 0x0000000040080b0c 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x10 (size before relaxing) + .iram1.10.literal + 0x0000000040080b10 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.14.literal + 0x0000000040080b10 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.13.literal + 0x0000000040080b10 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.0.literal + 0x0000000040080b14 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x0000000040080b14 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x0000000040080b14 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x0000000040080b14 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.8.literal + 0x0000000040080b14 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x0000000040080b14 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x18 (size before relaxing) + .iram1.6.literal + 0x0000000040080b18 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x18 (size before relaxing) + .iram1.1.literal + 0x0000000040080b18 0x10 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x20 (size before relaxing) + .iram1.2.literal + 0x0000000040080b28 0x10 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x28 (size before relaxing) + .iram1.3.literal + 0x0000000040080b38 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x0000000040080b38 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x0000000040080b38 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x0000000040080b38 0x1c esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x30 (size before relaxing) + .iram1.literal + 0x0000000040080b54 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x0000000040080b54 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x0000000040080b58 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + 0x10 (size before relaxing) + .iram1.0.literal + 0x0000000040080b60 0x4 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .iram1.1.literal + 0x0000000040080b64 0x18 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x34 (size before relaxing) + .iram1.2.literal + 0x0000000040080b7c 0x4 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x34 (size before relaxing) + .iram1.3.literal + 0x0000000040080b80 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x8 (size before relaxing) + .iram1.2.literal + 0x0000000040080b80 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x10 (size before relaxing) + .iram1.3.literal + 0x0000000040080b84 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x10 (size before relaxing) + .iram1.4.literal + 0x0000000040080b84 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x0000000040080b84 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x0000000040080b84 0x14 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x20 (size before relaxing) + .iram1.10.literal + 0x0000000040080b98 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x0000000040080b98 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x0000000040080b98 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x0000000040080b98 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x0000000040080b98 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.20.literal + 0x0000000040080b98 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.19.literal + 0x0000000040080b9c 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.18.literal + 0x0000000040080ba0 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.17.literal + 0x0000000040080ba4 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.16.literal + 0x0000000040080ba8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .iram1.15.literal + 0x0000000040080ba8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .iram1.14.literal + 0x0000000040080ba8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .iram1.13.literal + 0x0000000040080ba8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x0000000040080ba8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x0000000040080ba8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.9.literal + 0x0000000040080ba8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.8.literal + 0x0000000040080ba8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x0000000040080ba8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x0000000040080ba8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x0000000040080ba8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x4 (size before relaxing) + .literal.esp_cpu_stall + 0x0000000040080ba8 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x20 (size before relaxing) + .literal.esp_cpu_unstall + 0x0000000040080bc4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x20 (size before relaxing) + .literal.esp_gpio_reserve_pins + 0x0000000040080bc8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .literal.esp_ptr_byte_accessible + 0x0000000040080bcc 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .literal.periph_module_reset + 0x0000000040080bd4 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x30 (size before relaxing) + .literal.wifi_module_disable + 0x0000000040080be4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x20 (size before relaxing) + .literal.wifi_module_enable + 0x0000000040080be8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x20 (size before relaxing) + .literal.rtc_clk_32k_enable_common + 0x0000000040080bec 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_bbpll_disable + 0x0000000040080c00 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_bbpll_enable + 0x0000000040080c08 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x1c (size before relaxing) + .literal.rtc_clk_bbpll_configure + 0x0000000040080c0c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40 (size before relaxing) + .literal.rtc_clk_32k_enable + 0x0000000040080c1c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_32k_enable_external + 0x0000000040080c24 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_8m_enable + 0x0000000040080c24 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_8md256_enabled + 0x0000000040080c2c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_slow_src_set + 0x0000000040080c2c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x18 (size before relaxing) + .literal.rtc_clk_slow_src_get + 0x0000000040080c2c 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 + 0x0000000040080c2c 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_fast_src_set + 0x0000000040080c38 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x14 (size before relaxing) + .literal.rtc_clk_xtal_freq_get + 0x0000000040080c38 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_mhz_to_config + 0x0000000040080c40 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 + 0x0000000040080c40 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x38 (size before relaxing) + .literal.rtc_clk_apb_freq_update + 0x0000000040080c50 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_to_xtal + 0x0000000040080c54 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x34 (size before relaxing) + .literal.rtc_clk_cpu_set_to_default_config + 0x0000000040080c68 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_cpu_freq_to_pll_mhz + 0x0000000040080c68 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x38 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_8m + 0x0000000040080c70 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x2c (size before relaxing) + .literal.rtc_clk_cpu_freq_set_config + 0x0000000040080c7c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x30 (size before relaxing) + .literal.rtc_clk_cal_internal + 0x0000000040080c7c 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x80 (size before relaxing) + .literal.rtc_clk_cal + 0x0000000040080cb4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x14 (size before relaxing) + .literal.rtc_time_get + 0x0000000040080cb4 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x24 (size before relaxing) + .literal.rtc_clk_wait_for_slow_cycle + 0x0000000040080cc4 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x38 (size before relaxing) + .literal.rtc_clk_freq_cal + 0x0000000040080cd0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x8 (size before relaxing) + .literal.cache_sync + 0x0000000040080cd4 0x4 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .literal.prvAcquireItemNoSplit + 0x0000000040080cd8 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x20 (size before relaxing) + .literal.prvReceiveGeneric + 0x0000000040080cec 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x34 (size before relaxing) + .literal.prvSendAcquireGeneric + 0x0000000040080cf8 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x28 (size before relaxing) + .literal.xRingbufferSend + 0x0000000040080cf8 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x1c (size before relaxing) + .literal.xRingbufferReceive + 0x0000000040080d04 0x8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x14 (size before relaxing) + .literal.vRingbufferReturnItem + 0x0000000040080d0c 0x8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x28 (size before relaxing) + .literal.esp_error_check_failed_print + 0x0000000040080d14 0x14 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x28 (size before relaxing) + .literal._esp_error_check_failed + 0x0000000040080d28 0x8 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x10 (size before relaxing) + .literal.esp_system_abort + 0x0000000040080d30 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x4 (size before relaxing) + .literal.prvCopyDataToQueue + 0x0000000040080d30 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xc (size before relaxing) + .literal.prvCopyDataFromQueue + 0x0000000040080d30 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4 (size before relaxing) + .literal.prvNotifyQueueSetContainer + 0x0000000040080d30 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x40 (size before relaxing) + .literal.xQueueGenericReset + 0x0000000040080d48 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x3c (size before relaxing) + .literal.prvInitialiseNewQueue + 0x0000000040080d5c 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4 (size before relaxing) + .literal.xQueueGenericCreateStatic + 0x0000000040080d5c 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x34 (size before relaxing) + .literal.xQueueGenericCreate + 0x0000000040080d74 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x28 (size before relaxing) + .literal.xQueueGetMutexHolder + 0x0000000040080d80 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.xQueueCreateCountingSemaphore + 0x0000000040080d80 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1c (size before relaxing) + .literal.xQueueGenericSend + 0x0000000040080d8c 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x74 (size before relaxing) + .literal.prvInitialiseMutex + 0x0000000040080da0 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueCreateMutex + 0x0000000040080da0 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.xQueueCreateMutexStatic + 0x0000000040080da0 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.xQueueGiveMutexRecursive + 0x0000000040080da0 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueGenericSendFromISR + 0x0000000040080da8 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x34 (size before relaxing) + .literal.xQueueGiveFromISR + 0x0000000040080dac 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x30 (size before relaxing) + .literal.xQueueReceive + 0x0000000040080db8 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x54 (size before relaxing) + .literal.xQueueSemaphoreTake + 0x0000000040080dc4 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x60 (size before relaxing) + .literal.xQueueTakeMutexRecursive + 0x0000000040080dc8 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueReceiveFromISR + 0x0000000040080dcc 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x30 (size before relaxing) + .literal.uxQueueMessagesWaiting + 0x0000000040080ddc 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1c (size before relaxing) + .literal.uxQueueMessagesWaitingFromISR + 0x0000000040080de8 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x14 (size before relaxing) + .literal.vQueueDelete + 0x0000000040080df0 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueIsQueueEmptyFromISR + 0x0000000040080df8 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x14 (size before relaxing) + .literal.prvResetNextTaskUnblockTime + 0x0000000040080e00 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvDeleteTLS + 0x0000000040080e08 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x14 (size before relaxing) + .literal.prvInitialiseNewTask + 0x0000000040080e18 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x14 (size before relaxing) + .literal.prvInitialiseTaskLists + 0x0000000040080e18 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x38 (size before relaxing) + .literal.prvCheckForYieldUsingPrioritySMP + 0x0000000040080e34 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x14 (size before relaxing) + .literal.prvAddNewTaskToReadyList + 0x0000000040080e40 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x38 (size before relaxing) + .literal.taskSelectHighestPriorityTaskSMP + 0x0000000040080e54 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.prvDeleteTCB + 0x0000000040080e60 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.prvCheckTasksWaitingTermination + 0x0000000040080e70 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.prvAddCurrentTaskToDelayedList + 0x0000000040080e78 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.prvIdleTask + 0x0000000040080e7c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.xTaskCreateStaticPinnedToCore + 0x0000000040080e80 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.xTaskCreatePinnedToCore + 0x0000000040080e94 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x14 (size before relaxing) + .literal.vTaskSuspendAll + 0x0000000040080e94 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.xTaskGetTickCount + 0x0000000040080e94 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetTickCountFromISR + 0x0000000040080e94 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.xTaskGetIdleTaskHandleForCPU + 0x0000000040080e94 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x24 (size before relaxing) + .literal.xTaskIncrementTick + 0x0000000040080eac 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x70 (size before relaxing) + .literal.xTaskIncrementTickOtherCores + 0x0000000040080ecc 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x34 (size before relaxing) + .literal.vTaskSwitchContext + 0x0000000040080ed8 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x30 (size before relaxing) + .literal.vTaskPlaceOnEventList + 0x0000000040080ee4 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.vTaskPlaceOnUnorderedEventList + 0x0000000040080ef0 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x30 (size before relaxing) + .literal.xTaskRemoveFromEventList + 0x0000000040080ef8 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x68 (size before relaxing) + .literal.vTaskTakeKernelLock + 0x0000000040080f0c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.vTaskReleaseKernelLock + 0x0000000040080f0c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.vTaskRemoveFromUnorderedEventList + 0x0000000040080f0c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x50 (size before relaxing) + .literal.vTaskInternalSetTimeOutState + 0x0000000040080f18 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.xTaskCheckForTimeOut + 0x0000000040080f24 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.xTaskGetCurrentTaskHandle + 0x0000000040080f34 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.vTaskDelete + 0x0000000040080f34 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x64 (size before relaxing) + .literal.uxTaskPriorityGet + 0x0000000040080f3c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.vTaskPrioritySet + 0x0000000040080f3c 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40 (size before relaxing) + .literal.vTaskSuspend + 0x0000000040080f44 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x54 (size before relaxing) + .literal.pcTaskGetName + 0x0000000040080f4c 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x18 (size before relaxing) + .literal.vTaskSetThreadLocalStoragePointerAndDelCallback + 0x0000000040080f54 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.pvTaskGetThreadLocalStoragePointer + 0x0000000040080f54 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetAffinity + 0x0000000040080f54 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetCurrentTaskHandleForCPU + 0x0000000040080f54 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetSchedulerState + 0x0000000040080f54 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc (size before relaxing) + .literal.vTaskDelay + 0x0000000040080f54 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.xTaskResumeAll + 0x0000000040080f5c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x5c (size before relaxing) + .literal.xTaskPriorityInherit + 0x0000000040080f68 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x20 (size before relaxing) + .literal.xTaskPriorityDisinherit + 0x0000000040080f68 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40 (size before relaxing) + .literal.vTaskPriorityDisinheritAfterTimeout + 0x0000000040080f7c 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40 (size before relaxing) + .literal.uxTaskResetEventItemValue + 0x0000000040080f8c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.pvTaskIncrementMutexHeldCount + 0x0000000040080f8c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.ulTaskGenericNotifyTake + 0x0000000040080f8c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x34 (size before relaxing) + .literal.xTaskGenericNotifyWait + 0x0000000040080f98 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x34 (size before relaxing) + .literal.xTaskGenericNotify + 0x0000000040080fa0 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x5c (size before relaxing) + .literal.vTaskGenericNotifyGiveFromISR + 0x0000000040080fc4 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x60 (size before relaxing) + .literal.__getreent + 0x0000000040080fd4 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.vTaskGetSnapshot + 0x0000000040080fd4 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.prvTaskPriorityRaise + 0x0000000040080fd4 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x30 (size before relaxing) + .literal.prvTaskPriorityRestore + 0x0000000040080fdc 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x24 (size before relaxing) + .literal.vTaskStartScheduler + 0x0000000040080fdc 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.vPortTaskWrapper + 0x0000000040080ff0 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x18 (size before relaxing) + .literal.xPortStartScheduler + 0x0000000040080ff8 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x10 (size before relaxing) + .literal.pxPortInitialiseStack + 0x0000000040080ffc 0x24 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x34 (size before relaxing) + .literal.xPortInIsrContext + 0x0000000040081020 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x8 (size before relaxing) + .literal.xPortEnterCriticalTimeout + 0x0000000040081020 0x30 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x5c (size before relaxing) + .literal.vPortExitCritical + 0x0000000040081050 0xc esp-idf/freertos/libfreertos.a(port.c.obj) + 0x30 (size before relaxing) + .literal.vPortYieldOtherCore + 0x000000004008105c 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4 (size before relaxing) + .literal.vApplicationStackOverflowHook + 0x000000004008105c 0xc esp-idf/freertos/libfreertos.a(port.c.obj) + 0x14 (size before relaxing) + .literal.vPortCleanUpCoprocArea + 0x0000000040081068 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4 (size before relaxing) + .literal 0x0000000040081068 0x20 esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0xa4 (size before relaxing) + .literal._xt_tick_divisor_init + 0x0000000040081088 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0xc (size before relaxing) + .literal.pvPortMalloc + 0x000000004008108c 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x8 (size before relaxing) + .literal.vPortFree + 0x000000004008108c 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x4 (size before relaxing) + .literal.xPortCheckValidTCBMem + 0x000000004008108c 0x8 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x14 (size before relaxing) + .literal.xPortcheckValidStackMem + 0x0000000040081094 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x14 (size before relaxing) + .literal.vApplicationGetIdleTaskMemory + 0x0000000040081094 0x10 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x20 (size before relaxing) + .literal.vPortSetupTimer + 0x00000000400810a4 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x8 (size before relaxing) + .literal.xPortSysTickHandler + 0x00000000400810a4 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x10 (size before relaxing) + .literal.xEventGroupCreate + 0x00000000400810a4 0xc esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x1c (size before relaxing) + .literal.xEventGroupWaitBits + 0x00000000400810b0 0x1c esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x5c (size before relaxing) + .literal.xEventGroupClearBits + 0x00000000400810cc 0x8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x24 (size before relaxing) + .literal.xEventGroupSetBits + 0x00000000400810d4 0xc esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x34 (size before relaxing) + .literal.vEventGroupDelete + 0x00000000400810e0 0x8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x2c (size before relaxing) + .literal.cache_hal_suspend + 0x00000000400810e8 0x14 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x34 (size before relaxing) + .literal.cache_hal_resume + 0x00000000400810fc 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x24 (size before relaxing) + .literal.cache_hal_is_cache_enabled + 0x00000000400810fc 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x10 (size before relaxing) + .literal.mmu_ll_check_entry_valid + 0x00000000400810fc 0x10 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x18 (size before relaxing) + .literal.mmu_ll_get_entry_target + 0x000000004008110c 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x1c (size before relaxing) + .literal.mmu_ll_entry_id_to_paddr_base + 0x0000000040081114 0x4 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x18 (size before relaxing) + .literal.mmu_hal_check_valid_ext_vaddr_region + 0x0000000040081118 0x28 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x30 (size before relaxing) + .literal.mmu_hal_map_region + 0x0000000040081140 0x2c esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x78 (size before relaxing) + .literal.mmu_hal_unmap_region + 0x000000004008116c 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x68 (size before relaxing) + .literal.mmu_hal_vaddr_to_paddr + 0x0000000040081174 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x54 (size before relaxing) + .literal.spi_flash_encrypt_ll_enable + 0x000000004008117c 0x4 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_encrypt_ll_disable + 0x0000000040081180 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_encrypt_ll_plaintext_save + 0x0000000040081180 0x18 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_encryption_hal_enable + 0x0000000040081198 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_encryption_hal_disable + 0x0000000040081198 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_encryption_hal_prepare + 0x0000000040081198 0x8 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_encryption_hal_done + 0x00000000400811a0 0x4 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.spi_flash_ll_set_read_mode + 0x00000000400811a4 0xc esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x20 (size before relaxing) + .literal.spi_flash_ll_set_buffer_data + 0x00000000400811b0 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_ll_get_buffer_data + 0x00000000400811b0 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_configure_host_io_mode + 0x00000000400811b0 0x4 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x30 (size before relaxing) + .literal.spi_flash_hal_common_command + 0x00000000400811b4 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x20 (size before relaxing) + .literal.spi_flash_hal_read + 0x00000000400811b4 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_hal_erase_chip + 0x00000000400811b4 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_erase_sector + 0x00000000400811b4 0x4 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_hal_erase_block + 0x00000000400811b8 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_hal_program_page + 0x00000000400811b8 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_hal_set_write_protect + 0x00000000400811b8 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_check_status + 0x00000000400811b8 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_resume + 0x00000000400811b8 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_suspend + 0x00000000400811b8 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_init + 0x00000000400811b8 0x34 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x54 (size before relaxing) + .literal.wdt_hal_config_stage + 0x00000000400811ec 0xc esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x34 (size before relaxing) + .literal.wdt_hal_write_protect_disable + 0x00000000400811f8 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_enable + 0x00000000400811f8 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_disable + 0x00000000400811f8 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_handle_intr + 0x00000000400811f8 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_feed + 0x00000000400811f8 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_set_flashboot_en + 0x00000000400811f8 0x4 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .literal.assert_valid_block + 0x00000000400811fc 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x10 (size before relaxing) + .literal.multi_heap_free_impl + 0x0000000040081200 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x18 (size before relaxing) + .literal.multi_heap_get_allocated_size_impl + 0x0000000040081200 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x4 (size before relaxing) + .literal.multi_heap_internal_lock + 0x0000000040081200 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x4 (size before relaxing) + .literal.multi_heap_internal_unlock + 0x0000000040081200 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x4 (size before relaxing) + .literal.multi_heap_malloc_impl + 0x0000000040081200 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x14 (size before relaxing) + .literal.multi_heap_realloc_impl + 0x0000000040081200 0xc esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x2c (size before relaxing) + .literal.tlsf_free + 0x000000004008120c 0x54 esp-idf/heap/libheap.a(tlsf.c.obj) + 0xa0 (size before relaxing) + .literal.tlsf_get_pool + 0x0000000040081260 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4 (size before relaxing) + .literal.tlsf_malloc + 0x0000000040081260 0x30 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x94 (size before relaxing) + .literal.tlsf_realloc + 0x0000000040081290 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + 0xd4 (size before relaxing) + .literal.esp_log_write + 0x000000004008129c 0x4 esp-idf/log/liblog.a(log.c.obj) + .literal.esp_log_early_timestamp + 0x00000000400812a0 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_impl_lock + 0x00000000400812a0 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x10 (size before relaxing) + .literal.esp_log_impl_lock_timeout + 0x00000000400812a4 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x10 (size before relaxing) + .literal.esp_log_impl_unlock + 0x00000000400812a4 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + 0xc (size before relaxing) + .literal.esp_log_timestamp + 0x00000000400812a4 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x1c (size before relaxing) + .literal.abort + 0x00000000400812a8 0x14 esp-idf/newlib/libnewlib.a(abort.c.obj) + 0x24 (size before relaxing) + .literal.ra_to_str + 0x00000000400812bc 0x4 esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x8 (size before relaxing) + .literal.__assert_func + 0x00000000400812c0 0x20 esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x3c (size before relaxing) + .literal.malloc + 0x00000000400812e0 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.realloc + 0x00000000400812e0 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.free 0x00000000400812e0 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._malloc_r + 0x00000000400812e0 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._free_r + 0x00000000400812e0 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._realloc_r + 0x00000000400812e0 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._calloc_r + 0x00000000400812e0 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x8 (size before relaxing) + .literal.calloc + 0x00000000400812e4 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_needs_reset_check + 0x00000000400812e4 0x4 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_set_erasing_flag + 0x00000000400812e8 0x4 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .literal.spi_flash_brownout_need_reset + 0x00000000400812ec 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_read_id_hs + 0x00000000400812ec 0xc esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x18 (size before relaxing) + .literal.memspi_host_flush_cache + 0x00000000400812f8 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_init_pointers + 0x00000000400812f8 0x8 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_chip_gd_detect_size + 0x0000000040081300 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_gd_probe + 0x0000000040081304 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 + 0x0000000040081304 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x20 (size before relaxing) + .literal.spi_flash_chip_gd_get_io_mode + 0x0000000040081314 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_detect_size + 0x0000000040081314 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_write_encrypted + 0x0000000040081314 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_config_host_io_mode + 0x0000000040081318 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x0000000040081320 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 + 0x0000000040081320 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_read + 0x0000000040081320 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_chip_generic_write + 0x0000000040081328 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_get_write_protect + 0x0000000040081328 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_chip_generic_yield + 0x0000000040081334 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_suspend_cmd_conf + 0x0000000040081334 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_chip_generic_read_unique_id + 0x0000000040081338 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_common_read_status_8b_rdsr2 + 0x000000004008133c 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 + 0x000000004008133c 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 + 0x000000004008133c 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 + 0x000000004008133c 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 + 0x000000004008133c 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 + 0x000000004008133c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_issi_probe + 0x000000004008133c 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_issi_set_io_mode + 0x0000000040081340 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 + 0x0000000040081348 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_command_winbond_program_4B + 0x0000000040081348 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_winbond_page_program + 0x0000000040081348 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_command_winbond_erase_sector_4B + 0x0000000040081348 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_winbond_erase_sector + 0x0000000040081348 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_command_erase_block_4B + 0x0000000040081348 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_winbond_erase_block + 0x0000000040081348 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_winbond_read + 0x0000000040081348 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x1c (size before relaxing) + .literal 0x0000000040081350 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + 0x4 (size before relaxing) + .literal 0x0000000040081350 0x4 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + 0x2c (size before relaxing) + .iram1.6 0x0000000040081354 0xb3 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xbf (size before relaxing) + 0x0000000040081354 call_start_cpu1 + *fill* 0x0000000040081407 0x1 + .iram1.7 0x0000000040081408 0x104 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x11c (size before relaxing) + 0x0000000040081408 do_multicore_settings + .iram1.8 0x000000004008150c 0x197 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x1b7 (size before relaxing) + 0x000000004008150c call_start_cpu0 + *fill* 0x00000000400816a3 0x1 + .iram1.0 0x00000000400816a4 0x37 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x47 (size before relaxing) + 0x00000000400816a4 esp_restart_noos_dig + *fill* 0x00000000400816db 0x1 + .iram1 0x00000000400816dc 0xdd esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + 0xe1 (size before relaxing) + 0x00000000400816dc xt_highint5 + 0x00000000400817b9 ld_include_highint_hdl + *fill* 0x00000000400817b9 0x3 + .iram1.7 0x00000000400817bc 0x71 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + *fill* 0x000000004008182d 0x3 + .iram1.2 0x0000000040081830 0x6a esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x72 (size before relaxing) + 0x0000000040081830 esp_ipc_isr_stall_other_cpu + *fill* 0x000000004008189a 0x2 + .iram1.3 0x000000004008189c 0x83 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x8e (size before relaxing) + 0x000000004008189c esp_ipc_isr_release_other_cpu + *fill* 0x000000004008191f 0x1 + .iram1.5 0x0000000040081920 0xf esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x0000000040081920 esp_ipc_isr_stall_abort + *fill* 0x000000004008192f 0x1 + .iram1 0x0000000040081930 0x5b esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + 0x0000000040081930 esp_ipc_isr_handler + *fill* 0x000000004008198b 0x1 + .iram1.0 0x000000004008198c 0x62 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x72 (size before relaxing) + *fill* 0x00000000400819ee 0x2 + .iram1.1 0x00000000400819f0 0x1a esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x00000000400819f0 panic_abort + *fill* 0x0000000040081a0a 0x2 + .iram1.1 0x0000000040081a0c 0x2a esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x0000000040081a0c start_cpu_other_cores + *fill* 0x0000000040081a36 0x2 + .iram1.0 0x0000000040081a38 0x1a esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x22 (size before relaxing) + *fill* 0x0000000040081a52 0x2 + .iram1.1 0x0000000040081a54 0x12 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x16 (size before relaxing) + 0x0000000040081a54 panicHandler + *fill* 0x0000000040081a66 0x2 + .iram1.2 0x0000000040081a68 0x12 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x16 (size before relaxing) + 0x0000000040081a68 xt_unhandled_exception + *fill* 0x0000000040081a7a 0x2 + .iram1.0 0x0000000040081a7c 0x45 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x54 (size before relaxing) + *fill* 0x0000000040081ac1 0x3 + .iram1.6 0x0000000040081ac4 0x47 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x57 (size before relaxing) + 0x0000000040081ac4 esp_system_reset_modules_on_exit + *fill* 0x0000000040081b0b 0x1 + .iram1.7 0x0000000040081b0c 0x133 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x177 (size before relaxing) + 0x0000000040081b0c esp_restart_noos + *fill* 0x0000000040081c3f 0x1 + .iram1.1 0x0000000040081c40 0x3b esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + *fill* 0x0000000040081c7b 0x1 + .iram1.2 0x0000000040081c7c 0x18 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .iram1.0 0x0000000040081c94 0x99 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x0000000040081c94 esp_backtrace_get_next_frame + *fill* 0x0000000040081d2d 0x3 + .iram1.3 0x0000000040081d30 0x16a esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x172 (size before relaxing) + 0x0000000040081d30 esp_backtrace_print_from_frame + *fill* 0x0000000040081e9a 0x2 + .iram1.4 0x0000000040081e9c 0x25 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x29 (size before relaxing) + 0x0000000040081e9c esp_backtrace_print + *fill* 0x0000000040081ec1 0x3 + .iram1 0x0000000040081ec4 0x1d esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0x0000000040081ec4 esp_backtrace_get_start + *fill* 0x0000000040081ee1 0x3 + .iram1.0 0x0000000040081ee4 0x27 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x0000000040081ee4 esp_vApplicationTickHook + *fill* 0x0000000040081f0b 0x1 + .iram1.2 0x0000000040081f0c 0x4b esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + 0x0000000040081f0c esp_rom_uart_tx_wait_idle + *fill* 0x0000000040081f57 0x1 + .iram1.3 0x0000000040081f58 0x58 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + 0x0000000040081f58 esp_rom_uart_set_clock_baudrate + .iram1.0 0x0000000040081fb0 0x18 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x1c (size before relaxing) + 0x0000000040081fb0 efuse_hal_chip_revision + .iram1.2 0x0000000040081fc8 0x28 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x0000000040081fc8 efuse_hal_flash_encryption_enabled + .iram1.0 0x0000000040081ff0 0x49 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x0000000040081ff0 efuse_hal_get_major_chip_version + *fill* 0x0000000040082039 0x3 + .iram1.1 0x000000004008203c 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x000000004008203c efuse_hal_get_minor_chip_version + .iram1.1 0x000000004008204c 0x16 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x0000000040082062 0x2 + .iram1.9 0x0000000040082064 0x23 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x0000000040082087 0x1 + .iram1.0 0x0000000040082088 0x89 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x99 (size before relaxing) + *fill* 0x0000000040082111 0x3 + .iram1.2 0x0000000040082114 0xac esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xb0 (size before relaxing) + .iram1.13 0x00000000400821c0 0x30 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x34 (size before relaxing) + .iram1.3 0x00000000400821f0 0x2c esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x30 (size before relaxing) + 0x00000000400821f0 heap_caps_malloc + .iram1.4 0x000000004008221c 0x72 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x7a (size before relaxing) + 0x000000004008221c heap_caps_malloc_default + *fill* 0x000000004008228e 0x2 + .iram1.10 0x0000000040082290 0x37 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x3e (size before relaxing) + 0x0000000040082290 heap_caps_free + *fill* 0x00000000400822c7 0x1 + .iram1.11 0x00000000400822c8 0x102 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x126 (size before relaxing) + *fill* 0x00000000400823ca 0x2 + .iram1.12 0x00000000400823cc 0x2c esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x30 (size before relaxing) + 0x00000000400823cc heap_caps_realloc + .iram1.5 0x00000000400823f8 0x7c esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x80 (size before relaxing) + 0x00000000400823f8 heap_caps_realloc_default + .iram1.14 0x0000000040082474 0x2c esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x30 (size before relaxing) + 0x0000000040082474 heap_caps_calloc + .iram1.0 0x00000000400824a0 0x15 esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x00000000400824a0 esp_dport_access_reg_read + *fill* 0x00000000400824b5 0x3 + .iram1.1 0x00000000400824b8 0xc esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x00000000400824b8 esp_dport_access_sequence_reg_read + .iram1.1 0x00000000400824c4 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x00000000400824c4 esp_clk_cpu_freq + .iram1.2 0x00000000400824d4 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x00000000400824d4 esp_clk_apb_freq + *fill* 0x00000000400824ee 0x2 + .iram1.3 0x00000000400824f0 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x11 (size before relaxing) + 0x00000000400824f0 esp_clk_xtal_freq + *fill* 0x00000000400824fe 0x2 + .iram1.0 0x0000000040082500 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x40 (size before relaxing) + *fill* 0x0000000040082539 0x3 + .iram1.4 0x000000004008253c 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x8f (size before relaxing) + 0x000000004008253c esp_intr_noniram_disable + *fill* 0x00000000400825b0 0x0 + .iram1.5 0x00000000400825b0 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x7f (size before relaxing) + 0x00000000400825b0 esp_intr_noniram_enable + *fill* 0x0000000040082614 0x0 + .iram1.8 0x0000000040082614 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x13 (size before relaxing) + 0x0000000040082614 esp_intr_enable_source + *fill* 0x0000000040082624 0x0 + .iram1.2 0x0000000040082624 0xba esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xce (size before relaxing) + 0x0000000040082624 esp_intr_enable + *fill* 0x00000000400826de 0x2 + .iram1.9 0x00000000400826e0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x13 (size before relaxing) + 0x00000000400826e0 esp_intr_disable_source + *fill* 0x00000000400826f0 0x0 + .iram1.3 0x00000000400826f0 0xf6 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x10e (size before relaxing) + 0x00000000400826f0 esp_intr_disable + *fill* 0x00000000400827e6 0x2 + .iram1.0 0x00000000400827e8 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x2b (size before relaxing) + *fill* 0x000000004008280f 0x1 + .iram1.1 0x0000000040082810 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x2b (size before relaxing) + *fill* 0x0000000040082837 0x1 + .iram1.3 0x0000000040082838 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x63 (size before relaxing) + 0x0000000040082838 wifi_bt_common_module_enable + *fill* 0x0000000040082888 0x0 + .iram1.4 0x0000000040082888 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x5f (size before relaxing) + 0x0000000040082888 wifi_bt_common_module_disable + *fill* 0x00000000400828d0 0x0 + .iram1.5 0x00000000400828d0 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x58 (size before relaxing) + .iram1.6 0x000000004008291c 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x000000004008291c rtc_isr_noniram_disable + *fill* 0x000000004008294e 0x2 + .iram1.7 0x0000000040082950 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x0000000040082950 rtc_isr_noniram_enable + *fill* 0x000000004008296e 0x2 + .iram1.2 0x0000000040082970 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x67 (size before relaxing) + 0x0000000040082970 regi2c_ctrl_read_reg_mask + *fill* 0x00000000400829c8 0x0 + .iram1.3 0x00000000400829c8 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x63 (size before relaxing) + 0x00000000400829c8 regi2c_ctrl_write_reg + *fill* 0x0000000040082a18 0x0 + .iram1.4 0x0000000040082a18 0x1a esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040082a18 xPortInterruptedFromISRContext + *fill* 0x0000000040082a32 0x2 + .iram1.0 0x0000000040082a34 0x24 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x2f (size before relaxing) + *fill* 0x0000000040082a58 0x0 + .iram1.16 0x0000000040082a58 0x17 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x1a (size before relaxing) + *fill* 0x0000000040082a6f 0x1 + .iram1.4 0x0000000040082a70 0xa5 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0xb9 (size before relaxing) + *fill* 0x0000000040082b15 0x3 + .iram1.9 0x0000000040082b18 0x5e esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x6a (size before relaxing) + *fill* 0x0000000040082b76 0x2 + .iram1.1 0x0000000040082b78 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040082b78 _lock_init + *fill* 0x0000000040082b8b 0x1 + .iram1.2 0x0000000040082b8c 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040082b8c _lock_init_recursive + *fill* 0x0000000040082b9f 0x1 + .iram1.3 0x0000000040082ba0 0x37 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x47 (size before relaxing) + 0x0000000040082ba0 _lock_close + 0x0000000040082ba0 _lock_close_recursive + *fill* 0x0000000040082bd7 0x1 + .iram1.5 0x0000000040082bd8 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x12 (size before relaxing) + 0x0000000040082bd8 _lock_acquire + *fill* 0x0000000040082be6 0x2 + .iram1.6 0x0000000040082be8 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x12 (size before relaxing) + 0x0000000040082be8 _lock_acquire_recursive + *fill* 0x0000000040082bf6 0x2 + .iram1.7 0x0000000040082bf8 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + 0x0000000040082bf8 _lock_try_acquire + .iram1.8 0x0000000040082c08 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + 0x0000000040082c08 _lock_try_acquire_recursive + .iram1.10 0x0000000040082c18 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040082c18 _lock_release + *fill* 0x0000000040082c27 0x1 + .iram1.11 0x0000000040082c28 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040082c28 _lock_release_recursive + *fill* 0x0000000040082c37 0x1 + .iram1.13 0x0000000040082c38 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040082c38 __retarget_lock_init_recursive + *fill* 0x0000000040082c4b 0x1 + .iram1.15 0x0000000040082c4c 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040082c4c __retarget_lock_close_recursive + *fill* 0x0000000040082c5b 0x1 + .iram1.18 0x0000000040082c5c 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x17 (size before relaxing) + 0x0000000040082c5c __retarget_lock_acquire_recursive + *fill* 0x0000000040082c6f 0x1 + .iram1.22 0x0000000040082c70 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x17 (size before relaxing) + 0x0000000040082c70 __retarget_lock_release_recursive + *fill* 0x0000000040082c83 0x1 + .iram1.0 0x0000000040082c84 0x2c esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x0000000040082c84 esp_reent_init + .iram1.1 0x0000000040082cb0 0x4a esp-idf/newlib/libnewlib.a(time.c.obj) + 0x0000000040082cb0 _gettimeofday_r + *fill* 0x0000000040082cfa 0x2 + .iram1.0 0x0000000040082cfc 0x28 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x2c (size before relaxing) + 0x0000000040082cfc _times_r + .iram1.7 0x0000000040082d24 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x2c (size before relaxing) + .iram1.4 0x0000000040082d4c 0x94 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.8 0x0000000040082de0 0x1f esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x26 (size before relaxing) + *fill* 0x0000000040082dff 0x1 + .iram1.5 0x0000000040082e00 0x64 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x68 (size before relaxing) + .iram1.9 0x0000000040082e64 0x1e esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x22 (size before relaxing) + *fill* 0x0000000040082e82 0x2 + .iram1.1 0x0000000040082e84 0x65 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x75 (size before relaxing) + 0x0000000040082e84 esp_timer_start_once + *fill* 0x0000000040082ee9 0x3 + .iram1.2 0x0000000040082eec 0x85 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x99 (size before relaxing) + 0x0000000040082eec esp_timer_start_periodic + *fill* 0x0000000040082f71 0x3 + .iram1.3 0x0000000040082f74 0x41 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x4d (size before relaxing) + 0x0000000040082f74 esp_timer_stop + *fill* 0x0000000040082fb5 0x3 + .iram1.14 0x0000000040082fb8 0x4e esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x52 (size before relaxing) + 0x0000000040082fb8 esp_timer_get_expiry_time + *fill* 0x0000000040083006 0x2 + .iram1.15 0x0000000040083008 0x16 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x0000000040083008 esp_timer_is_active + *fill* 0x000000004008301e 0x2 + .iram1.0 0x0000000040083020 0x1f esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x0000000040083020 esp_system_get_time + *fill* 0x000000004008303f 0x1 + .iram1.3 0x0000000040083040 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + *fill* 0x000000004008305a 0x2 + .iram1.0 0x000000004008305c 0x4f esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x000000004008305c esp_timer_impl_get_counter_reg + *fill* 0x00000000400830ab 0x1 + .iram1.1 0x00000000400830ac 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x17 (size before relaxing) + 0x00000000400830ac esp_timer_impl_get_time + 0x00000000400830ac esp_timer_get_time + *fill* 0x00000000400830c0 0x0 + .iram1.2 0x00000000400830c0 0x150 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x163 (size before relaxing) + 0x00000000400830c0 esp_timer_impl_set_alarm_id + *fill* 0x0000000040083210 0x0 + .iram1.4 0x0000000040083210 0x67 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x6b (size before relaxing) + 0x0000000040083210 esp_timer_impl_update_apb_freq + 0x0000000040083210 esp_timer_private_update_apb_freq + *fill* 0x0000000040083277 0x1 + .iram1.6 0x0000000040083278 0x12 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x0000000040083278 esp_coex_common_malloc_internal_wrapper + *fill* 0x000000004008328a 0x2 + .iram1.1 0x000000004008328c 0x22 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x26 (size before relaxing) + 0x000000004008328c esp_coex_common_int_disable_wrapper + *fill* 0x00000000400832ae 0x2 + .iram1.2 0x00000000400832b0 0x17 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x22 (size before relaxing) + 0x00000000400832b0 esp_coex_common_int_restore_wrapper + *fill* 0x00000000400832c7 0x1 + .iram1.3 0x00000000400832c8 0x8 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0xb (size before relaxing) + 0x00000000400832c8 esp_coex_common_task_yield_from_isr_wrapper + *fill* 0x00000000400832d0 0x0 + .iram1.4 0x00000000400832d0 0xa esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0xe (size before relaxing) + 0x00000000400832d0 esp_coex_common_timer_disarm_wrapper + *fill* 0x00000000400832da 0x2 + .iram1.5 0x00000000400832dc 0x12 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x00000000400832dc esp_coex_common_timer_arm_us_wrapper + *fill* 0x00000000400832ee 0x2 + .iram1.9 0x00000000400832f0 0x11 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + *fill* 0x0000000040083301 0x3 + .iram1.8 0x0000000040083304 0x10 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x14 (size before relaxing) + .iram1 0x0000000040083314 0x101 esp-idf/bt/libbt.a(hli_vectors.S.obj) + 0x0000000040083314 xt_highint4 + 0x0000000040083415 ld_include_hli_vectors_bt + *fill* 0x0000000040083415 0x3 + .iram1.2 0x0000000040083418 0x33 esp-idf/bt/libbt.a(hli_api.c.obj) + 0x37 (size before relaxing) + 0x0000000040083418 hli_c_handler + *fill* 0x000000004008344b 0x1 + .iram1.4 0x000000004008344c 0xe esp-idf/bt/libbt.a(hli_api.c.obj) + 0x000000004008344c hli_intr_restore + *fill* 0x000000004008345a 0x2 + .iram1.13 0x000000004008345c 0x3e esp-idf/bt/libbt.a(hli_api.c.obj) + 0x000000004008345c hli_queue_get + *fill* 0x000000004008349a 0x2 + .iram1.9 0x000000004008349c 0x63 esp-idf/bt/libbt.a(hli_api.c.obj) + 0x6f (size before relaxing) + *fill* 0x00000000400834ff 0x1 + .iram1.14 0x0000000040083500 0x62 esp-idf/bt/libbt.a(hli_api.c.obj) + 0x6a (size before relaxing) + 0x0000000040083500 hli_queue_put + *fill* 0x0000000040083562 0x2 + .iram1.11 0x0000000040083564 0x4e esp-idf/bt/libbt.a(hli_api.c.obj) + 0x52 (size before relaxing) + *fill* 0x00000000400835b2 0x2 + .iram1.15 0x00000000400835b4 0x16 esp-idf/bt/libbt.a(hli_api.c.obj) + 0x00000000400835b4 hli_semaphore_give + *fill* 0x00000000400835ca 0x2 + .iram1.25 0x00000000400835cc 0x54 esp-idf/bt/libbt.a(bt.c.obj) + .iram1.26 0x0000000040083620 0x39 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x0000000040083659 0x3 + .iram1.18 0x000000004008365c 0x12 esp-idf/bt/libbt.a(bt.c.obj) + 0x15 (size before relaxing) + *fill* 0x000000004008366e 0x2 + .iram1.15 0x0000000040083670 0x12 esp-idf/bt/libbt.a(bt.c.obj) + 0x15 (size before relaxing) + *fill* 0x0000000040083682 0x2 + .iram1.12 0x0000000040083684 0x1b esp-idf/bt/libbt.a(bt.c.obj) + 0x22 (size before relaxing) + *fill* 0x000000004008369f 0x1 + .iram1.11 0x00000000400836a0 0x1f esp-idf/bt/libbt.a(bt.c.obj) + 0x2a (size before relaxing) + *fill* 0x00000000400836bf 0x1 + .iram1.31 0x00000000400836c0 0xa esp-idf/bt/libbt.a(bt.c.obj) + 0xe (size before relaxing) + *fill* 0x00000000400836ca 0x2 + .iram1.30 0x00000000400836cc 0xa esp-idf/bt/libbt.a(bt.c.obj) + 0xd (size before relaxing) + *fill* 0x00000000400836d6 0x2 + .iram1.29 0x00000000400836d8 0xc esp-idf/bt/libbt.a(bt.c.obj) + 0x10 (size before relaxing) + .iram1.28 0x00000000400836e4 0x10 esp-idf/bt/libbt.a(bt.c.obj) + 0x14 (size before relaxing) + .iram1.24 0x00000000400836f4 0xa esp-idf/bt/libbt.a(bt.c.obj) + 0xd (size before relaxing) + *fill* 0x00000000400836fe 0x2 + .iram1.22 0x0000000040083700 0x44 esp-idf/bt/libbt.a(bt.c.obj) + 0x48 (size before relaxing) + .iram1.21 0x0000000040083744 0x2a esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x000000004008376e 0x2 + .iram1.17 0x0000000040083770 0x2c esp-idf/bt/libbt.a(bt.c.obj) + .iram1.16 0x000000004008379c 0x23 esp-idf/bt/libbt.a(bt.c.obj) + 0x2a (size before relaxing) + *fill* 0x00000000400837bf 0x1 + .iram1.14 0x00000000400837c0 0x8 esp-idf/bt/libbt.a(bt.c.obj) + 0xb (size before relaxing) + *fill* 0x00000000400837c8 0x0 + .iram1.13 0x00000000400837c8 0x8 esp-idf/bt/libbt.a(bt.c.obj) + 0xb (size before relaxing) + *fill* 0x00000000400837d0 0x0 + .iram1.10 0x00000000400837d0 0x4b esp-idf/bt/libbt.a(bt.c.obj) + 0x4f (size before relaxing) + *fill* 0x000000004008381b 0x1 + .iram1.9 0x000000004008381c 0x4f esp-idf/bt/libbt.a(bt.c.obj) + 0x53 (size before relaxing) + *fill* 0x000000004008386b 0x1 + .iram1.39 0x000000004008386c 0x2c esp-idf/bt/libbt.a(nimble_port.c.obj) + 0x000000004008386c nimble_port_run + .iram1.40 0x0000000040083898 0x8 esp-idf/bt/libbt.a(nimble_port.c.obj) + 0x0000000040083898 nimble_port_get_dflt_eventq + .iram1.82 0x00000000400838a0 0xb esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x00000000400838a0 npl_freertos_hw_is_in_critical + *fill* 0x00000000400838ab 0x1 + .iram1.39 0x00000000400838ac 0x14 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x00000000400838ac npl_freertos_os_started + .iram1.40 0x00000000400838c0 0xa esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0xd (size before relaxing) + 0x00000000400838c0 npl_freertos_get_current_task_id + *fill* 0x00000000400838ca 0x2 + .iram1.43 0x00000000400838cc 0x39 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x3d (size before relaxing) + 0x00000000400838cc npl_freertos_event_reset + *fill* 0x0000000040083905 0x3 + .iram1.46 0x0000000040083908 0x6e esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x76 (size before relaxing) + 0x0000000040083908 npl_freertos_callout_mem_reset + *fill* 0x0000000040083976 0x2 + .iram1.64 0x0000000040083978 0x4f esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x53 (size before relaxing) + *fill* 0x00000000400839c7 0x1 + .iram1.41 0x00000000400839c8 0x7a esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x00000000400839c8 npl_freertos_event_init + *fill* 0x0000000040083a42 0x2 + .iram1.42 0x0000000040083a44 0x41 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x45 (size before relaxing) + 0x0000000040083a44 npl_freertos_event_deinit + *fill* 0x0000000040083a85 0x3 + .iram1.44 0x0000000040083a88 0x98 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x9c (size before relaxing) + 0x0000000040083a88 npl_freertos_eventq_init + .iram1.45 0x0000000040083b20 0x4b esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x4f (size before relaxing) + 0x0000000040083b20 npl_freertos_eventq_deinit + *fill* 0x0000000040083b6b 0x1 + .iram1.52 0x0000000040083b6c 0x55 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x59 (size before relaxing) + 0x0000000040083b6c npl_freertos_mutex_deinit + *fill* 0x0000000040083bc1 0x3 + .iram1.61 0x0000000040083bc4 0x55 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x59 (size before relaxing) + 0x0000000040083bc4 npl_freertos_sem_deinit + *fill* 0x0000000040083c19 0x3 + .iram1.48 0x0000000040083c1c 0xa1 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0xb5 (size before relaxing) + 0x0000000040083c1c npl_freertos_eventq_get + *fill* 0x0000000040083cbd 0x3 + .iram1.49 0x0000000040083cc0 0x72 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x86 (size before relaxing) + 0x0000000040083cc0 npl_freertos_eventq_put + *fill* 0x0000000040083d32 0x2 + .iram1.68 0x0000000040083d34 0x12 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x0000000040083d34 npl_freertos_sem_get_count + *fill* 0x0000000040083d46 0x2 + .iram1.83 0x0000000040083d48 0x16 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x1a (size before relaxing) + 0x0000000040083d48 npl_freertos_hw_exit_critical + *fill* 0x0000000040083d5e 0x2 + .iram1.81 0x0000000040083d60 0x1d esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x0000000040083d60 npl_freertos_hw_enter_critical + *fill* 0x0000000040083d7d 0x3 + .iram1.50 0x0000000040083d80 0x166 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x18a (size before relaxing) + 0x0000000040083d80 npl_freertos_eventq_remove + *fill* 0x0000000040083ee6 0x2 + .iram1.51 0x0000000040083ee8 0x75 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x79 (size before relaxing) + 0x0000000040083ee8 npl_freertos_mutex_init + *fill* 0x0000000040083f5d 0x3 + .iram1.54 0x0000000040083f60 0x16 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x0000000040083f60 npl_freertos_eventq_is_empty + *fill* 0x0000000040083f76 0x2 + .iram1.58 0x0000000040083f78 0x85 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x8d (size before relaxing) + 0x0000000040083f78 npl_freertos_mutex_pend + *fill* 0x0000000040083ffd 0x3 + .iram1.59 0x0000000040084000 0x82 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x8a (size before relaxing) + 0x0000000040084000 npl_freertos_mutex_release + *fill* 0x0000000040084082 0x2 + .iram1.60 0x0000000040084084 0x7a esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x7e (size before relaxing) + 0x0000000040084084 npl_freertos_sem_init + *fill* 0x00000000400840fe 0x2 + .iram1.62 0x0000000040084100 0xa1 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0xad (size before relaxing) + 0x0000000040084100 npl_freertos_sem_pend + *fill* 0x00000000400841a1 0x3 + .iram1.63 0x00000000400841a4 0x9a esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0xaa (size before relaxing) + 0x00000000400841a4 npl_freertos_sem_release + *fill* 0x000000004008423e 0x2 + .iram1.66 0x0000000040084240 0x118 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x11c (size before relaxing) + 0x0000000040084240 npl_freertos_callout_init + .iram1.70 0x0000000040084358 0xe esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x12 (size before relaxing) + 0x0000000040084358 npl_freertos_callout_stop + *fill* 0x0000000040084366 0x2 + .iram1.67 0x0000000040084368 0x76 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x82 (size before relaxing) + 0x0000000040084368 npl_freertos_callout_deinit + *fill* 0x00000000400843de 0x2 + .iram1.69 0x00000000400843e0 0x26 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x2e (size before relaxing) + 0x00000000400843e0 npl_freertos_callout_reset + *fill* 0x0000000040084406 0x2 + .iram1.71 0x0000000040084408 0x11 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x0000000040084408 npl_freertos_callout_is_active + *fill* 0x0000000040084419 0x3 + .iram1.73 0x000000004008441c 0x41 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x45 (size before relaxing) + 0x000000004008441c npl_freertos_callout_remaining_ticks + *fill* 0x000000004008445d 0x3 + .iram1.75 0x0000000040084460 0x18 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x0000000040084460 npl_freertos_time_get + .iram1.80 0x0000000040084478 0x11 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x14 (size before relaxing) + 0x0000000040084478 npl_freertos_time_delay + *fill* 0x0000000040084489 0x3 + .iram1.0 0x000000004008448c 0x12 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + 0x000000004008448c bt_osi_mem_malloc + *fill* 0x000000004008449e 0x2 + .iram1.1 0x00000000400844a0 0x14 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + 0x00000000400844a0 bt_osi_mem_calloc + .iram1.4 0x00000000400844b4 0xa esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + 0xe (size before relaxing) + 0x00000000400844b4 bt_osi_mem_free + *fill* 0x00000000400844be 0x2 + .iram1.text 0x00000000400844c0 0x346 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + 0x3b5 (size before relaxing) + 0x0000000040084560 r_assert_err + 0x0000000040084654 r_assert_param + 0x00000000400847dc r_assert_warn + 0x00000000400847fc btdm_controller_sleep_enabled + *fill* 0x0000000040084806 0x2 + .iram1.text 0x0000000040084808 0xee /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + 0x102 (size before relaxing) + 0x000000004008480c coex_sw_event_from_isr + 0x00000000400848ac coex_schm_disable_flag_get + 0x00000000400848c0 coex_schm_phase_end_ts_get + 0x00000000400848d0 coex_schm_ble_scan_stop_interval_num_get + *fill* 0x00000000400848f6 0x2 + .iram1.text 0x00000000400848f8 0x41 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(co_utils.o) + 0x00000000400848fc r_co_nb_good_channels + *fill* 0x0000000040084939 0x3 + .iram1.text 0x000000004008493c 0x506 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) + 0x56e (size before relaxing) + 0x0000000040084964 r_ea_elt_insert + 0x0000000040084bec r_ea_alarm_set + 0x0000000040084cac r_ea_finetimer_isr + 0x0000000040084e38 ea_get_current_elt + *fill* 0x0000000040084e42 0x2 + .iram1.text 0x0000000040084e44 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) + 0x28 (size before relaxing) + 0x0000000040084e44 r_eif_flow_on + *fill* 0x0000000040084e59 0x3 + .iram1.text 0x0000000040084e5c 0x192 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) + 0x1a2 (size before relaxing) + 0x0000000040084e7c r_hci_acl_tx_data_alloc + 0x0000000040084fd4 hci_tl_inc_nb_h2c_cmd_pkts + *fill* 0x0000000040084fee 0x2 + .iram1.text 0x0000000040084ff0 0x4d2 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + 0x5ee (size before relaxing) + 0x0000000040085040 huart_flow_on + 0x00000000400850a8 huart_flow_off + 0x0000000040085204 r_huart_finish_transfers + 0x0000000040085354 huart_read + 0x00000000400853fc r_huart_trans_isr + 0x000000004008542c r_huart_isr + *fill* 0x00000000400854c2 0x2 + .iram1.text 0x00000000400854c4 0xba /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_msg.o) + 0xc6 (size before relaxing) + 0x00000000400854cc ke_lmp_rx_flooding_detect + 0x0000000040085528 r_ke_msg_send + *fill* 0x000000004008557e 0x2 + .iram1.text 0x0000000040085580 0x393 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) + 0x3cb (size before relaxing) + 0x0000000040085584 is_lc_free_and_used_env + *fill* 0x0000000040085913 0x1 + .iram1.text 0x0000000040085914 0x92a /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + 0x9ba (size before relaxing) + 0x0000000040085930 r_ld_sco_audio_isr + 0x0000000040085ca8 ld_sco_frm_isr_wrapper + 0x0000000040085f04 ld_sniff_cntl_offset_adjust + 0x0000000040085f78 ld_sniff_cntl_reset + 0x0000000040085fb8 ld_acl_rsw_frm_cbk_wrapper + 0x0000000040086024 ld_lmp_embuf_free + 0x000000004008609c ld_acl_clk_isr_hack + *fill* 0x000000004008623e 0x2 + .iram1.text 0x0000000040086240 0xd3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + 0xee3 (size before relaxing) + 0x000000004008656c r_ld_fm_clk_isr + 0x0000000040086660 r_ld_fm_prog_push + 0x00000000400868a8 r_ld_fm_sket_isr + 0x00000000400869b8 ld_fm_fix_no_sent_buf + 0x0000000040086a50 r_ld_fm_rx_isr + 0x0000000040086ab0 ld_fm_fifo_empty + 0x0000000040086af0 ld_acl_frm_isr + 0x0000000040086dd0 r_ld_fm_frame_isr + *fill* 0x0000000040086f7b 0x1 + .iram1.text 0x0000000040086f7c 0x3e2 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_inq.o) + 0x416 (size before relaxing) + 0x0000000040086fb4 ld_inq_frm_isr_wrapper + *fill* 0x000000004008735e 0x2 + .iram1.text 0x0000000040087360 0xe0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_pscan.o) + 0xf4 (size before relaxing) + 0x0000000040087364 ld_pscan_assert_err_handle + .iram1.text 0x0000000040087440 0x91 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sched.o) + 0xa1 (size before relaxing) + 0x0000000040087448 r_ld_sched_sniff_remove + 0x0000000040087494 r_ld_sched_sniff_add_wrapper + 0x00000000400874b4 ld_sched_link_in_sniff + *fill* 0x00000000400874d1 0x3 + .iram1.text 0x00000000400874d4 0x118 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) + 0x128 (size before relaxing) + 0x00000000400874e4 llc_hci_acl_data_tx_handler + .iram1.text 0x00000000400875ec 0x1a3 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) + 0x1b7 (size before relaxing) + 0x0000000040087758 r_llc_llcp_recv_handler_hack + *fill* 0x000000004008778f 0x1 + .iram1.text 0x0000000040087790 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) + 0x0000000040087794 llc_peer_conn_param_req_not_support_set + .iram1.text 0x00000000400877c0 0x1b6f /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + 0x1d63 (size before relaxing) + 0x00000000400878d0 r_lld_evt_schedule_next_instant_hack + 0x0000000040087a38 r_lld_evt_end_isr + 0x0000000040087b28 r_lld_evt_rx + 0x0000000040087bd0 r_lld_evt_end + 0x0000000040088024 r_lld_evt_init_evt + 0x0000000040088140 r_lld_evt_schedule + 0x0000000040088694 lld_elt_prog_is_empty + 0x00000000400886ac lld_adjust_after_reset + 0x000000004008873c coex_ble_lld_last_terminate_evt_wait_set + 0x000000004008879c r_lld_evt_restart + *fill* 0x000000004008932f 0x1 + .iram1.text 0x0000000040089330 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + 0x3f (size before relaxing) + 0x0000000040089334 r_lld_get_mode + *fill* 0x000000004008936b 0x1 + .iram1.text 0x000000004008936c 0xcf0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + 0xdc0 (size before relaxing) + 0x00000000400893f4 ram_lld_pdu_tx_flush + 0x000000004008948c lld_pdu_is_retry_get + 0x0000000040089498 lld_pdu_is_retry_set + 0x00000000400894ac lld_evt_end_run_flag_get + 0x00000000400894b8 lld_evt_end_run_flag_set + 0x00000000400894c8 lld_pdu_refresh_rem_proc_state + 0x00000000400895e4 r_lld_pdu_rx_handler + 0x0000000040089a58 lld_retry_tx_prog + 0x0000000040089ac4 lld_pdu_tx_prog_llcp + 0x0000000040089e80 r_lld_pdu_tx_prog + .iram1.text 0x000000004008a05c 0xc2 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + 0xce (size before relaxing) + 0x000000004008a0b4 ble_adv_txpwr_get_inter + 0x000000004008a0c4 ble_scan_txpwr_get_inter + 0x000000004008a0d4 ble_dfl_txpwr_get_inter + 0x000000004008a0e8 btdm_rf_bb_init_phase1 + *fill* 0x000000004008a11e 0x2 + .iram1.text 0x000000004008a120 0x960 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) + 0x9e0 (size before relaxing) + 0x000000004008a12c ble_master_soft_rst + 0x000000004008a1a4 ble_bb_rst + 0x000000004008a230 r_rwble_isr + .iram1.text 0x000000004008aa80 0x9b7 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) + 0xa6f (size before relaxing) + 0x000000004008aa98 r_rwbt_sleep_wakeup + 0x000000004008ac6c r_rwbt_isr + *fill* 0x000000004008b437 0x1 + .iram1.text 0x000000004008b438 0xdb /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + 0x11f (size before relaxing) + 0x000000004008b43c r_rwip_wakeup + 0x000000004008b4b4 r_rwip_wakeup_end + 0x000000004008b508 btdm_get_power_state + *fill* 0x000000004008b513 0x1 + .iram1.text 0x000000004008b514 0x4b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(sdk_config.o) + 0x000000004008b518 sdk_config_get_mask + 0x000000004008b528 sdk_config_get_opts + 0x000000004008b534 sdk_config_get_bt_mode + 0x000000004008b544 sdk_config_get_bt_sleep_mode + 0x000000004008b554 sdk_config_get_bt_sleep_enable + *fill* 0x000000004008b55f 0x1 + .iram1.text 0x000000004008b560 0x47 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + 0x4b (size before relaxing) + 0x000000004008b564 btdm_task_post_from_isr + *fill* 0x000000004008b5a7 0x1 + .iram1.text 0x000000004008b5a8 0x292 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + 0x2e6 (size before relaxing) + 0x000000004008b63c vhci_recv + 0x000000004008b72c vhci_flow_off + 0x000000004008b760 vhci_flow_on + 0x000000004008b7b4 r_vhci_finish_transfers + 0x000000004008b7bc r_vhci_isr + *fill* 0x000000004008b83a 0x2 + .iram1.text 0x000000004008b83c 0xfa /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) + 0x112 (size before relaxing) + 0x000000004008b840 r_bt_util_buf_lmp_tx_alloc_wrapper + 0x000000004008b868 r_bt_util_buf_lmp_tx_free_wrapper + 0x000000004008b894 r_bt_util_buf_acl_rx_alloc_wrapper + 0x000000004008b8bc r_bt_util_buf_acl_rx_free_wrapper + 0x000000004008b8e8 r_bt_util_buf_acl_tx_alloc_wrapper + 0x000000004008b910 r_bt_util_buf_acl_tx_free_wrapper + *fill* 0x000000004008b936 0x2 + .iram1.text 0x000000004008b938 0x28a /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(intc.o) + 0x2be (size before relaxing) + 0x000000004008bba4 r_rwbtdm_isr + *fill* 0x000000004008bbc2 0x2 + .iram1.text 0x000000004008bbc4 0x33 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ll.o) + 0x3b (size before relaxing) + 0x000000004008bbc4 r_global_int_start + 0x000000004008bbcc r_global_int_stop + 0x000000004008bbd4 r_global_int_disable + 0x000000004008bbe8 r_global_int_restore + *fill* 0x000000004008bbf7 0x1 + .iram1.0 0x000000004008bbf8 0x16 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x000000004008bbf8 xt_unhandled_interrupt + *fill* 0x000000004008bc0e 0x2 + .iram1 0x000000004008bc10 0x4ea esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x50e (size before relaxing) + 0x000000004008bc10 xt_debugexception + 0x000000004008bce4 _xt_user_exit + 0x000000004008c020 _xt_medint2_exit + 0x000000004008c0d0 _xt_medint3_exit + 0x000000004008c0f4 xt_nmi + *fill* 0x000000004008c0fa 0x2 + .iram1.1 0x000000004008c0fc 0x212 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x000000004008c0fc bootloader_flash_execute_command_common + *fill* 0x000000004008c30e 0x2 + .iram1.2 0x000000004008c310 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x000000004008c310 bootloader_execute_flash_command + .iram1.4 0x000000004008c330 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x2e (size before relaxing) + 0x000000004008c330 bootloader_read_flash_id + *fill* 0x000000004008c35a 0x2 + .iram1.12 0x000000004008c35c 0x94 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x9c (size before relaxing) + 0x000000004008c35c bootloader_flash_reset_chip + .iram1.6 0x000000004008c3f0 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x000000004008c3f0 bootloader_flash_cs_timing_config + *fill* 0x000000004008c45e 0x2 + .iram1.7 0x000000004008c460 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x000000004008c460 bootloader_flash_clock_config + .iram1.8 0x000000004008c4b0 0x1e7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x000000004008c4b0 bootloader_flash_gpio_config + *fill* 0x000000004008c697 0x1 + .iram1.9 0x000000004008c698 0xb3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x000000004008c698 bootloader_flash_dummy_config + *fill* 0x000000004008c74b 0x1 + .iram1.0 0x000000004008c74c 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x000000004008c74c bootloader_common_get_chip_ver_pkg + *fill* 0x000000004008c76a 0x2 + .iram1.0 0x000000004008c76c 0xa esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0xd (size before relaxing) + 0x000000004008c76c esp_flash_encryption_enabled + *fill* 0x000000004008c776 0x2 + .iram1.2 0x000000004008c778 0x8 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xb (size before relaxing) + *fill* 0x000000004008c780 0x0 + .iram1.3 0x000000004008c780 0x219 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x22d (size before relaxing) + *fill* 0x000000004008c999 0x3 + .iram1.4 0x000000004008c99c 0x1d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x29 (size before relaxing) + *fill* 0x000000004008c9b9 0x3 + .iram1.16 0x000000004008c9bc 0x1a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x22 (size before relaxing) + *fill* 0x000000004008c9d6 0x2 + .iram1.1 0x000000004008c9d8 0x67 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x000000004008c9d8 esp_mmu_paddr_find_caps + *fill* 0x000000004008ca3f 0x1 + .iram1.3 0x000000004008ca40 0x15 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + 0x19 (size before relaxing) + *fill* 0x000000004008ca55 0x3 + .iram1.12 0x000000004008ca58 0xa esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xe (size before relaxing) + 0x000000004008ca58 spi_flash_disable_cache + *fill* 0x000000004008ca62 0x2 + .iram1.7 0x000000004008ca64 0xfa esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x116 (size before relaxing) + 0x000000004008ca64 spi_flash_disable_interrupts_caches_and_other_cpu + *fill* 0x000000004008cb5e 0x2 + .iram1.13 0x000000004008cb60 0xa esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xe (size before relaxing) + 0x000000004008cb60 spi_flash_restore_cache + *fill* 0x000000004008cb6a 0x2 + .iram1.6 0x000000004008cb6c 0x46 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x52 (size before relaxing) + 0x000000004008cb6c spi_flash_op_block_func + *fill* 0x000000004008cbb2 0x2 + .iram1.8 0x000000004008cbb4 0xa9 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xb9 (size before relaxing) + 0x000000004008cbb4 spi_flash_enable_interrupts_caches_and_other_cpu + *fill* 0x000000004008cc5d 0x3 + .iram1.11 0x000000004008cc60 0xbb esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xbf (size before relaxing) + 0x000000004008cc60 spi_flash_enable_cache + *fill* 0x000000004008cd1b 0x1 + .iram1.14 0x000000004008cd1c 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x10 (size before relaxing) + 0x000000004008cd1c spi_flash_cache_enabled + .iram1.0 0x000000004008cd28 0x1c esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x20 (size before relaxing) + .iram1.1 0x000000004008cd44 0x52 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x56 (size before relaxing) + 0x000000004008cd44 spi_flash_check_and_flush_cache + *fill* 0x000000004008cd96 0x2 + .iram1.8 0x000000004008cd98 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x000000004008cd98 spi_flash_guard_set + *fill* 0x000000004008cda2 0x2 + .iram1.10 0x000000004008cda4 0x42 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x000000004008cda4 esp_mspi_pin_init + *fill* 0x000000004008cde6 0x2 + .iram1.6 0x000000004008cde8 0x46 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000004008ce2e 0x2 + .iram1.5 0x000000004008ce30 0x22 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000004008ce52 0x2 + .iram1.12 0x000000004008ce54 0x8c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x94 (size before relaxing) + .iram1.10 0x000000004008cee0 0x66 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x6a (size before relaxing) + *fill* 0x000000004008cf46 0x2 + .iram1.13 0x000000004008cf48 0x6c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x000000004008cf48 esp_flash_get_physical_size + .iram1.9 0x000000004008cfb4 0x178 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x190 (size before relaxing) + 0x000000004008cfb4 esp_flash_init_main + .iram1.16 0x000000004008d12c 0x222 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x226 (size before relaxing) + 0x000000004008d12c esp_flash_erase_region + *fill* 0x000000004008d34e 0x2 + .iram1.21 0x000000004008d350 0x146 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x000000004008d350 esp_flash_read + *fill* 0x000000004008d496 0x2 + .iram1.22 0x000000004008d498 0x186 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x000000004008d498 esp_flash_write + *fill* 0x000000004008d61e 0x2 + .iram1.27 0x000000004008d620 0x66 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x000000004008d620 esp_flash_read_encrypted + *fill* 0x000000004008d686 0x2 + .iram1.24 0x000000004008d688 0x19a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x1a6 (size before relaxing) + 0x000000004008d688 esp_flash_write_encrypted + *fill* 0x000000004008d822 0x2 + .iram1.9 0x000000004008d824 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x20 (size before relaxing) + .iram1.17 0x000000004008d83c 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.8 0x000000004008d86c 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x34 (size before relaxing) + .iram1.12 0x000000004008d89c 0xa esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xe (size before relaxing) + *fill* 0x000000004008d8a6 0x2 + .iram1.11 0x000000004008d8a8 0x46 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4a (size before relaxing) + *fill* 0x000000004008d8ee 0x2 + .iram1.10 0x000000004008d8f0 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.14 0x000000004008d900 0xb esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xe (size before relaxing) + *fill* 0x000000004008d90b 0x1 + .iram1.13 0x000000004008d90c 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x000000004008d92a 0x2 + .iram1.0 0x000000004008d92c 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xb (size before relaxing) + *fill* 0x000000004008d934 0x0 + .iram1.7 0x000000004008d934 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x18 (size before relaxing) + .iram1.1 0x000000004008d948 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xb (size before relaxing) + *fill* 0x000000004008d950 0x0 + .iram1.6 0x000000004008d950 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x10 (size before relaxing) + .iram1.8 0x000000004008d95c 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.7 0x000000004008d96c 0x23 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x2f (size before relaxing) + *fill* 0x000000004008d98f 0x1 + .iram1.6 0x000000004008d990 0x23 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x2f (size before relaxing) + *fill* 0x000000004008d9b3 0x1 + .iram1.1 0x000000004008d9b4 0x5a esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x66 (size before relaxing) + *fill* 0x000000004008da0e 0x2 + .iram1.2 0x000000004008da10 0x58 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x60 (size before relaxing) + .iram1.3 0x000000004008da68 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x000000004008da68 esp_crosscore_int_send_yield + *fill* 0x000000004008da77 0x1 + .iram1.6 0x000000004008da78 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x000000004008da78 esp_crosscore_int_send_print_backtrace + *fill* 0x000000004008da87 0x1 + .iram1.7 0x000000004008da88 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x000000004008da88 esp_crosscore_int_send_twdt_abort + *fill* 0x000000004008da97 0x1 + .iram1.2 0x000000004008da98 0x97 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0xa6 (size before relaxing) + *fill* 0x000000004008db2f 0x1 + .iram1 0x000000004008db30 0x40 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0x48 (size before relaxing) + 0x000000004008db30 _xt_panic + .iram1.1 0x000000004008db70 0xf esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x000000004008db70 esp_rom_set_cpu_ticks_per_us + *fill* 0x000000004008db7f 0x1 + .iram1.0 0x000000004008db80 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + 0x44 (size before relaxing) + 0x000000004008db80 esp_random + .iram1.0 0x000000004008dbc0 0x13 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x000000004008dbd3 0x1 + .iram1.1 0x000000004008dbd4 0x5a esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x6e (size before relaxing) + 0x000000004008dbd4 os_timer_arm_us + 0x000000004008dbd4 ets_timer_arm_us + *fill* 0x000000004008dc2e 0x2 + .iram1.2 0x000000004008dc30 0x63 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x77 (size before relaxing) + 0x000000004008dc30 ets_timer_arm + 0x000000004008dc30 os_timer_arm + *fill* 0x000000004008dc93 0x1 + .iram1.3 0x000000004008dc94 0x14 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x18 (size before relaxing) + 0x000000004008dc94 ets_timer_disarm + 0x000000004008dc94 os_timer_disarm + .iram1.2 0x000000004008dca8 0x24 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x2c (size before relaxing) + 0x000000004008dca8 phy_enter_critical + .iram1.3 0x000000004008dccc 0x1c esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x23 (size before relaxing) + 0x000000004008dccc phy_exit_critical + *fill* 0x000000004008dce8 0x0 + .iram1.4 0x000000004008dce8 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0xb (size before relaxing) + 0x000000004008dce8 esp_phy_common_clock_enable + *fill* 0x000000004008dcf0 0x0 + .iram1.5 0x000000004008dcf0 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0xb (size before relaxing) + 0x000000004008dcf0 esp_phy_common_clock_disable + *fill* 0x000000004008dcf8 0x0 + .iram1.6 0x000000004008dcf8 0x45 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x48 (size before relaxing) + 0x000000004008dcf8 esp_wifi_bt_power_domain_on + 0x000000004008dcf8 esp_wifi_power_domain_on + *fill* 0x000000004008dd3d 0x3 + .iram1.10 0x000000004008dd40 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004008dd4e 0x2 + .iram1.2 0x000000004008dd50 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x10 (size before relaxing) + 0x000000004008dd50 wifi_malloc + .iram1.3 0x000000004008dd5c 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x000000004008dd5c wifi_realloc + *fill* 0x000000004008dd6d 0x3 + .iram1.4 0x000000004008dd70 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x000000004008dd70 wifi_calloc + *fill* 0x000000004008dd81 0x3 + .iram1.5 0x000000004008dd84 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004008dd95 0x3 + .iram1.20 0x000000004008dd98 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.19 0x000000004008dda8 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004008ddb9 0x3 + .iram1.18 0x000000004008ddbc 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.17 0x000000004008ddcc 0xd esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004008ddd9 0x3 + .iram1.16 0x000000004008dddc 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.15 0x000000004008ddf0 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.14 0x000000004008de04 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.13 0x000000004008de18 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004008de2a 0x2 + .iram1.1 0x000000004008de2c 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xb (size before relaxing) + *fill* 0x000000004008de34 0x0 + .iram1.0 0x000000004008de34 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xb (size before relaxing) + *fill* 0x000000004008de3c 0x0 + .iram1.9 0x000000004008de3c 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004008de51 0x3 + .iram1.8 0x000000004008de54 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x10 (size before relaxing) + .iram1.7 0x000000004008de60 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004008de71 0x3 + .iram1.0 0x000000004008de74 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x000000004008de74 esp_mbedtls_mem_calloc + .iram1.1 0x000000004008de88 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0xe (size before relaxing) + 0x000000004008de88 esp_mbedtls_mem_free + *fill* 0x000000004008de92 0x2 + .iram1.9 0x000000004008de94 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + 0x19 (size before relaxing) + 0x000000004008de94 coex_bt_request + *fill* 0x000000004008dea9 0x3 + .iram1.10 0x000000004008deac 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + 0x15 (size before relaxing) + 0x000000004008deac coex_bt_release + *fill* 0x000000004008debd 0x3 + .iram1.12 0x000000004008dec0 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + 0x11 (size before relaxing) + 0x000000004008dec0 coex_bb_reset_lock + *fill* 0x000000004008deca 0x2 + .iram1.13 0x000000004008decc 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + 0x12 (size before relaxing) + 0x000000004008decc coex_bb_reset_unlock + *fill* 0x000000004008ded6 0x2 + .iram1.7 0x000000004008ded8 0x62 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + *fill* 0x000000004008df3a 0x2 + .iram1.8 0x000000004008df3c 0x58 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0x60 (size before relaxing) + .iram1.12 0x000000004008df94 0xf5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0x15c (size before relaxing) + 0x000000004008df94 coex_core_ts_start + *fill* 0x000000004008e089 0x3 + .iram1.11 0x000000004008e08c 0x46 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0x7e (size before relaxing) + *fill* 0x000000004008e0d2 0x2 + .iram1.16 0x000000004008e0d4 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0x36 (size before relaxing) + 0x000000004008e0d4 coex_timer_ts_start_handler + *fill* 0x000000004008e0f0 0x0 + .iram1.14 0x000000004008e0f0 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0x5c (size before relaxing) + 0x000000004008e0fc coex_core_ts_end + .iram1.17 0x000000004008e138 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0x36 (size before relaxing) + 0x000000004008e138 coex_timer_ts_end_handler + *fill* 0x000000004008e154 0x0 + .iram1.18 0x000000004008e154 0x6a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0x96 (size before relaxing) + 0x000000004008e158 coex_core_request + *fill* 0x000000004008e1be 0x2 + .iram1.19 0x000000004008e1c0 0x74 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0xa3 (size before relaxing) + 0x000000004008e1c0 coex_core_release + *fill* 0x000000004008e234 0x0 + .iram1.27 0x000000004008e234 0x3a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0x3e (size before relaxing) + 0x000000004008e23c coex_core_bb_reset_lock + *fill* 0x000000004008e26e 0x2 + .iram1.28 0x000000004008e270 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0x2c (size before relaxing) + 0x000000004008e270 coex_core_bb_reset_unlock + .iram1.0 0x000000004008e290 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) + 0x19 (size before relaxing) + *fill* 0x000000004008e2a5 0x3 + .iram1.11 0x000000004008e2a8 0xb0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) + 0xe8 (size before relaxing) + .iram1.16 0x000000004008e358 0x2f2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) + 0x361 (size before relaxing) + 0x000000004008e37c coex_force_wifi_mode + *fill* 0x000000004008e64a 0x2 + .iram1.17 0x000000004008e64c 0x129 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) + 0x15d (size before relaxing) + 0x000000004008e674 coex_unforce_wifi_mode + *fill* 0x000000004008e775 0x3 + .iram1.5 0x000000004008e778 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + 0x000000004008e77c coex_ts_end_timer_dislarmed + *fill* 0x000000004008e787 0x1 + .iram1.6 0x000000004008e788 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + 0x000000004008e78c coex_ts_start_timer_dislarmed + *fill* 0x000000004008e797 0x1 + .iram1.8 0x000000004008e798 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + 0x15 (size before relaxing) + 0x000000004008e798 coex_time_now + *fill* 0x000000004008e7a9 0x3 + .iram1.11 0x000000004008e7ac 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + 0x24 (size before relaxing) + 0x000000004008e7ac coex_time_is_in_time + .iram1.12 0x000000004008e7cc 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + 0x32 (size before relaxing) + 0x000000004008e7d0 coex_timer_ts_end_alarm + *fill* 0x000000004008e7f6 0x2 + .iram1.13 0x000000004008e7f8 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + 0x2e (size before relaxing) + 0x000000004008e7f8 coex_timer_ts_end_disalarm + *fill* 0x000000004008e81a 0x2 + .iram1.14 0x000000004008e81c 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + 0x32 (size before relaxing) + 0x000000004008e820 coex_timer_ts_start_alarm + *fill* 0x000000004008e846 0x2 + .iram1.15 0x000000004008e848 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + 0x2e (size before relaxing) + 0x000000004008e848 coex_timer_ts_start_disalarm + *fill* 0x000000004008e86a 0x2 + .iram1.6 0x000000004008e86c 0x34 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .iram1.12 0x000000004008e8a0 0x51 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + 0x55 (size before relaxing) + *fill* 0x000000004008e8f1 0x3 + .iram1.19 0x000000004008e8f4 0x135 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + 0x165 (size before relaxing) + 0x000000004008e900 coex_arbit_insert + *fill* 0x000000004008ea29 0x3 + .iram1.20 0x000000004008ea2c 0x69 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + 0x79 (size before relaxing) + 0x000000004008ea30 coex_arbit_delete + *fill* 0x000000004008ea95 0x3 + .iram1.21 0x000000004008ea98 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + 0x37 (size before relaxing) + 0x000000004008ea98 coex_arbit_first + *fill* 0x000000004008eac3 0x1 + .iram1.22 0x000000004008eac4 0x33 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + 0x3b (size before relaxing) + 0x000000004008eac4 coex_arbit_next + *fill* 0x000000004008eaf7 0x1 + .iram1.23 0x000000004008eaf8 0x40 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + 0x58 (size before relaxing) + 0x000000004008eaf8 coex_arbit_clean_overtime + .iram1.25 0x000000004008eb38 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x13 (size before relaxing) + 0x000000004008eb38 lmacProcessCollisions + *fill* 0x000000004008eb47 0x1 + .iram1.29 0x000000004008eb48 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x13 (size before relaxing) + 0x000000004008eb48 lmacProcessAllTxTimeout + *fill* 0x000000004008eb57 0x1 + .iram1.30 0x000000004008eb58 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x13 (size before relaxing) + 0x000000004008eb58 lmacPostTxComplete + *fill* 0x000000004008eb67 0x1 + .iram1.31 0x000000004008eb68 0x63 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x67 (size before relaxing) + 0x000000004008eb80 lmacProcessRxSucData + *fill* 0x000000004008ebcb 0x1 + .iram1.52 0x000000004008ebcc 0x14e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x156 (size before relaxing) + 0x000000004008ebe4 pp_post + *fill* 0x000000004008ed1a 0x2 + .iram1.4 0x000000004008ed1c 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x000000004008ed20 wifi_gpio_debug + *fill* 0x000000004008ed33 0x1 + .iram1.19 0x000000004008ed34 0x69 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x6d (size before relaxing) + 0x000000004008ed38 wdev_push_promis_misc_buf + *fill* 0x000000004008ed9d 0x3 + .iram1.46 0x000000004008eda0 0x7f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xa5 (size before relaxing) + 0x000000004008eda4 wdev_process_panic_watchdog + *fill* 0x000000004008ee1f 0x1 + .iram1.47 0x000000004008ee20 0x1c2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x21a (size before relaxing) + 0x000000004008ee60 wDev_ProcessFiq + *fill* 0x000000004008efe2 0x2 + .iram1.12 0x000000004008efe4 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x000000004008efe8 hal_mac_interrupt_get_event + *fill* 0x000000004008eff5 0x3 + .iram1.13 0x000000004008eff8 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x000000004008effc hal_mac_interrupt_clr_event + .iram1.14 0x000000004008f00c 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x23 (size before relaxing) + 0x000000004008f00c hal_mac_interrupt_clr_watchdog + *fill* 0x000000004008f027 0x1 + .iram1.2 0x000000004008f028 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + 0x000000004008f02c hal_mac_rx_get_end_state + .iram1.6 0x000000004008f03c 0x5b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + 0x5f (size before relaxing) + 0x000000004008f050 hal_mac_rx_get_end_info + *fill* 0x000000004008f097 0x1 + .iram1 0x000000004008f098 0xa59 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0xce5 (size before relaxing) + 0x000000004008f09c get_i2c_read_mask + 0x000000004008f0d0 pll_correct_dcap + 0x000000004008f1a8 phy_dis_hw_set_freq + 0x000000004008f208 phy_force_wifi_chan + 0x000000004008f300 phy_en_hw_set_freq + 0x000000004008f354 ram_chip_i2c_readReg + 0x000000004008f42c ram_chip_i2c_writeReg + 0x000000004008f4d0 phy_unforce_wifi_chan + 0x000000004008f550 wifi_track_pll_cap + 0x000000004008f5e0 phy_get_fetx_delay + 0x000000004008f614 btpwr_pll_track + 0x000000004008f6ec tsens_code_read + 0x000000004008f760 btpwr_tsens_track + 0x000000004008f7dc bt_track_tx_power + 0x000000004008f868 bt_track_pll_cap + 0x000000004008f8d8 chan_to_freq + 0x000000004008f910 get_i2c_write_data + 0x000000004008f940 i2c_write_master + 0x000000004008f9b8 ram_pbus_debugmode + 0x000000004008f9e8 ram_pbus_force_test + 0x000000004008fa4c force_txrxoff + *fill* 0x000000004008faf1 0x3 + .iram1 0x000000004008faf4 0x662 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x786 (size before relaxing) + 0x000000004008faf8 ram_disable_agc + 0x000000004008fb14 ram_enable_agc + 0x000000004008fb44 ram_write_gain_mem + 0x000000004008fba0 ram_set_txclk_en + 0x000000004008fbcc ram_set_rxclk_en + 0x000000004008fc08 disable_wifi_agc + 0x000000004008fc64 enable_wifi_agc + 0x000000004008fcd0 wr_bt_tx_atten + 0x000000004008fd24 set_tx_gain_table + 0x000000004008fe00 set_most_pwr_reg + 0x000000004008ffe8 bb_wdt_rst_enable + 0x000000004009000c bb_wdt_int_enable + 0x0000000040090038 bb_wdt_timeout_clear + 0x0000000040090054 bb_wdt_get_status + 0x0000000040090078 ram_set_noise_floor + 0x00000000400900e4 phy_close_rf + *fill* 0x0000000040090156 0x2 + .iram1 0x0000000040090158 0xdab /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0xe87 (size before relaxing) + 0x0000000040090160 get_target_power_offset + 0x00000000400901a8 ram_txbbgain_to_index + 0x00000000400901e4 ram_set_chan_cal_interp + 0x00000000400902ac write_txrate_power_offset + 0x0000000040090410 get_phy_target_power + 0x0000000040090484 phy_pwdet_onetime_en + 0x00000000400904c8 ram_read_sar_dout + 0x00000000400904f8 get_rate_fcc_index + 0x0000000040090598 get_rate_target_power + 0x00000000400905e4 get_chan_pwr_index + 0x0000000040090668 write_wifi_dig_gain + 0x00000000400906ac set_chan_dig_gain + 0x0000000040090968 tx_pwctrl_cal + 0x0000000040090d84 tx_pwctrl_background + 0x0000000040090e6c wifi_11g_rate_chg + 0x0000000040090e84 ram_set_txcap_reg + *fill* 0x0000000040090f03 0x0 + *fill* 0x0000000040090f03 0x0 + *fill* 0x0000000040090f03 0x0 + *fill* 0x0000000040090f03 0x0 + *fill* 0x0000000040090f03 0x0 + *fill* 0x0000000040090f03 0x0 + *fill* 0x0000000040090f03 0x0 + *fill* 0x0000000040090f03 0x0 + *fill* 0x0000000040090f03 0x1 + .iram1 0x0000000040090f04 0xa esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + 0x0000000040090f04 esp_ipc_isr_waiting_for_finish_cmd + *fill* 0x0000000040090f0e 0x0 + *fill* 0x0000000040090f0e 0x0 + *fill* 0x0000000040090f0e 0x2 + .iram1.2 0x0000000040090f10 0x5 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000040090f10 esp_reset_reason_set_hint + *fill* 0x0000000040090f15 0x3 + .iram1.3 0x0000000040090f18 0x7 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000040090f18 esp_reset_reason_get_hint + *fill* 0x0000000040090f1f 0x0 + *fill* 0x0000000040090f1f 0x0 + *fill* 0x0000000040090f1f 0x0 + *fill* 0x0000000040090f1f 0x0 + *fill* 0x0000000040090f1f 0x0 + *fill* 0x0000000040090f1f 0x0 + *fill* 0x0000000040090f1f 0x0 + *fill* 0x0000000040090f1f 0x0 + *fill* 0x0000000040090f1f 0x0 + *fill* 0x0000000040090f1f 0x0 + *fill* 0x0000000040090f1f 0x0 + *fill* 0x0000000040090f1f 0x0 + *fill* 0x0000000040090f1f 0x0 + *fill* 0x0000000040090f1f 0x1 + .iram1.1 0x0000000040090f20 0x7 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x0000000040090f20 efuse_hal_get_disable_wafer_version_major + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x0 + *fill* 0x0000000040090f27 0x1 + .iram1.6 0x0000000040090f28 0x13 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x0000000040090f3b 0x0 + *fill* 0x0000000040090f3b 0x0 + *fill* 0x0000000040090f3b 0x0 + *fill* 0x0000000040090f3b 0x0 + *fill* 0x0000000040090f3b 0x0 + *fill* 0x0000000040090f3b 0x0 + *fill* 0x0000000040090f3b 0x0 + *fill* 0x0000000040090f3b 0x0 + *fill* 0x0000000040090f3b 0x1 + .iram1.1 0x0000000040090f3c 0x9 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0x0000000040090f3c esp_timer_impl_get_min_period_us + *fill* 0x0000000040090f45 0x0 + *fill* 0x0000000040090f45 0x0 + *fill* 0x0000000040090f45 0x0 + *fill* 0x0000000040090f45 0x0 + *fill* 0x0000000040090f45 0x0 + *fill* 0x0000000040090f45 0x3 + .iram1.7 0x0000000040090f48 0x12 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + *fill* 0x0000000040090f5a 0x0 + *fill* 0x0000000040090f5a 0x0 + *fill* 0x0000000040090f5a 0x0 + *fill* 0x0000000040090f5a 0x0 + *fill* 0x0000000040090f5a 0x0 + *fill* 0x0000000040090f5a 0x0 + *fill* 0x0000000040090f5a 0x0 + *fill* 0x0000000040090f5a 0x2 + .iram1.0 0x0000000040090f5c 0x7 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x0000000040090f5c esp_coex_common_env_is_chip_wrapper + *fill* 0x0000000040090f63 0x0 + *fill* 0x0000000040090f63 0x1 + .iram1.0 0x0000000040090f64 0x26 esp-idf/bt/libbt.a(hli_api.c.obj) + *fill* 0x0000000040090f8a 0x0 + *fill* 0x0000000040090f8a 0x2 + .iram1.3 0x0000000040090f8c 0x8 esp-idf/bt/libbt.a(hli_api.c.obj) + 0x0000000040090f8c hli_intr_disable + *fill* 0x0000000040090f94 0x0 + *fill* 0x0000000040090f94 0x0 + *fill* 0x0000000040090f94 0x0 + *fill* 0x0000000040090f94 0x0 + *fill* 0x0000000040090f94 0x0 + *fill* 0x0000000040090f94 0x0 + .iram1.19 0x0000000040090f94 0x12 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x0000000040090fa6 0x2 + .iram1.20 0x0000000040090fa8 0x10 esp-idf/bt/libbt.a(bt.c.obj) + .iram1.23 0x0000000040090fb8 0x5 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x0000000040090fbd 0x0 + *fill* 0x0000000040090fbd 0x3 + .iram1.27 0x0000000040090fc0 0x18 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x0000000040090fd8 0x0 + *fill* 0x0000000040090fd8 0x0 + *fill* 0x0000000040090fd8 0x0 + *fill* 0x0000000040090fd8 0x0 + *fill* 0x0000000040090fd8 0x0 + *fill* 0x0000000040090fd8 0x0 + *fill* 0x0000000040090fd8 0x0 + *fill* 0x0000000040090fd8 0x0 + *fill* 0x0000000040090fd8 0x0 + *fill* 0x0000000040090fd8 0x0 + *fill* 0x0000000040090fd8 0x0 + *fill* 0x0000000040090fd8 0x0 + *fill* 0x0000000040090fd8 0x0 + .iram1.32 0x0000000040090fd8 0x8 esp-idf/bt/libbt.a(bt.c.obj) + 0x0000000040090fd8 r_assert + .iram1.53 0x0000000040090fe0 0xe esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x0000000040090fe0 npl_freertos_event_run + *fill* 0x0000000040090fee 0x2 + .iram1.55 0x0000000040090ff0 0xa esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x0000000040090ff0 npl_freertos_event_is_queued + *fill* 0x0000000040090ffa 0x2 + .iram1.56 0x0000000040090ffc 0x9 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x0000000040090ffc npl_freertos_event_get_arg + *fill* 0x0000000040091005 0x3 + .iram1.57 0x0000000040091008 0x9 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x0000000040091008 npl_freertos_event_set_arg + *fill* 0x0000000040091011 0x3 + .iram1.65 0x0000000040091014 0x22 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + *fill* 0x0000000040091036 0x2 + .iram1.72 0x0000000040091038 0x7 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x0000000040091038 npl_freertos_callout_get_ticks + *fill* 0x000000004009103f 0x1 + .iram1.74 0x0000000040091040 0xb esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x0000000040091040 npl_freertos_callout_set_arg + *fill* 0x000000004009104b 0x1 + .iram1.76 0x000000004009104c 0x9 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x000000004009104c npl_freertos_time_ms_to_ticks + *fill* 0x0000000040091055 0x3 + .iram1.77 0x0000000040091058 0x9 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x0000000040091058 npl_freertos_time_ticks_to_ms + *fill* 0x0000000040091061 0x3 + .iram1.78 0x0000000040091064 0x5 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x0000000040091064 npl_freertos_time_ms_to_ticks32 + *fill* 0x0000000040091069 0x3 + .iram1.79 0x000000004009106c 0x5 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x000000004009106c npl_freertos_time_ticks_to_ms32 + *fill* 0x0000000040091071 0x0 + *fill* 0x0000000040091071 0x3 + .iram1.84 0x0000000040091074 0x7 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x0000000040091074 npl_freertos_get_time_forever + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x0 + *fill* 0x000000004009107b 0x1 + .iram1.text 0x000000004009107c 0x4a /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + 0x000000004009107c chnl_map_check + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x0 + *fill* 0x00000000400910c6 0x2 + .iram1.11 0x00000000400910c8 0x7 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x00000000400910c8 spi_flash_init_chip_state + *fill* 0x00000000400910cf 0x0 + *fill* 0x00000000400910cf 0x1 + .iram1.3 0x00000000400910d0 0x22 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x00000000400910f2 0x2 + .iram1.4 0x00000000400910f4 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000004009110c 0x0 + .iram1.7 0x000000004009110c 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x000000004009110c esp_flash_chip_driver_initialized + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + *fill* 0x000000004009111c 0x0 + .iram1.6 0x000000004009111c 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004009112e 0x0 + *fill* 0x000000004009112e 0x2 + .iram1.11 0x0000000040091130 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000040091135 0x3 + .iram1.12 0x0000000040091138 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004009113d 0x3 + .iram1.21 0x0000000040091140 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x0 + *fill* 0x0000000040091145 0x3 + .iram1.9 0x0000000040091148 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + 0x0000000040091148 coex_time_diff + *fill* 0x0000000040091150 0x0 + *fill* 0x0000000040091150 0x0 + *fill* 0x0000000040091150 0x0 + *fill* 0x0000000040091150 0x0 + *fill* 0x0000000040091150 0x0 + *fill* 0x0000000040091150 0x0 + *fill* 0x0000000040091150 0x0 + *fill* 0x0000000040091150 0x0 + *fill* 0x0000000040091150 0x0 + *fill* 0x0000000040091150 0x0 + *fill* 0x0000000040091150 0x0 + *fill* 0x0000000040091150 0x0 + *fill* 0x0000000040091150 0x0 + *fill* 0x0000000040091150 0x0 + *fill* 0x0000000040091150 0x0 + *fill* 0x0000000040091150 0x0 + *fill* 0x0000000040091150 0x0 + *fill* 0x0000000040091150 0x0 + *fill* 0x0000000040091150 0x0 + *fill* 0x0000000040091150 0x0 + *fill* 0x0000000040091150 0x0 + *fill* 0x0000000040091150 0x0 + *fill* 0x0000000040091150 0x0 + *libapp_trace.a:app_trace.*(.literal .literal.* .text .text.*) + *libapp_trace.a:app_trace_util.*(.literal .literal.* .text .text.*) + *libapp_trace.a:port_uart.*(.literal .literal.* .text .text.*) + *libesp_event.a:default_event_loop.*(.literal.esp_event_isr_post .text.esp_event_isr_post) + *libesp_event.a:esp_event.*(.literal.esp_event_isr_post_to .text.esp_event_isr_post_to) + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_compare_and_set .text.esp_cpu_compare_and_set) + *fill* 0x0000000040091150 0x0 + .text.esp_cpu_compare_and_set + 0x0000000040091150 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x0000000040091150 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* 0x0000000040091165 0x3 + .text.esp_cpu_stall + 0x0000000040091168 0x85 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x89 (size before relaxing) + 0x0000000040091168 esp_cpu_stall + *fill* 0x00000000400911ed 0x0 + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_unstall .text.esp_cpu_unstall) + *fill* 0x00000000400911ed 0x3 + .text.esp_cpu_unstall + 0x00000000400911f0 0x53 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x57 (size before relaxing) + 0x00000000400911f0 esp_cpu_unstall + *fill* 0x0000000040091243 0x0 + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_wait_for_intr .text.esp_cpu_wait_for_intr) + *fill* 0x0000000040091243 0x1 + .text.esp_cpu_wait_for_intr + 0x0000000040091244 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x0000000040091244 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 + 0x000000004009124c 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + 0x000000004009124c esp_gpio_reserve_pins + *libesp_hw_support.a:esp_memory_utils.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040091265 0x3 + .text.esp_ptr_byte_accessible + 0x0000000040091268 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x0000000040091268 esp_ptr_byte_accessible + *fill* 0x0000000040091281 0x0 + *libesp_hw_support.a:mspi_timing_config.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:mspi_timing_tuning.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040091281 0x3 + .text.mspi_timing_change_speed_mode_cache_safe + 0x0000000040091284 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + 0x0000000040091284 mspi_timing_change_speed_mode_cache_safe + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_module_reset .text.periph_module_reset) + *fill* 0x0000000040091289 0x3 + .text.periph_module_reset + 0x000000004009128c 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x6b (size before relaxing) + 0x000000004009128c periph_module_reset + *fill* 0x00000000400912e4 0x0 + *libesp_hw_support.a:periph_ctrl.*(.literal.wifi_module_disable .text.wifi_module_disable) + *fill* 0x00000000400912e4 0x0 + .text.wifi_module_disable + 0x00000000400912e4 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x4f (size before relaxing) + 0x00000000400912e4 wifi_module_disable + *fill* 0x0000000040091320 0x0 + *libesp_hw_support.a:periph_ctrl.*(.literal.wifi_module_enable .text.wifi_module_enable) + *fill* 0x0000000040091320 0x0 + .text.wifi_module_enable + 0x0000000040091320 0x3b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x4e (size before relaxing) + 0x0000000040091320 wifi_module_enable + *fill* 0x000000004009135b 0x0 + *libesp_hw_support.a:rtc_clk.*(.literal .literal.* .text .text.*) + *fill* 0x000000004009135b 0x1 + .text.rtc_clk_32k_enable_common + 0x000000004009135c 0x95 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x00000000400913f1 0x3 + .text.rtc_clk_bbpll_disable + 0x00000000400913f4 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x0000000040091432 0x2 + .text.rtc_clk_bbpll_enable + 0x0000000040091434 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x76 (size before relaxing) + *fill* 0x000000004009149a 0x2 + .text.rtc_clk_bbpll_configure + 0x000000004009149c 0x1b4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x1c8 (size before relaxing) + .text.rtc_clk_32k_enable + 0x0000000040091650 0x35 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x39 (size before relaxing) + 0x0000000040091650 rtc_clk_32k_enable + *fill* 0x0000000040091685 0x3 + .text.rtc_clk_32k_enable_external + 0x0000000040091688 0xa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xe (size before relaxing) + 0x0000000040091688 rtc_clk_32k_enable_external + *fill* 0x0000000040091692 0x2 + .text.rtc_clk_8m_enable + 0x0000000040091694 0x9d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x0000000040091694 rtc_clk_8m_enable + *fill* 0x0000000040091731 0x3 + .text.rtc_clk_8md256_enabled + 0x0000000040091734 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x0000000040091734 rtc_clk_8md256_enabled + *fill* 0x000000004009174e 0x2 + .text.rtc_clk_slow_src_set + 0x0000000040091750 0x96 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x9a (size before relaxing) + 0x0000000040091750 rtc_clk_slow_src_set + *fill* 0x00000000400917e6 0x2 + .text.rtc_clk_slow_src_get + 0x00000000400917e8 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x00000000400917e8 rtc_clk_slow_src_get + *fill* 0x0000000040091802 0x2 + .text.rtc_clk_slow_freq_get_hz + 0x0000000040091804 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x2a (size before relaxing) + 0x0000000040091804 rtc_clk_slow_freq_get_hz + *fill* 0x000000004009182a 0x2 + .text.rtc_clk_fast_src_set + 0x000000004009182c 0x47 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4a (size before relaxing) + 0x000000004009182c rtc_clk_fast_src_set + *fill* 0x0000000040091873 0x1 + .text.rtc_clk_xtal_freq_get + 0x0000000040091874 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x0000000040091874 rtc_get_xtal + 0x0000000040091874 rtc_clk_xtal_freq_get + *fill* 0x00000000400918aa 0x2 + .text.rtc_clk_cpu_freq_mhz_to_config + 0x00000000400918ac 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x00000000400918ac rtc_clk_cpu_freq_mhz_to_config + .text.rtc_clk_cpu_freq_get_config + 0x0000000040091914 0xc9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xd1 (size before relaxing) + 0x0000000040091914 rtc_clk_cpu_freq_get_config + *fill* 0x00000000400919dd 0x3 + .text.rtc_clk_apb_freq_update + 0x00000000400919e0 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x00000000400919e0 rtc_clk_apb_freq_update + *fill* 0x00000000400919f9 0x3 + .text.rtc_clk_cpu_freq_to_xtal + 0x00000000400919fc 0x81 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x89 (size before relaxing) + 0x00000000400919fc rtc_clk_cpu_freq_to_xtal + *fill* 0x0000000040091a7d 0x3 + .text.rtc_clk_cpu_set_to_default_config + 0x0000000040091a80 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x19 (size before relaxing) + 0x0000000040091a80 rtc_clk_cpu_set_to_default_config + *fill* 0x0000000040091a91 0x3 + .text.rtc_clk_cpu_freq_to_pll_mhz + 0x0000000040091a94 0xad esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xb9 (size before relaxing) + *fill* 0x0000000040091b41 0x3 + .text.rtc_clk_cpu_freq_to_8m + 0x0000000040091b44 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x66 (size before relaxing) + *fill* 0x0000000040091ba6 0x2 + .text.rtc_clk_cpu_freq_set_config + 0x0000000040091ba8 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8f (size before relaxing) + 0x0000000040091ba8 rtc_clk_cpu_freq_set_config + *fill* 0x0000000040091c1c 0x0 + *fill* 0x0000000040091c1c 0x0 + *fill* 0x0000000040091c1c 0x0 + *fill* 0x0000000040091c1c 0x0 + *fill* 0x0000000040091c1c 0x0 + *fill* 0x0000000040091c1c 0x0 + *fill* 0x0000000040091c1c 0x0 + *fill* 0x0000000040091c1c 0x0 + *fill* 0x0000000040091c1c 0x0 + *fill* 0x0000000040091c1c 0x0 + *fill* 0x0000000040091c1c 0x0 + *fill* 0x0000000040091c1c 0x0 + *fill* 0x0000000040091c1c 0x0 + *fill* 0x0000000040091c1c 0x0 + *fill* 0x0000000040091c1c 0x0 + *fill* 0x0000000040091c1c 0x0 + *fill* 0x0000000040091c1c 0x0 + *fill* 0x0000000040091c1c 0x0 + *fill* 0x0000000040091c1c 0x0 + *libesp_hw_support.a:rtc_sleep.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:rtc_time.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040091c1c 0x0 + .text.rtc_clk_cal_internal + 0x0000000040091c1c 0x204 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x218 (size before relaxing) + .text.rtc_clk_cal + 0x0000000040091e20 0xc5 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0xcd (size before relaxing) + 0x0000000040091e20 rtc_clk_cal + *fill* 0x0000000040091ee5 0x3 + .text.rtc_time_get + 0x0000000040091ee8 0x6f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x0000000040091ee8 rtc_time_get + *fill* 0x0000000040091f57 0x1 + .text.rtc_clk_wait_for_slow_cycle + 0x0000000040091f58 0xa7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x0000000040091f58 rtc_clk_wait_for_slow_cycle + *fill* 0x0000000040091fff 0x1 + .text.rtc_clk_freq_cal + 0x0000000040092000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x0000000040092000 rtc_clk_freq_cal + *fill* 0x000000004009201a 0x0 + *fill* 0x000000004009201a 0x0 + *fill* 0x000000004009201a 0x0 + *fill* 0x000000004009201a 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* 0x000000004009201a 0x2 + .text.cache_sync + 0x000000004009201c 0x22 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + 0x000000004009201c cache_sync + *fill* 0x000000004009203e 0x0 + *libesp_mm.a:esp_cache.*(.literal .literal.* .text .text.*) + *libesp_ringbuf.a:(.literal .literal.* .text .text.*) + *fill* 0x000000004009203e 0x2 + .text.prvAcquireItemNoSplit + 0x0000000040092040 0xaa esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0xb1 (size before relaxing) + *fill* 0x00000000400920ea 0x2 + .text.prvReceiveGeneric + 0x00000000400920ec 0xfb esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x10b (size before relaxing) + *fill* 0x00000000400921e7 0x1 + .text.prvSendAcquireGeneric + 0x00000000400921e8 0xd8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0xf0 (size before relaxing) + .text.xRingbufferSend + 0x00000000400922c0 0x62 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x66 (size before relaxing) + 0x00000000400922c0 xRingbufferSend + *fill* 0x0000000040092322 0x2 + .text.xRingbufferReceive + 0x0000000040092324 0x45 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040092324 xRingbufferReceive + *fill* 0x0000000040092369 0x3 + .text.vRingbufferReturnItem + 0x000000004009236c 0x5c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x6e (size before relaxing) + 0x000000004009236c vRingbufferReturnItem + *fill* 0x00000000400923c8 0x0 + .text.prvCheckItemAvail + 0x00000000400923c8 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x0000000040092400 0x0 + *fill* 0x0000000040092400 0x0 + *fill* 0x0000000040092400 0x0 + *fill* 0x0000000040092400 0x0 + *libesp_rom.a:esp_rom_spiflash.*(.literal .literal.* .text .text.*) + *libesp_system.a:esp_err.*(.literal .literal.* .text .text.*) + .text.esp_error_check_failed_print + 0x0000000040092400 0x4b esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x4f (size before relaxing) + *fill* 0x000000004009244b 0x1 + .text._esp_error_check_failed + 0x000000004009244c 0x2a esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x32 (size before relaxing) + 0x000000004009244c _esp_error_check_failed + *fill* 0x0000000040092476 0x0 + *fill* 0x0000000040092476 0x0 + *libesp_system.a:esp_system_chip.*(.literal.esp_system_abort .text.esp_system_abort) + *fill* 0x0000000040092476 0x2 + .text.esp_system_abort + 0x0000000040092478 0x8 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0xc (size before relaxing) + 0x0000000040092478 esp_system_abort + *fill* 0x0000000040092480 0x0 + *libesp_system.a:ubsan.*(.literal .literal.* .text .text.*) + .text.__ubsan_include + 0x0000000040092480 0x5 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + 0x0000000040092480 __ubsan_include + *libfreertos.a:(EXCLUDE_FILE(*libfreertos.a:idf_additions.* *libfreertos.a:app_startup.*) .literal EXCLUDE_FILE(*libfreertos.a:idf_additions.* *libfreertos.a:app_startup.*) .literal.* EXCLUDE_FILE(*libfreertos.a:idf_additions.* *libfreertos.a:app_startup.*) .text EXCLUDE_FILE(*libfreertos.a:idf_additions.* *libfreertos.a:app_startup.*) .text.*) + *fill* 0x0000000040092485 0x3 + .text.prvCopyDataToQueue + 0x0000000040092488 0x93 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000004009251b 0x1 + .text.prvCopyDataFromQueue + 0x000000004009251c 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.prvNotifyQueueSetContainer + 0x0000000040092540 0x9c esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xb3 (size before relaxing) + *fill* 0x00000000400925dc 0x0 + .text.xQueueGenericReset + 0x00000000400925dc 0xa6 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xae (size before relaxing) + 0x00000000400925dc xQueueGenericReset + *fill* 0x0000000040092682 0x2 + .text.prvInitialiseNewQueue + 0x0000000040092684 0x1f esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x23 (size before relaxing) + *fill* 0x00000000400926a3 0x1 + .text.xQueueGenericCreateStatic + 0x00000000400926a4 0xb0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xb8 (size before relaxing) + 0x00000000400926a4 xQueueGenericCreateStatic + .text.xQueueGenericCreate + 0x0000000040092754 0x8c esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x98 (size before relaxing) + 0x0000000040092754 xQueueGenericCreate + .text.xQueueGetMutexHolder + 0x00000000400927e0 0x26 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x00000000400927e0 xQueueGetMutexHolder + *fill* 0x0000000040092806 0x2 + .text.xQueueCreateCountingSemaphore + 0x0000000040092808 0x43 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4b (size before relaxing) + 0x0000000040092808 xQueueCreateCountingSemaphore + *fill* 0x000000004009284b 0x1 + .text.xQueueGenericSend + 0x000000004009284c 0x1c0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1f8 (size before relaxing) + 0x000000004009284c xQueueGenericSend + .text.prvInitialiseMutex + 0x0000000040092a0c 0x36 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x3e (size before relaxing) + *fill* 0x0000000040092a42 0x2 + .text.xQueueCreateMutex + 0x0000000040092a44 0x16 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1a (size before relaxing) + 0x0000000040092a44 xQueueCreateMutex + *fill* 0x0000000040092a5a 0x2 + .text.xQueueCreateMutexStatic + 0x0000000040092a5c 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1e (size before relaxing) + 0x0000000040092a5c xQueueCreateMutexStatic + *fill* 0x0000000040092a76 0x2 + .text.xQueueGiveMutexRecursive + 0x0000000040092a78 0x40 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x48 (size before relaxing) + 0x0000000040092a78 xQueueGiveMutexRecursive + .text.xQueueGenericSendFromISR + 0x0000000040092ab8 0x10c esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x11c (size before relaxing) + 0x0000000040092ab8 xQueueGenericSendFromISR + .text.xQueueGiveFromISR + 0x0000000040092bc4 0xce esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xda (size before relaxing) + 0x0000000040092bc4 xQueueGiveFromISR + *fill* 0x0000000040092c92 0x2 + .text.xQueueReceive + 0x0000000040092c94 0x104 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x130 (size before relaxing) + 0x0000000040092c94 xQueueReceive + .text.xQueueSemaphoreTake + 0x0000000040092d98 0x118 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x144 (size before relaxing) + 0x0000000040092d98 xQueueSemaphoreTake + .text.xQueueTakeMutexRecursive + 0x0000000040092eb0 0x40 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x44 (size before relaxing) + 0x0000000040092eb0 xQueueTakeMutexRecursive + .text.xQueueReceiveFromISR + 0x0000000040092ef0 0x93 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xa3 (size before relaxing) + 0x0000000040092ef0 xQueueReceiveFromISR + *fill* 0x0000000040092f83 0x1 + .text.uxQueueMessagesWaiting + 0x0000000040092f84 0x2c esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x34 (size before relaxing) + 0x0000000040092f84 uxQueueMessagesWaiting + .text.uxQueueMessagesWaitingFromISR + 0x0000000040092fb0 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1f (size before relaxing) + 0x0000000040092fb0 uxQueueMessagesWaitingFromISR + *fill* 0x0000000040092fcc 0x0 + .text.vQueueDelete + 0x0000000040092fcc 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x27 (size before relaxing) + 0x0000000040092fcc vQueueDelete + *fill* 0x0000000040092ff0 0x0 + .text.xQueueIsQueueEmptyFromISR + 0x0000000040092ff0 0x28 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040092ff0 xQueueIsQueueEmptyFromISR + .text.prvResetNextTaskUnblockTime + 0x0000000040093018 0x38 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvDeleteTLS + 0x0000000040093050 0x3b esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000004009308b 0x1 + .text.prvInitialiseNewTask + 0x000000004009308c 0xce esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xd6 (size before relaxing) + *fill* 0x000000004009315a 0x2 + .text.prvInitialiseTaskLists + 0x000000004009315c 0x67 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x77 (size before relaxing) + *fill* 0x00000000400931c3 0x1 + .text.prvCheckForYieldUsingPrioritySMP + 0x00000000400931c4 0x8c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvAddNewTaskToReadyList + 0x0000000040093250 0x170 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x17f (size before relaxing) + *fill* 0x00000000400933c0 0x0 + .text.taskSelectHighestPriorityTaskSMP + 0x00000000400933c0 0x120 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x124 (size before relaxing) + .text.prvDeleteTCB + 0x00000000400934e0 0x48 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x57 (size before relaxing) + *fill* 0x0000000040093528 0x0 + .text.prvCheckTasksWaitingTermination + 0x0000000040093528 0x97 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x9f (size before relaxing) + *fill* 0x00000000400935bf 0x1 + .text.prvAddCurrentTaskToDelayedList + 0x00000000400935c0 0xca esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xd6 (size before relaxing) + *fill* 0x000000004009368a 0x2 + .text.prvIdleTask + 0x000000004009368c 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x12 (size before relaxing) + *fill* 0x000000004009369b 0x1 + .text.xTaskCreateStaticPinnedToCore + 0x000000004009369c 0xdc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xec (size before relaxing) + 0x000000004009369c xTaskCreateStaticPinnedToCore + .text.xTaskCreatePinnedToCore + 0x0000000040093778 0x5a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x6a (size before relaxing) + 0x0000000040093778 xTaskCreatePinnedToCore + *fill* 0x00000000400937d2 0x2 + .text.vTaskSuspendAll + 0x00000000400937d4 0x2e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x32 (size before relaxing) + 0x00000000400937d4 vTaskSuspendAll + *fill* 0x0000000040093802 0x2 + .text.xTaskGetTickCount + 0x0000000040093804 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040093804 xTaskGetTickCount + *fill* 0x0000000040093811 0x3 + .text.xTaskGetTickCountFromISR + 0x0000000040093814 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x22 (size before relaxing) + 0x0000000040093814 xTaskGetTickCountFromISR + *fill* 0x0000000040093832 0x2 + .text.xTaskGetIdleTaskHandleForCPU + 0x0000000040093834 0x38 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + 0x0000000040093834 xTaskGetIdleTaskHandleForCPU + .text.xTaskIncrementTick + 0x000000004009386c 0x19d esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1b1 (size before relaxing) + 0x000000004009386c xTaskIncrementTick + *fill* 0x0000000040093a09 0x3 + .text.xTaskIncrementTickOtherCores + 0x0000000040093a0c 0x97 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x9b (size before relaxing) + 0x0000000040093a0c xTaskIncrementTickOtherCores + *fill* 0x0000000040093aa3 0x1 + .text.vTaskSwitchContext + 0x0000000040093aa4 0x10c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x118 (size before relaxing) + 0x0000000040093aa4 vTaskSwitchContext + .text.vTaskPlaceOnEventList + 0x0000000040093bb0 0x47 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x57 (size before relaxing) + 0x0000000040093bb0 vTaskPlaceOnEventList + *fill* 0x0000000040093bf7 0x1 + .text.vTaskPlaceOnUnorderedEventList + 0x0000000040093bf8 0x5b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x6b (size before relaxing) + 0x0000000040093bf8 vTaskPlaceOnUnorderedEventList + *fill* 0x0000000040093c53 0x1 + .text.xTaskRemoveFromEventList + 0x0000000040093c54 0x128 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x14b (size before relaxing) + 0x0000000040093c54 xTaskRemoveFromEventList + *fill* 0x0000000040093d7c 0x0 + .text.vTaskTakeKernelLock + 0x0000000040093d7c 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + 0x0000000040093d7c vTaskTakeKernelLock + *fill* 0x0000000040093d89 0x3 + .text.vTaskReleaseKernelLock + 0x0000000040093d8c 0xb esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xe (size before relaxing) + 0x0000000040093d8c vTaskReleaseKernelLock + *fill* 0x0000000040093d97 0x1 + .text.vTaskRemoveFromUnorderedEventList + 0x0000000040093d98 0xe7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xf7 (size before relaxing) + 0x0000000040093d98 vTaskRemoveFromUnorderedEventList + *fill* 0x0000000040093e7f 0x1 + .text.vTaskInternalSetTimeOutState + 0x0000000040093e80 0x3b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x43 (size before relaxing) + 0x0000000040093e80 vTaskInternalSetTimeOutState + *fill* 0x0000000040093ebb 0x1 + .text.xTaskCheckForTimeOut + 0x0000000040093ebc 0xbb esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc6 (size before relaxing) + 0x0000000040093ebc xTaskCheckForTimeOut + *fill* 0x0000000040093f77 0x1 + .text.xTaskGetCurrentTaskHandle + 0x0000000040093f78 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040093f78 xTaskGetCurrentTaskHandle + *fill* 0x0000000040093f97 0x1 + .text.vTaskDelete + 0x0000000040093f98 0x114 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x130 (size before relaxing) + 0x0000000040093f98 vTaskDelete + .text.uxTaskPriorityGet + 0x00000000400940ac 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x26 (size before relaxing) + 0x00000000400940ac uxTaskPriorityGet + *fill* 0x00000000400940cb 0x1 + .text.vTaskPrioritySet + 0x00000000400940cc 0x115 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x127 (size before relaxing) + 0x00000000400940cc vTaskPrioritySet + *fill* 0x00000000400941e1 0x3 + .text.vTaskSuspend + 0x00000000400941e4 0x148 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x163 (size before relaxing) + 0x00000000400941e4 vTaskSuspend + *fill* 0x000000004009432c 0x0 + .text.pcTaskGetName + 0x000000004009432c 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x27 (size before relaxing) + 0x000000004009432c pcTaskGetName + *fill* 0x0000000040094350 0x0 + .text.vTaskSetThreadLocalStoragePointerAndDelCallback + 0x0000000040094350 0x27 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x32 (size before relaxing) + 0x0000000040094350 vTaskSetThreadLocalStoragePointerAndDelCallback + *fill* 0x0000000040094377 0x1 + .text.pvTaskGetThreadLocalStoragePointer + 0x0000000040094378 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x20 (size before relaxing) + 0x0000000040094378 pvTaskGetThreadLocalStoragePointer + .text.xTaskGetAffinity + 0x0000000040094394 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x13 (size before relaxing) + 0x0000000040094394 xTaskGetAffinity + *fill* 0x00000000400943a4 0x0 + .text.xTaskGetCurrentTaskHandleForCPU + 0x00000000400943a4 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x00000000400943a4 xTaskGetCurrentTaskHandleForCPU + .text.xTaskGetSchedulerState + 0x00000000400943bc 0x37 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x00000000400943bc xTaskGetSchedulerState + *fill* 0x00000000400943f3 0x1 + .text.vTaskDelay + 0x00000000400943f4 0x3b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4f (size before relaxing) + 0x00000000400943f4 vTaskDelay + *fill* 0x000000004009442f 0x1 + .text.xTaskResumeAll + 0x0000000040094430 0x130 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x143 (size before relaxing) + 0x0000000040094430 xTaskResumeAll + *fill* 0x0000000040094560 0x0 + .text.xTaskPriorityInherit + 0x0000000040094560 0xe7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xee (size before relaxing) + 0x0000000040094560 xTaskPriorityInherit + *fill* 0x0000000040094647 0x1 + .text.xTaskPriorityDisinherit + 0x0000000040094648 0xa7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xba (size before relaxing) + 0x0000000040094648 xTaskPriorityDisinherit + *fill* 0x00000000400946ef 0x1 + .text.vTaskPriorityDisinheritAfterTimeout + 0x00000000400946f0 0xad esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xb5 (size before relaxing) + 0x00000000400946f0 vTaskPriorityDisinheritAfterTimeout + *fill* 0x000000004009479d 0x3 + .text.uxTaskResetEventItemValue + 0x00000000400947a0 0x3b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3f (size before relaxing) + 0x00000000400947a0 uxTaskResetEventItemValue + *fill* 0x00000000400947db 0x1 + .text.pvTaskIncrementMutexHeldCount + 0x00000000400947dc 0x47 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4a (size before relaxing) + 0x00000000400947dc pvTaskIncrementMutexHeldCount + *fill* 0x0000000040094823 0x1 + .text.ulTaskGenericNotifyTake + 0x0000000040094824 0x10d esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x125 (size before relaxing) + 0x0000000040094824 ulTaskGenericNotifyTake + *fill* 0x0000000040094931 0x3 + .text.xTaskGenericNotifyWait + 0x0000000040094934 0x14c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x160 (size before relaxing) + 0x0000000040094934 xTaskGenericNotifyWait + .text.xTaskGenericNotify + 0x0000000040094a80 0x158 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x173 (size before relaxing) + 0x0000000040094a80 xTaskGenericNotify + *fill* 0x0000000040094bd8 0x0 + .text.vTaskGenericNotifyGiveFromISR + 0x0000000040094bd8 0x124 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x13f (size before relaxing) + 0x0000000040094bd8 vTaskGenericNotifyGiveFromISR + *fill* 0x0000000040094cfc 0x0 + .text.__getreent + 0x0000000040094cfc 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040094cfc __getreent + .text.vTaskGetSnapshot + 0x0000000040094d14 0x25 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x29 (size before relaxing) + 0x0000000040094d14 vTaskGetSnapshot + *fill* 0x0000000040094d39 0x3 + .text.prvTaskPriorityRaise + 0x0000000040094d3c 0x9d esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xa8 (size before relaxing) + 0x0000000040094d3c prvTaskPriorityRaise + *fill* 0x0000000040094dd9 0x3 + .text.prvTaskPriorityRestore + 0x0000000040094ddc 0x99 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xa3 (size before relaxing) + 0x0000000040094ddc prvTaskPriorityRestore + *fill* 0x0000000040094e75 0x3 + .text.vTaskStartScheduler + 0x0000000040094e78 0x90 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x9f (size before relaxing) + 0x0000000040094e78 vTaskStartScheduler + *fill* 0x0000000040094f08 0x0 + .text.vPortTaskWrapper + 0x0000000040094f08 0x26 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x32 (size before relaxing) + *fill* 0x0000000040094f2e 0x2 + .text.xPortStartScheduler + 0x0000000040094f30 0x26 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x2e (size before relaxing) + 0x0000000040094f30 xPortStartScheduler + *fill* 0x0000000040094f56 0x2 + .text.pxPortInitialiseStack + 0x0000000040094f58 0x99 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040094f58 pxPortInitialiseStack + *fill* 0x0000000040094ff1 0x3 + .text.xPortInIsrContext + 0x0000000040094ff4 0x26 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040094ff4 xPortInIsrContext + *fill* 0x000000004009501a 0x2 + .text.xPortEnterCriticalTimeout + 0x000000004009501c 0x150 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x15c (size before relaxing) + 0x000000004009501c xPortEnterCriticalTimeout + .text.vPortExitCritical + 0x000000004009516c 0x8c esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000004009516c vPortExitCritical + .text.vPortYieldOtherCore + 0x00000000400951f8 0xa esp-idf/freertos/libfreertos.a(port.c.obj) + 0xe (size before relaxing) + 0x00000000400951f8 vPortYieldOtherCore + *fill* 0x0000000040095202 0x2 + .text.vApplicationStackOverflowHook + 0x0000000040095204 0x3d esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040095204 vApplicationStackOverflowHook + *fill* 0x0000000040095241 0x3 + .text.vPortCleanUpCoprocArea + 0x0000000040095244 0x16 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x1a (size before relaxing) + 0x0000000040095244 vPortCleanUpCoprocArea + *fill* 0x000000004009525a 0x2 + .text 0x000000004009525c 0x25a esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x26a (size before relaxing) + 0x000000004009525c _frxt_setup_switch + 0x0000000040095274 _frxt_int_enter + 0x00000000400952b8 _frxt_int_exit + 0x0000000040095308 _frxt_timer_int + 0x0000000040095330 _frxt_tick_timer_init + 0x000000004009534c _frxt_dispatch + 0x00000000400953b0 vPortYield + 0x0000000040095414 vPortYieldFromInt + 0x0000000040095448 _frxt_task_coproc_state + 0x0000000040095488 _frxt_coproc_exc_hook + *fill* 0x00000000400954b6 0x2 + .text._xt_tick_divisor_init + 0x00000000400954b8 0x1c esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x1f (size before relaxing) + 0x00000000400954b8 _xt_tick_divisor_init + *fill* 0x00000000400954d4 0x0 + .text.pvPortMalloc + 0x00000000400954d4 0x12 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x00000000400954d4 pvPortMalloc + *fill* 0x00000000400954e6 0x2 + .text.vPortFree + 0x00000000400954e8 0xa esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0xe (size before relaxing) + 0x00000000400954e8 vPortFree + *fill* 0x00000000400954f2 0x2 + .text.xPortCheckValidTCBMem + 0x00000000400954f4 0x49 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x00000000400954f4 xPortCheckValidTCBMem + *fill* 0x000000004009553d 0x3 + .text.xPortcheckValidStackMem + 0x0000000040095540 0x49 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x0000000040095540 xPortcheckValidStackMem + *fill* 0x0000000040095589 0x3 + .text.vApplicationGetIdleTaskMemory + 0x000000004009558c 0x3d esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x4b (size before relaxing) + 0x000000004009558c vApplicationGetIdleTaskMemory + *fill* 0x00000000400955c9 0x3 + .text.vPortSetupTimer + 0x00000000400955cc 0xb esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x11 (size before relaxing) + 0x00000000400955cc vPortSetupTimer + *fill* 0x00000000400955d7 0x1 + .text.xPortSysTickHandler + 0x00000000400955d8 0x27 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x2f (size before relaxing) + 0x00000000400955d8 xPortSysTickHandler + *fill* 0x00000000400955ff 0x1 + .text.xEventGroupCreate + 0x0000000040095600 0x38 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x40 (size before relaxing) + 0x0000000040095600 xEventGroupCreate + .text.xEventGroupWaitBits + 0x0000000040095638 0x116 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x136 (size before relaxing) + 0x0000000040095638 xEventGroupWaitBits + *fill* 0x000000004009574e 0x2 + .text.xEventGroupClearBits + 0x0000000040095750 0x54 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x5c (size before relaxing) + 0x0000000040095750 xEventGroupClearBits + .text.xEventGroupSetBits + 0x00000000400957a4 0xa5 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0xad (size before relaxing) + 0x00000000400957a4 xEventGroupSetBits + *fill* 0x0000000040095849 0x3 + .text.vEventGroupDelete + 0x000000004009584c 0x4f esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x63 (size before relaxing) + 0x000000004009584c vEventGroupDelete + *fill* 0x000000004009589b 0x1 + .text.prvGetDisinheritPriorityAfterTimeout + 0x000000004009589c 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + *fill* 0x00000000400958b4 0x0 + .text.xTimerCreateTimerTask + 0x00000000400958b4 0x7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x00000000400958b4 xTimerCreateTimerTask + *fill* 0x00000000400958bb 0x0 + *fill* 0x00000000400958bb 0x0 + *fill* 0x00000000400958bb 0x0 + *fill* 0x00000000400958bb 0x0 + *fill* 0x00000000400958bb 0x0 + *fill* 0x00000000400958bb 0x0 + *fill* 0x00000000400958bb 0x0 + *fill* 0x00000000400958bb 0x0 + *fill* 0x00000000400958bb 0x0 + *fill* 0x00000000400958bb 0x0 + *fill* 0x00000000400958bb 0x0 + *fill* 0x00000000400958bb 0x0 + *fill* 0x00000000400958bb 0x0 + *fill* 0x00000000400958bb 0x0 + *fill* 0x00000000400958bb 0x0 + *fill* 0x00000000400958bb 0x0 + *fill* 0x00000000400958bb 0x0 + *fill* 0x00000000400958bb 0x1 + .text.vListInitialise + 0x00000000400958bc 0x18 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x00000000400958bc vListInitialise + .text.vListInitialiseItem + 0x00000000400958d4 0x9 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x00000000400958d4 vListInitialiseItem + *fill* 0x00000000400958dd 0x3 + .text.vListInsertEnd + 0x00000000400958e0 0x1f esp-idf/freertos/libfreertos.a(list.c.obj) + 0x00000000400958e0 vListInsertEnd + *fill* 0x00000000400958ff 0x1 + .text.vListInsert + 0x0000000040095900 0x33 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x0000000040095900 vListInsert + *fill* 0x0000000040095933 0x1 + .text.uxListRemove + 0x0000000040095934 0x2f esp-idf/freertos/libfreertos.a(list.c.obj) + 0x0000000040095934 uxListRemove + *fill* 0x0000000040095963 0x1 + .text.prvTestWaitCondition + 0x0000000040095964 0x21 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x0000000040095985 0x0 + *fill* 0x0000000040095985 0x0 + *fill* 0x0000000040095985 0x0 + *libgcc.a:lib2funcs.*(.literal .literal.* .text .text.*) + *libgcov.a:(.literal .literal.* .text .text.*) + *libhal.a:cache_hal_esp32.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040095985 0x3 + .text.cache_hal_suspend + 0x0000000040095988 0xd6 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0xe2 (size before relaxing) + 0x0000000040095988 cache_hal_suspend + *fill* 0x0000000040095a5e 0x2 + .text.cache_hal_resume + 0x0000000040095a60 0x81 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x91 (size before relaxing) + 0x0000000040095a60 cache_hal_resume + *fill* 0x0000000040095ae1 0x3 + .text.cache_hal_is_cache_enabled + 0x0000000040095ae4 0x25 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x29 (size before relaxing) + 0x0000000040095ae4 cache_hal_is_cache_enabled + *fill* 0x0000000040095b09 0x0 + *fill* 0x0000000040095b09 0x0 + *fill* 0x0000000040095b09 0x0 + *libhal.a:i2c_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:ledc_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:mmu_hal.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040095b09 0x3 + .text.mmu_ll_check_entry_valid + 0x0000000040095b0c 0x41 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x45 (size before relaxing) + *fill* 0x0000000040095b4d 0x3 + .text.mmu_ll_get_entry_target + 0x0000000040095b50 0x4c esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x50 (size before relaxing) + .text.mmu_ll_entry_id_to_paddr_base + 0x0000000040095b9c 0x41 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x49 (size before relaxing) + *fill* 0x0000000040095bdd 0x3 + .text.mmu_hal_check_valid_ext_vaddr_region + 0x0000000040095be0 0x9f esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x0000000040095be0 mmu_hal_check_valid_ext_vaddr_region + *fill* 0x0000000040095c7f 0x1 + .text.mmu_hal_map_region + 0x0000000040095c80 0x185 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x195 (size before relaxing) + 0x0000000040095c80 mmu_hal_map_region + *fill* 0x0000000040095e05 0x3 + .text.mmu_hal_unmap_region + 0x0000000040095e08 0x13f esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x14b (size before relaxing) + 0x0000000040095e08 mmu_hal_unmap_region + *fill* 0x0000000040095f47 0x1 + .text.mmu_hal_vaddr_to_paddr + 0x0000000040095f48 0xce esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0xe2 (size before relaxing) + 0x0000000040095f48 mmu_hal_vaddr_to_paddr + *fill* 0x0000000040096016 0x0 + *fill* 0x0000000040096016 0x0 + *fill* 0x0000000040096016 0x2 + .text.mmu_hal_pages_to_bytes + 0x0000000040096018 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x0000000040096018 mmu_hal_pages_to_bytes + *fill* 0x0000000040096020 0x0 + *fill* 0x0000000040096020 0x0 + *fill* 0x0000000040096020 0x0 + *libhal.a:spi_flash_encrypt_hal_iram.*(.literal .literal.* .text .text.*) + .text.spi_flash_encrypt_ll_enable + 0x0000000040096020 0x1b esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + *fill* 0x000000004009603b 0x1 + .text.spi_flash_encrypt_ll_disable + 0x000000004009603c 0x1b esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + *fill* 0x0000000040096057 0x1 + .text.spi_flash_encrypt_ll_plaintext_save + 0x0000000040096058 0x43 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x46 (size before relaxing) + *fill* 0x000000004009609b 0x1 + .text.spi_flash_encryption_hal_enable + 0x000000004009609c 0x8 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0xb (size before relaxing) + 0x000000004009609c spi_flash_encryption_hal_enable + *fill* 0x00000000400960a4 0x0 + .text.spi_flash_encryption_hal_disable + 0x00000000400960a4 0x8 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0xb (size before relaxing) + 0x00000000400960a4 spi_flash_encryption_hal_disable + *fill* 0x00000000400960ac 0x0 + .text.spi_flash_encryption_hal_prepare + 0x00000000400960ac 0x20 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x24 (size before relaxing) + 0x00000000400960ac spi_flash_encryption_hal_prepare + .text.spi_flash_encryption_hal_done + 0x00000000400960cc 0x10 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x00000000400960cc spi_flash_encryption_hal_done + *fill* 0x00000000400960dc 0x0 + *fill* 0x00000000400960dc 0x0 + *fill* 0x00000000400960dc 0x0 + *fill* 0x00000000400960dc 0x0 + *fill* 0x00000000400960dc 0x0 + *fill* 0x00000000400960dc 0x0 + .text.spi_flash_encryption_hal_destroy + 0x00000000400960dc 0x5 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x00000000400960dc spi_flash_encryption_hal_destroy + *fill* 0x00000000400960e1 0x3 + .text.spi_flash_encryption_hal_check + 0x00000000400960e4 0xf esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x00000000400960e4 spi_flash_encryption_hal_check + *libhal.a:spi_flash_hal_iram.*(.literal .literal.* .text .text.*) + *fill* 0x00000000400960f3 0x1 + .text.spi_flash_ll_set_read_mode + 0x00000000400960f4 0xba esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + *fill* 0x00000000400961ae 0x2 + .text.spi_flash_ll_set_buffer_data + 0x00000000400961b0 0x3d esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + *fill* 0x00000000400961ed 0x3 + .text.spi_flash_ll_get_buffer_data + 0x00000000400961f0 0x56 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + *fill* 0x0000000040096246 0x2 + .text.spi_flash_hal_configure_host_io_mode + 0x0000000040096248 0x18b esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040096248 spi_flash_hal_configure_host_io_mode + *fill* 0x00000000400963d3 0x1 + .text.spi_flash_hal_common_command + 0x00000000400963d4 0x174 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x00000000400963d4 spi_flash_hal_common_command + .text.spi_flash_hal_read + 0x0000000040096548 0xc4 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0xc8 (size before relaxing) + 0x0000000040096548 spi_flash_hal_read + .text.spi_flash_hal_erase_chip + 0x000000004009660c 0x22 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x000000004009660c spi_flash_hal_erase_chip + *fill* 0x000000004009662e 0x2 + .text.spi_flash_hal_erase_sector + 0x0000000040096630 0x5a esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040096630 spi_flash_hal_erase_sector + *fill* 0x000000004009668a 0x2 + .text.spi_flash_hal_erase_block + 0x000000004009668c 0x52 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x000000004009668c spi_flash_hal_erase_block + *fill* 0x00000000400966de 0x2 + .text.spi_flash_hal_program_page + 0x00000000400966e0 0x74 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x00000000400966e0 spi_flash_hal_program_page + .text.spi_flash_hal_set_write_protect + 0x0000000040096754 0x3c esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040096754 spi_flash_hal_set_write_protect + .text.spi_flash_hal_check_status + 0x0000000040096790 0x36 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040096790 spi_flash_hal_check_status + *fill* 0x00000000400967c6 0x2 + .text.spi_flash_hal_resume + 0x00000000400967c8 0x6 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x9 (size before relaxing) + 0x00000000400967c8 spi_flash_hal_resume + *fill* 0x00000000400967ce 0x2 + .text.spi_flash_hal_suspend + 0x00000000400967d0 0x6 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x9 (size before relaxing) + 0x00000000400967d0 spi_flash_hal_suspend + *fill* 0x00000000400967d6 0x0 + *fill* 0x00000000400967d6 0x0 + *fill* 0x00000000400967d6 0x0 + *fill* 0x00000000400967d6 0x2 + .text.spi_flash_hal_poll_cmd_done + 0x00000000400967d8 0xf esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x00000000400967d8 spi_flash_hal_poll_cmd_done + *fill* 0x00000000400967e7 0x1 + .text.spi_flash_hal_device_config + 0x00000000400967e8 0xdb esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x00000000400967e8 spi_flash_hal_device_config + *fill* 0x00000000400968c3 0x0 + *fill* 0x00000000400968c3 0x0 + *fill* 0x00000000400968c3 0x0 + *fill* 0x00000000400968c3 0x0 + *fill* 0x00000000400968c3 0x0 + *fill* 0x00000000400968c3 0x1 + .text.spi_flash_hal_setup_read_suspend + 0x00000000400968c4 0x7 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x00000000400968c4 spi_flash_hal_setup_read_suspend + *fill* 0x00000000400968cb 0x0 + *fill* 0x00000000400968cb 0x0 + *libhal.a:spi_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:spi_slave_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:wdt_hal_iram.*(.literal .literal.* .text .text.*) + *fill* 0x00000000400968cb 0x1 + .text.wdt_hal_init + 0x00000000400968cc 0x2a8 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x00000000400968cc wdt_hal_init + .text.wdt_hal_config_stage + 0x0000000040096b74 0x16d esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x174 (size before relaxing) + 0x0000000040096b74 wdt_hal_config_stage + *fill* 0x0000000040096ce1 0x3 + .text.wdt_hal_write_protect_disable + 0x0000000040096ce4 0x22 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x0000000040096ce4 wdt_hal_write_protect_disable + *fill* 0x0000000040096d06 0x2 + .text.wdt_hal_enable + 0x0000000040096d08 0x50 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x0000000040096d08 wdt_hal_enable + .text.wdt_hal_disable + 0x0000000040096d58 0x34 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x0000000040096d58 wdt_hal_disable + .text.wdt_hal_handle_intr + 0x0000000040096d8c 0x50 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x0000000040096d8c wdt_hal_handle_intr + .text.wdt_hal_feed + 0x0000000040096ddc 0x2a esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x0000000040096ddc wdt_hal_feed + *fill* 0x0000000040096e06 0x2 + .text.wdt_hal_set_flashboot_en + 0x0000000040096e08 0x49 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x0000000040096e08 wdt_hal_set_flashboot_en + *fill* 0x0000000040096e51 0x0 + *fill* 0x0000000040096e51 0x3 + .text.wdt_hal_write_protect_enable + 0x0000000040096e54 0x1e esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x0000000040096e54 wdt_hal_write_protect_enable + *fill* 0x0000000040096e72 0x0 + *fill* 0x0000000040096e72 0x0 + *fill* 0x0000000040096e72 0x2 + .text.wdt_hal_is_enabled + 0x0000000040096e74 0x22 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x0000000040096e74 wdt_hal_is_enabled + *libheap.a:multi_heap.*(.literal.assert_valid_block .text.assert_valid_block) + *fill* 0x0000000040096e96 0x2 + .text.assert_valid_block + 0x0000000040096e98 0x38 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x3c (size before relaxing) + *fill* 0x0000000040096ed0 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_free_impl .text.multi_heap_free_impl) + .text.multi_heap_free_impl + 0x0000000040096ed0 0x46 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x56 (size before relaxing) + 0x0000000040096ed0 multi_heap_free + 0x0000000040096ed0 multi_heap_free_impl + 0x0000000040096ed0 multi_heap_aligned_free + *libheap.a:multi_heap.*(.literal.multi_heap_get_allocated_size_impl .text.multi_heap_get_allocated_size_impl) + *fill* 0x0000000040096f16 0x2 + .text.multi_heap_get_allocated_size_impl + 0x0000000040096f18 0xc esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x10 (size before relaxing) + 0x0000000040096f18 multi_heap_get_allocated_size + 0x0000000040096f18 multi_heap_get_allocated_size_impl + *fill* 0x0000000040096f24 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 + 0x0000000040096f24 0xe esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x12 (size before relaxing) + 0x0000000040096f24 multi_heap_internal_lock + *libheap.a:multi_heap.*(.literal.multi_heap_internal_unlock .text.multi_heap_internal_unlock) + *fill* 0x0000000040096f32 0x2 + .text.multi_heap_internal_unlock + 0x0000000040096f34 0xc esp-idf/heap/libheap.a(multi_heap.c.obj) + 0xf (size before relaxing) + 0x0000000040096f34 multi_heap_internal_unlock + *fill* 0x0000000040096f40 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* 0x0000000040096f40 0x0 + .text.multi_heap_malloc_impl + 0x0000000040096f40 0x4e esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x62 (size before relaxing) + 0x0000000040096f40 multi_heap_malloc_impl + 0x0000000040096f40 multi_heap_malloc + *fill* 0x0000000040096f8e 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_realloc_impl .text.multi_heap_realloc_impl) + *fill* 0x0000000040096f8e 0x2 + .text.multi_heap_realloc_impl + 0x0000000040096f90 0x73 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x87 (size before relaxing) + 0x0000000040096f90 multi_heap_realloc_impl + 0x0000000040096f90 multi_heap_realloc + *fill* 0x0000000040097003 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_set_lock .text.multi_heap_set_lock) + *fill* 0x0000000040097003 0x1 + .text.multi_heap_set_lock + 0x0000000040097004 0x7 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x0000000040097004 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* 0x000000004009700b 0x1 + .text.tlsf_alloc_overhead + 0x000000004009700c 0x7 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x000000004009700c tlsf_alloc_overhead + *libheap.a:tlsf.*(.literal.tlsf_block_size .text.tlsf_block_size) + *fill* 0x0000000040097013 0x1 + .text.tlsf_block_size + 0x0000000040097014 0x16 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x0000000040097014 tlsf_block_size + *libheap.a:tlsf.*(.literal.tlsf_block_size_max .text.tlsf_block_size_max) + *fill* 0x000000004009702a 0x2 + .text.tlsf_block_size_max + 0x000000004009702c 0x19 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x000000004009702c tlsf_block_size_max + *libheap.a:tlsf.*(.literal.tlsf_block_size_min .text.tlsf_block_size_min) + *libheap.a:tlsf.*(.literal.tlsf_free .text.tlsf_free) + *fill* 0x0000000040097045 0x3 + .text.tlsf_free + 0x0000000040097048 0x408 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x424 (size before relaxing) + 0x0000000040097048 tlsf_free + *fill* 0x0000000040097450 0x0 + *libheap.a:tlsf.*(.literal.tlsf_get_pool .text.tlsf_get_pool) + .text.tlsf_get_pool + 0x0000000040097450 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + 0x10 (size before relaxing) + 0x0000000040097450 tlsf_get_pool + *libheap.a:tlsf.*(.literal.tlsf_malloc .text.tlsf_malloc) + .text.tlsf_malloc + 0x000000004009745c 0x3e5 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x3f9 (size before relaxing) + 0x000000004009745c tlsf_malloc + *libheap.a:tlsf.*(.literal.tlsf_memalign .text.tlsf_memalign) + *libheap.a:tlsf.*(.literal.tlsf_memalign_offs .text.tlsf_memalign_offs) + *libheap.a:tlsf.*(.literal.tlsf_realloc .text.tlsf_realloc) + *fill* 0x0000000040097841 0x3 + .text.tlsf_realloc + 0x0000000040097844 0x59c esp-idf/heap/libheap.a(tlsf.c.obj) + 0x5d8 (size before relaxing) + 0x0000000040097844 tlsf_realloc + *fill* 0x0000000040097de0 0x0 + *libheap.a:tlsf.*(.literal.tlsf_size .text.tlsf_size) + .text.tlsf_size + 0x0000000040097de0 0xe esp-idf/heap/libheap.a(tlsf.c.obj) + 0x0000000040097de0 tlsf_size + *liblog.a:log.*(.literal.esp_log_write .text.esp_log_write) + *fill* 0x0000000040097dee 0x2 + .text.esp_log_write + 0x0000000040097df0 0x26 esp-idf/log/liblog.a(log.c.obj) + 0x0000000040097df0 esp_log_write + *fill* 0x0000000040097e16 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) + *fill* 0x0000000040097e16 0x2 + .text.esp_log_early_timestamp + 0x0000000040097e18 0x1c esp-idf/log/liblog.a(log_freertos.c.obj) + 0x0000000040097e18 esp_log_early_timestamp + *fill* 0x0000000040097e34 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_impl_lock .text.esp_log_impl_lock) + .text.esp_log_impl_lock + 0x0000000040097e34 0x27 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x32 (size before relaxing) + 0x0000000040097e34 esp_log_impl_lock + *liblog.a:log_freertos.*(.literal.esp_log_impl_lock_timeout .text.esp_log_impl_lock_timeout) + *fill* 0x0000000040097e5b 0x1 + .text.esp_log_impl_lock_timeout + 0x0000000040097e5c 0x3c esp-idf/log/liblog.a(log_freertos.c.obj) + 0x44 (size before relaxing) + 0x0000000040097e5c esp_log_impl_lock_timeout + *fill* 0x0000000040097e98 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_impl_unlock .text.esp_log_impl_unlock) + .text.esp_log_impl_unlock + 0x0000000040097e98 0x1b esp-idf/log/liblog.a(log_freertos.c.obj) + 0x1f (size before relaxing) + 0x0000000040097e98 esp_log_impl_unlock + *liblog.a:log_freertos.*(.literal.esp_log_timestamp .text.esp_log_timestamp) + *fill* 0x0000000040097eb3 0x1 + .text.esp_log_timestamp + 0x0000000040097eb4 0x48 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x57 (size before relaxing) + 0x0000000040097eb4 esp_log_timestamp + *fill* 0x0000000040097efc 0x0 + *libnet80211.a:(.wifi0iram .wifi0iram.*) + *fill* 0x0000000040097efc 0x0 + .wifi0iram.7 0x0000000040097efc 0x6c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x7c (size before relaxing) + 0x0000000040097f08 nan_dp_search_node + .wifi0iram.13 0x0000000040097f68 0x561 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x5a9 (size before relaxing) + 0x0000000040097fa4 ieee80211_encap_esfbuf + *fill* 0x00000000400984c9 0x3 + .wifi0iram.7 0x00000000400984cc 0x246 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x272 (size before relaxing) + 0x0000000040098510 ieee80211_output_process + *fill* 0x0000000040098712 0x2 + .wifi0iram.12 0x0000000040098714 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x0000000040098718 chm_is_at_home_channel + *fill* 0x0000000040098732 0x2 + .wifi0iram.87 0x0000000040098734 0x76 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x86 (size before relaxing) + 0x0000000040098744 cnx_node_search + *fill* 0x00000000400987aa 0x2 + .wifi0iram.89 0x00000000400987ac 0x55 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x69 (size before relaxing) + 0x00000000400987b4 cnx_node_is_existing + *fill* 0x0000000040098801 0x3 + .wifi0iram.29 0x0000000040098804 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x0000000040098804 ieee80211_is_tx_allowed + *fill* 0x0000000040098822 0x0 + *fill* 0x0000000040098822 0x0 + *fill* 0x0000000040098822 0x0 + *fill* 0x0000000040098822 0x0 + *fill* 0x0000000040098822 0x0 + *libnet80211.a:(.wifirxiram .wifirxiram.*) + *fill* 0x0000000040098822 0x2 + .wifirxiram.27 + 0x0000000040098824 0x68 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x78 (size before relaxing) + 0x0000000040098830 ampdu_dispatch + .wifirxiram.29 + 0x000000004009888c 0x91 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xa1 (size before relaxing) + 0x0000000040098894 ampdu_dispatch_as_many_as_possible + *fill* 0x000000004009891d 0x3 + .wifirxiram.31 + 0x0000000040098920 0x8d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x9d (size before relaxing) + 0x0000000040098924 ampdu_dispatch_all + *fill* 0x00000000400989ad 0x3 + .wifirxiram.33 + 0x00000000400989b0 0xd7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xf3 (size before relaxing) + 0x00000000400989b4 ampdu_dispatch_upto + *fill* 0x0000000040098a87 0x1 + .wifirxiram.37 + 0x0000000040098a88 0x21e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x256 (size before relaxing) + 0x0000000040098aa8 ieee80211_ampdu_reorder + *fill* 0x0000000040098ca6 0x2 + .wifirxiram.41 + 0x0000000040098ca8 0x5aa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x5fe (size before relaxing) + 0x0000000040098cf8 sta_input + *fill* 0x0000000040099252 0x2 + .wifirxiram.47 + 0x0000000040099254 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x20 (size before relaxing) + 0x0000000040099254 sta_rx_cb + *fill* 0x000000004009926c 0x0 + *fill* 0x000000004009926c 0x0 + *fill* 0x000000004009926c 0x0 + *fill* 0x000000004009926c 0x0 + *fill* 0x000000004009926c 0x0 + *fill* 0x000000004009926c 0x0 + *libnet80211.a:(.wifislprxiram .wifislprxiram.*) + .wifislprxiram.33 + 0x000000004009926c 0x8f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xa3 (size before relaxing) + 0x000000004009927c wifi_rf_phy_enable + *fill* 0x00000000400992fb 0x1 + .wifislprxiram.35 + 0x00000000400992fc 0x80 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x9c (size before relaxing) + 0x0000000040099304 wifi_rf_phy_disable + .wifislprxiram.113 + 0x000000004009937c 0x46 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x4e (size before relaxing) + 0x000000004009937c sta_reset_beacon_timeout + *fill* 0x00000000400993c2 0x0 + *libnewlib.a:abort.*(.literal .literal.* .text .text.*) + *fill* 0x00000000400993c2 0x2 + .text.abort 0x00000000400993c4 0x8d esp-idf/newlib/libnewlib.a(abort.c.obj) + 0x91 (size before relaxing) + 0x00000000400993c4 abort + *fill* 0x0000000040099451 0x0 + *libnewlib.a:assert.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040099451 0x3 + .text.ra_to_str + 0x0000000040099454 0x2f esp-idf/newlib/libnewlib.a(assert.c.obj) + *fill* 0x0000000040099483 0x1 + .text.__assert_func + 0x0000000040099484 0x10c esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x118 (size before relaxing) + 0x0000000040099484 __assert_func + *fill* 0x0000000040099590 0x0 + *fill* 0x0000000040099590 0x0 + .text.newlib_include_assert_impl + 0x0000000040099590 0x5 esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x0000000040099590 newlib_include_assert_impl + *libnewlib.a:heap.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040099595 0x3 + .text.malloc 0x0000000040099598 0xc esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x10 (size before relaxing) + 0x0000000040099598 pvalloc + 0x0000000040099598 valloc + 0x0000000040099598 malloc + .text.realloc 0x00000000400995a4 0x11 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x00000000400995a4 realloc + *fill* 0x00000000400995b5 0x3 + .text.free 0x00000000400995b8 0xa esp-idf/newlib/libnewlib.a(heap.c.obj) + 0xe (size before relaxing) + 0x00000000400995b8 free + 0x00000000400995b8 cfree + *fill* 0x00000000400995c2 0x2 + .text._malloc_r + 0x00000000400995c4 0xc esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x10 (size before relaxing) + 0x00000000400995c4 _malloc_r + .text._free_r 0x00000000400995d0 0xa esp-idf/newlib/libnewlib.a(heap.c.obj) + 0xe (size before relaxing) + 0x00000000400995d0 _free_r + *fill* 0x00000000400995da 0x2 + .text._realloc_r + 0x00000000400995dc 0x11 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x00000000400995dc _realloc_r + *fill* 0x00000000400995ed 0x3 + .text._calloc_r + 0x00000000400995f0 0x2c esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x30 (size before relaxing) + 0x00000000400995f0 _calloc_r + .text.calloc 0x000000004009961c 0x14 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x18 (size before relaxing) + 0x000000004009961c calloc + *fill* 0x0000000040099630 0x0 + *fill* 0x0000000040099630 0x0 + *fill* 0x0000000040099630 0x0 + *fill* 0x0000000040099630 0x0 + *fill* 0x0000000040099630 0x0 + .text.newlib_include_heap_impl + 0x0000000040099630 0x5 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x0000000040099630 newlib_include_heap_impl + *libnewlib.a:stdatomic.*(.literal .literal.* .text .text.*) + *libpp.a:(.wifi0iram .wifi0iram.*) + *fill* 0x0000000040099635 0x3 + .wifi0iram.15 0x0000000040099638 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000004009963c GetAccess + *fill* 0x000000004009964d 0x3 + .wifi0iram.34 0x0000000040099650 0x6d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x85 (size before relaxing) + 0x0000000040099654 lmacMSDUAged + *fill* 0x00000000400996bd 0x3 + .wifi0iram.50 0x00000000400996c0 0x49 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x59 (size before relaxing) + 0x00000000400996c0 lmacAdjustTimestamp + *fill* 0x0000000040099709 0x3 + .wifi0iram.51 0x000000004009970c 0x1f2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x23a (size before relaxing) + 0x0000000040099738 lmacTxFrame + *fill* 0x00000000400998fe 0x2 + .wifi0iram.55 0x0000000040099900 0x8f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xba (size before relaxing) + 0x0000000040099918 lmacTxDone + *fill* 0x000000004009998f 0x1 + .wifi0iram.16 0x0000000040099990 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x0000000040099994 lmacDiscardAgedMSDU + .wifi0iram.17 0x00000000400999a8 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x27 (size before relaxing) + 0x00000000400999a8 lmacRecycleMPDU + *fill* 0x00000000400999cb 0x1 + .wifi0iram.19 0x00000000400999cc 0x2a6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x2fa (size before relaxing) + 0x00000000400999f8 lmacEndFrameExchangeSequence + *fill* 0x0000000040099c72 0x2 + .wifi0iram.59 0x0000000040099c74 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x20 (size before relaxing) + 0x0000000040099c74 is_lmac_idle + .wifi0iram.8 0x0000000040099c90 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x1e (size before relaxing) + 0x0000000040099c94 pp_process_hmac_waiting_txq + *fill* 0x0000000040099caa 0x2 + .wifi0iram.12 0x0000000040099cac 0x8d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x95 (size before relaxing) + 0x0000000040099cac ppTxProtoProc + *fill* 0x0000000040099d39 0x3 + .wifi0iram.18 0x0000000040099d3c 0x68 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x6c (size before relaxing) + 0x0000000040099d3c ppProcTxCallback + .wifi0iram.20 0x0000000040099da4 0x94 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x98 (size before relaxing) + 0x0000000040099da4 pp_coex_tx_request + .wifi0iram.29 0x0000000040099e38 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x27 (size before relaxing) + 0x0000000040099e38 ppResumeTxAMPDU + *fill* 0x0000000040099e5b 0x1 + .wifi0iram.30 0x0000000040099e5c 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040099e60 ppCalSubFrameLength + *fill* 0x0000000040099e83 0x1 + .wifi0iram.50 0x0000000040099e84 0xf2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xfe (size before relaxing) + 0x0000000040099e88 ppSearchTxQueue + *fill* 0x0000000040099f76 0x2 + .wifi0iram.49 0x0000000040099f78 0x114 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x124 (size before relaxing) + 0x0000000040099f80 ppSearchTxframe + .wifi0iram.51 0x000000004009a08c 0x18d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x1a9 (size before relaxing) + 0x000000004009a098 ppMapTxQueue + *fill* 0x000000004009a219 0x3 + .wifi0iram.54 0x000000004009a21c 0x134 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x154 (size before relaxing) + 0x000000004009a23c ppProcTxSecFrame + .wifi0iram.56 0x000000004009a350 0x63 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x67 (size before relaxing) + 0x000000004009a35c ppCalFrameTimes + *fill* 0x000000004009a3b3 0x1 + .wifi0iram.13 0x000000004009a3b4 0x1ef /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x25f (size before relaxing) + 0x000000004009a3c8 ppTxPkt + *fill* 0x000000004009a5a3 0x1 + .wifi0iram.34 0x000000004009a5a4 0x2ae /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x2f2 (size before relaxing) + 0x000000004009a5b4 ppCalTxAMPDULength + *fill* 0x000000004009a852 0x2 + .wifi0iram.21 0x000000004009a854 0x122 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x162 (size before relaxing) + 0x000000004009a860 ppProcessTxQ + *fill* 0x000000004009a976 0x2 + .wifi0iram.36 0x000000004009a978 0x3d5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x439 (size before relaxing) + 0x000000004009a98c ppResortTxAMPDU + *fill* 0x000000004009ad4d 0x3 + .wifi0iram.10 0x000000004009ad50 0x1ff /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x237 (size before relaxing) + 0x000000004009ad8c ppTask + *fill* 0x000000004009af4f 0x1 + .wifi0iram.8 0x000000004009af50 0x6f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x73 (size before relaxing) + 0x000000004009af58 rcUpdateTxDone + *fill* 0x000000004009afbf 0x1 + .wifi0iram.10 0x000000004009afc0 0x35e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x386 (size before relaxing) + 0x000000004009aff0 rcUpdateTxDoneAmpdu2 + *fill* 0x000000004009b31e 0x2 + .wifi0iram.11 0x000000004009b320 0xd5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xdd (size before relaxing) + 0x000000004009b33c rcGetSched + *fill* 0x000000004009b3f5 0x3 + .wifi0iram.7 0x000000004009b3f8 0x6f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x9b (size before relaxing) + 0x000000004009b410 wdev_mac_reg_load + *fill* 0x000000004009b467 0x1 + .wifi0iram.8 0x000000004009b468 0x57 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x9b (size before relaxing) + 0x000000004009b468 wdev_mac_reg_store + *fill* 0x000000004009b4bf 0x1 + .wifi0iram.9 0x000000004009b4c0 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004009b4d0 wdev_mac_special_reg_load + .wifi0iram.10 0x000000004009b4e4 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x24 (size before relaxing) + 0x000000004009b4e8 wdev_mac_special_reg_store + .wifi0iram.13 0x000000004009b4fc 0x99 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xb5 (size before relaxing) + 0x000000004009b50c wdev_mac_wakeup + *fill* 0x000000004009b595 0x3 + .wifi0iram.14 0x000000004009b598 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x36 (size before relaxing) + 0x000000004009b598 wdev_is_data_in_rxlist + *fill* 0x000000004009b5c6 0x2 + .wifi0iram.15 0x000000004009b5c8 0x7c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xa8 (size before relaxing) + 0x000000004009b5cc wdev_mac_sleep + .wifi0iram.3 0x000000004009b644 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x34 (size before relaxing) + 0x000000004009b648 hal_mac_tx_config_timeout + .wifi0iram.4 0x000000004009b674 0x5f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x63 (size before relaxing) + 0x000000004009b67c hal_mac_tx_config_edca + *fill* 0x000000004009b6d3 0x1 + .wifi0iram.5 0x000000004009b6d4 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x2c (size before relaxing) + 0x000000004009b6d8 hal_mac_txq_enable + .wifi0iram.6 0x000000004009b6fc 0x5b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x000000004009b708 hal_mac_tx_get_blockack + *fill* 0x000000004009b757 0x1 + .wifi0iram.7 0x000000004009b758 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x000000004009b75c hal_random + *fill* 0x000000004009b769 0x3 + .wifi0iram.8 0x000000004009b76c 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x2f (size before relaxing) + 0x000000004009b774 hal_mac_is_low_rate_enabled + *fill* 0x000000004009b797 0x1 + .wifi0iram.16 0x000000004009b798 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x43 (size before relaxing) + 0x000000004009b7a0 hal_mac_deinit + *fill* 0x000000004009b7d3 0x1 + .wifi0iram.5 0x000000004009b7d4 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x000000004009b7d8 hal_mac_tx_is_cbw40 + *fill* 0x000000004009b7f4 0x0 + *fill* 0x000000004009b7f4 0x0 + *fill* 0x000000004009b7f4 0x0 + *fill* 0x000000004009b7f4 0x0 + *fill* 0x000000004009b7f4 0x0 + *fill* 0x000000004009b7f4 0x0 + *fill* 0x000000004009b7f4 0x0 + *fill* 0x000000004009b7f4 0x0 + *fill* 0x000000004009b7f4 0x0 + *fill* 0x000000004009b7f4 0x0 + *fill* 0x000000004009b7f4 0x0 + *fill* 0x000000004009b7f4 0x0 + .wifi0iram.31 0x000000004009b7f4 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004009b7f4 ppEmptyDelimiterLength + .wifi0iram.32 0x000000004009b814 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004009b814 ppSubFromAMPDU + *fill* 0x000000004009b830 0x0 + *fill* 0x000000004009b830 0x0 + *fill* 0x000000004009b830 0x0 + *fill* 0x000000004009b830 0x0 + *fill* 0x000000004009b830 0x0 + *fill* 0x000000004009b830 0x0 + *fill* 0x000000004009b830 0x0 + *fill* 0x000000004009b830 0x0 + *fill* 0x000000004009b830 0x0 + *fill* 0x000000004009b830 0x0 + *fill* 0x000000004009b830 0x0 + .wifi0iram.18 0x000000004009b830 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004009b830 trc_isTxAmpduOperational + *fill* 0x000000004009b842 0x2 + .wifi0iram.19 0x000000004009b844 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004009b844 trc_tid_isTxAmpduOperational + *fill* 0x000000004009b85b 0x1 + .wifi0iram.5 0x000000004009b85c 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004009b85c wdev_bank_store + *fill* 0x000000004009b87a 0x2 + .wifi0iram.6 0x000000004009b87c 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004009b87c wdev_bank_load + *fill* 0x000000004009b89a 0x0 + *fill* 0x000000004009b89a 0x0 + *fill* 0x000000004009b89a 0x0 + *fill* 0x000000004009b89a 0x0 + *fill* 0x000000004009b89a 0x0 + *fill* 0x000000004009b89a 0x0 + *fill* 0x000000004009b89a 0x0 + *fill* 0x000000004009b89a 0x0 + *fill* 0x000000004009b89a 0x0 + *fill* 0x000000004009b89a 0x0 + *libpp.a:(.wifiorslpiram .wifiorslpiram.*) + *fill* 0x000000004009b89a 0x2 + .wifiorslpiram.27 + 0x000000004009b89c 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x33 (size before relaxing) + 0x000000004009b8a0 wDev_GetNoiseFloor + *libpp.a:(.wifirxiram .wifirxiram.*) + *fill* 0x000000004009b8cb 0x1 + .wifirxiram.9 0x000000004009b8cc 0xfb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x10b (size before relaxing) + 0x000000004009b8d8 esf_buf_recycle + *fill* 0x000000004009b9c7 0x1 + .wifirxiram.16 + 0x000000004009b9c8 0x7e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x8e (size before relaxing) + 0x000000004009b9d8 pm_enable_active_timer + *fill* 0x000000004009ba46 0x2 + .wifirxiram.40 + 0x000000004009ba48 0x7c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x88 (size before relaxing) + 0x000000004009ba58 pm_rx_data_process + .wifirxiram.44 + 0x000000004009bac4 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x2a (size before relaxing) + 0x000000004009bac4 pm_on_data_rx + *fill* 0x000000004009bae0 0x0 + .wifirxiram.7 0x000000004009bae0 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x36 (size before relaxing) + 0x000000004009bae0 ppProcessRxPktHdr + *fill* 0x000000004009bb0e 0x2 + .wifirxiram.24 + 0x000000004009bb10 0x430 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x494 (size before relaxing) + 0x000000004009bb40 ppRxFragmentProc + .wifirxiram.9 0x000000004009bf40 0x80 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x84 (size before relaxing) + 0x000000004009bf40 rcUpdateRxDone + .wifirxiram.23 + 0x000000004009bfc0 0x52 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x5a (size before relaxing) + 0x000000004009bfc4 rc_get_trc + *fill* 0x000000004009c012 0x2 + .wifirxiram.25 + 0x000000004009c014 0x2f2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x32a (size before relaxing) + 0x000000004009c030 wDev_IndicateAmpdu + *fill* 0x000000004009c306 0x0 + *fill* 0x000000004009c306 0x0 + *fill* 0x000000004009c306 0x2 + .wifirxiram.41 + 0x000000004009c308 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x000000004009c308 pm_hmac_rx_data_process + *fill* 0x000000004009c30d 0x0 + *fill* 0x000000004009c30d 0x0 + *fill* 0x000000004009c30d 0x0 + *fill* 0x000000004009c30d 0x0 + *libpp.a:(.wifislprxiram .wifislprxiram.*) + *fill* 0x000000004009c30d 0x3 + .wifislprxiram.7 + 0x000000004009c310 0x150 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x16c (size before relaxing) + 0x000000004009c318 esf_buf_alloc + .wifislprxiram.3 + 0x000000004009c460 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x000000004009c460 ic_interface_enabled + .wifislprxiram.13 + 0x000000004009c474 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x000000004009c474 ic_mac_init + *fill* 0x000000004009c47e 0x2 + .wifislprxiram.14 + 0x000000004009c480 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x000000004009c480 ic_mac_deinit + *fill* 0x000000004009c48a 0x2 + .wifislprxiram.3 + 0x000000004009c48c 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x16 (size before relaxing) + 0x000000004009c48c pm_is_waked + *fill* 0x000000004009c49e 0x2 + .wifislprxiram.4 + 0x000000004009c4a0 0x58 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x70 (size before relaxing) + 0x000000004009c4a4 pm_sleep_for + .wifislprxiram.6 + 0x000000004009c4f8 0x1c6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x1fa (size before relaxing) + 0x000000004009c520 pm_parse_beacon + *fill* 0x000000004009c6be 0x2 + .wifislprxiram.19 + 0x000000004009c6c0 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x30 (size before relaxing) + 0x000000004009c6c4 pm_disable_sleep_delay_timer + .wifislprxiram.22 + 0x000000004009c6e8 0x7b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x7f (size before relaxing) + 0x000000004009c6ec pm_beacon_monitor_tbtt_start + *fill* 0x000000004009c763 0x1 + .wifislprxiram.23 + 0x000000004009c764 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x17 (size before relaxing) + 0x000000004009c764 pm_beacon_monitor_tbtt_stop + *fill* 0x000000004009c777 0x1 + .wifislprxiram.26 + 0x000000004009c778 0xdf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xff (size before relaxing) + 0x000000004009c780 pm_dream + *fill* 0x000000004009c857 0x1 + .wifislprxiram.27 + 0x000000004009c858 0x19a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x1ce (size before relaxing) + 0x000000004009c860 pm_sleep + *fill* 0x000000004009c9f2 0x2 + .wifislprxiram.28 + 0x000000004009c9f4 0x3a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x49 (size before relaxing) + 0x000000004009c9f4 pm_check_state + *fill* 0x000000004009ca2e 0x2 + .wifislprxiram.32 + 0x000000004009ca30 0x81 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x9d (size before relaxing) + 0x000000004009ca30 pm_keep_alive + *fill* 0x000000004009cab1 0x3 + .wifislprxiram.33 + 0x000000004009cab4 0x17d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x1a1 (size before relaxing) + 0x000000004009cac4 pm_process_tim + *fill* 0x000000004009cc31 0x3 + .wifislprxiram.34 + 0x000000004009cc34 0x46 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x4e (size before relaxing) + 0x000000004009cc34 pm_beacon_monitor_timeout_process + *fill* 0x000000004009cc7a 0x2 + .wifislprxiram.38 + 0x000000004009cc7c 0x117 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x137 (size before relaxing) + 0x000000004009cca4 pm_tbtt_process + *fill* 0x000000004009cd93 0x1 + .wifislprxiram.35 + 0x000000004009cd94 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x23 (size before relaxing) + 0x000000004009cd94 pm_beacon_monitor_tbtt_timeout_process + *fill* 0x000000004009cdaf 0x1 + .wifislprxiram.39 + 0x000000004009cdb0 0x97 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xab (size before relaxing) + 0x000000004009cdb0 pm_rx_beacon_process + *fill* 0x000000004009ce47 0x1 + .wifislprxiram.43 + 0x000000004009ce48 0xbb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xe7 (size before relaxing) + 0x000000004009ce50 pm_on_beacon_rx + *fill* 0x000000004009cf03 0x1 + .wifislprxiram.22 + 0x000000004009cf04 0xd9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x10d (size before relaxing) + 0x000000004009cf04 ppRxProtoProc + *fill* 0x000000004009cfdd 0x3 + .wifislprxiram.40 + 0x000000004009cfe0 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x22 (size before relaxing) + 0x000000004009cfe0 ppEnqueueRxq + *fill* 0x000000004009cffe 0x2 + .wifislprxiram.41 + 0x000000004009d000 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x29 (size before relaxing) + 0x000000004009d000 ppDequeueRxq_Locked + *fill* 0x000000004009d025 0x3 + .wifislprxiram.26 + 0x000000004009d028 0x109 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x141 (size before relaxing) + 0x000000004009d02c ppRxPkt + *fill* 0x000000004009d131 0x3 + .wifislprxiram.48 + 0x000000004009d134 0xf0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x127 (size before relaxing) + 0x000000004009d150 wDev_AppendRxBlocks + *fill* 0x000000004009d224 0x0 + .wifislprxiram.23 + 0x000000004009d224 0x23e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x27e (size before relaxing) + 0x000000004009d224 wDev_IndicateFrame + *fill* 0x000000004009d462 0x2 + .wifislprxiram.29 + 0x000000004009d464 0x305 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x385 (size before relaxing) + 0x000000004009d484 wDev_ProcessRxSucData + *fill* 0x000000004009d769 0x3 + .wifislprxiram.31 + 0x000000004009d76c 0xf8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x128 (size before relaxing) + 0x000000004009d77c wdevProcessRxSucDataAll + .wifislprxiram.52 + 0x000000004009d864 0x8c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xa0 (size before relaxing) + 0x000000004009d878 wDevCheckBlockError + .wifislprxiram.10 + 0x000000004009d8f0 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x000000004009d8f4 hal_mac_rx_read_rxdscrnext + *fill* 0x000000004009d901 0x3 + .wifislprxiram.11 + 0x000000004009d904 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x000000004009d908 hal_mac_rx_set_base + .wifislprxiram.15 + 0x000000004009d918 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x25 (size before relaxing) + 0x000000004009d91c hal_mac_init + *fill* 0x000000004009d939 0x3 + .wifislprxiram.3 + 0x000000004009d93c 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + 0x000000004009d940 hal_mac_rx_get_last_dscr + *fill* 0x000000004009d94d 0x3 + .wifislprxiram.4 + 0x000000004009d950 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + 0x14 (size before relaxing) + 0x000000004009d950 hal_mac_rx_is_dscr_reload + .wifislprxiram.5 + 0x000000004009d960 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + 0x1e (size before relaxing) + 0x000000004009d960 hal_mac_rx_set_dscr_reload + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *fill* 0x000000004009d97a 0x0 + *librtc.a:(.literal .literal.* .text .text.*) + *fill* 0x000000004009d97a 0x2 + .text.BT_tx_if_init + 0x000000004009d97c 0x8c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + 0x94 (size before relaxing) + 0x000000004009d988 BT_tx_if_init + .text.BT_init_rx_filters + 0x000000004009da08 0x294 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + 0x2bc (size before relaxing) + 0x000000004009da98 BT_init_rx_filters + .text.bt_bb_init_cmplx + 0x000000004009dc9c 0x236 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + 0x26e (size before relaxing) + 0x000000004009dce4 bt_bb_init_cmplx + *fill* 0x000000004009ded2 0x2 + .text.bt_bb_init_cmplx_reg + 0x000000004009ded4 0x89 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + 0xb5 (size before relaxing) + 0x000000004009ded4 bt_bb_init_cmplx_reg + *fill* 0x000000004009df5d 0x3 + .text.force_wifi_mode + 0x000000004009df60 0x9e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + 0xb2 (size before relaxing) + 0x000000004009df70 force_wifi_mode + *fill* 0x000000004009dffe 0x2 + .text.unforce_wifi_mode + 0x000000004009e000 0x76 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + 0x96 (size before relaxing) + 0x000000004009e000 unforce_wifi_mode + *fill* 0x000000004009e076 0x2 + .text.coex_bt_high_prio + 0x000000004009e078 0x107 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + 0x137 (size before relaxing) + 0x000000004009e084 coex_bt_high_prio + *fill* 0x000000004009e17f 0x1 + .text.temprature_sens_read + 0x000000004009e180 0xad /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + 0xe1 (size before relaxing) + 0x000000004009e180 temprature_sens_read + *fill* 0x000000004009e22d 0x0 + *fill* 0x000000004009e22d 0x0 + *fill* 0x000000004009e22d 0x0 + *fill* 0x000000004009e22d 0x0 + *fill* 0x000000004009e22d 0x0 + *fill* 0x000000004009e22d 0x0 + *libsoc.a:lldesc.*(.literal .literal.* .text .text.*) + *libspi_flash.a:flash_brownout_hook.*(.literal .literal.* .text .text.*) + *fill* 0x000000004009e22d 0x3 + .text.spi_flash_needs_reset_check + 0x000000004009e230 0x16 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x000000004009e230 spi_flash_needs_reset_check + *fill* 0x000000004009e246 0x2 + .text.spi_flash_set_erasing_flag + 0x000000004009e248 0xb esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x000000004009e248 spi_flash_set_erasing_flag + *fill* 0x000000004009e253 0x1 + .text.spi_flash_brownout_need_reset + 0x000000004009e254 0x20 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x000000004009e254 spi_flash_brownout_need_reset + *fill* 0x000000004009e274 0x0 + *fill* 0x000000004009e274 0x0 + *fill* 0x000000004009e274 0x0 + *libspi_flash.a:memspi_host_driver.*(.literal .literal.* .text .text.*) + .text.memspi_host_read_id_hs + 0x000000004009e274 0x82 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x86 (size before relaxing) + 0x000000004009e274 memspi_host_read_id_hs + *fill* 0x000000004009e2f6 0x2 + .text.memspi_host_flush_cache + 0x000000004009e2f8 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x000000004009e2f8 memspi_host_flush_cache + *fill* 0x000000004009e311 0x3 + .text.memspi_host_init_pointers + 0x000000004009e314 0x4e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x000000004009e314 memspi_host_init_pointers + *fill* 0x000000004009e362 0x2 + .text.memspi_host_read_status_hs + 0x000000004009e364 0x38 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x000000004009e364 memspi_host_read_status_hs + .text.memspi_host_write_data_slicer + 0x000000004009e39c 0x3e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x000000004009e39c memspi_host_write_data_slicer + *fill* 0x000000004009e3da 0x2 + .text.memspi_host_read_data_slicer + 0x000000004009e3dc 0x35 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x000000004009e3dc memspi_host_read_data_slicer + *fill* 0x000000004009e411 0x0 + *fill* 0x000000004009e411 0x0 + *fill* 0x000000004009e411 0x0 + *libspi_flash.a:spi_flash_chip_boya.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_gd.*(.literal .literal.* .text .text.*) + *fill* 0x000000004009e411 0x3 + .text.spi_flash_chip_gd_detect_size + 0x000000004009e414 0x35 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x000000004009e414 spi_flash_chip_gd_detect_size + *fill* 0x000000004009e449 0x3 + .text.spi_flash_chip_gd_probe + 0x000000004009e44c 0x39 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x000000004009e44c spi_flash_chip_gd_probe + *fill* 0x000000004009e485 0x3 + .text.spi_flash_chip_gd_set_io_mode + 0x000000004009e488 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x000000004009e488 spi_flash_chip_gd_set_io_mode + .text.spi_flash_chip_gd_get_io_mode + 0x000000004009e4cc 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x000000004009e4cc spi_flash_chip_gd_get_io_mode + *fill* 0x000000004009e4ea 0x2 + .text.spi_flash_chip_gd_get_caps + 0x000000004009e4ec 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x000000004009e4ec spi_flash_chip_gd_get_caps + *fill* 0x000000004009e505 0x0 + *fill* 0x000000004009e505 0x0 + *fill* 0x000000004009e505 0x3 + .text.spi_flash_chip_gd_suspend_cmd_conf + 0x000000004009e508 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x000000004009e508 spi_flash_chip_gd_suspend_cmd_conf + *libspi_flash.a:spi_flash_chip_generic.*(.literal .literal.* .text .text.*) + .text.spi_flash_chip_generic_detect_size + 0x000000004009e538 0x41 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004009e538 spi_flash_chip_generic_detect_size + *fill* 0x000000004009e579 0x3 + .text.spi_flash_chip_generic_write_encrypted + 0x000000004009e57c 0xd0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004009e57c spi_flash_chip_generic_write_encrypted + .text.spi_flash_chip_generic_config_host_io_mode + 0x000000004009e64c 0x152 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004009e64c spi_flash_chip_generic_config_host_io_mode + *fill* 0x000000004009e79e 0x2 + .text.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x000000004009e7a0 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x38 (size before relaxing) + 0x000000004009e7a0 spi_flash_common_read_status_16b_rdsr_rdsr2 + .text.spi_flash_common_write_status_16b_wrsr + 0x000000004009e7d4 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004009e7d4 spi_flash_common_write_status_16b_wrsr + *fill* 0x000000004009e7e9 0x3 + .text.spi_flash_chip_generic_read + 0x000000004009e7ec 0xb8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xc0 (size before relaxing) + 0x000000004009e7ec spi_flash_chip_generic_read + .text.spi_flash_chip_generic_write + 0x000000004009e8a4 0xb0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004009e8a4 spi_flash_chip_generic_write + .text.spi_flash_chip_generic_get_write_protect + 0x000000004009e954 0x3a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3e (size before relaxing) + 0x000000004009e954 spi_flash_chip_generic_get_write_protect + *fill* 0x000000004009e98e 0x2 + .text.spi_flash_chip_generic_yield + 0x000000004009e990 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x48 (size before relaxing) + 0x000000004009e990 spi_flash_chip_generic_yield + .text.spi_flash_chip_generic_suspend_cmd_conf + 0x000000004009e9d4 0x54 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x58 (size before relaxing) + 0x000000004009e9d4 spi_flash_chip_generic_suspend_cmd_conf + .text.spi_flash_chip_generic_read_unique_id + 0x000000004009ea28 0x97 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x9b (size before relaxing) + 0x000000004009ea28 spi_flash_chip_generic_read_unique_id + *fill* 0x000000004009eabf 0x1 + .text.spi_flash_common_read_status_8b_rdsr2 + 0x000000004009eac0 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004009eac0 spi_flash_common_read_status_8b_rdsr2 + *fill* 0x000000004009ead5 0x3 + .text.spi_flash_chip_generic_get_io_mode + 0x000000004009ead8 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004009ead8 spi_flash_chip_generic_get_io_mode + *fill* 0x000000004009eaf6 0x2 + .text.spi_flash_common_read_status_8b_rdsr + 0x000000004009eaf8 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004009eaf8 spi_flash_common_read_status_8b_rdsr + *fill* 0x000000004009eb0d 0x3 + .text.spi_flash_common_write_status_8b_wrsr + 0x000000004009eb10 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004009eb10 spi_flash_common_write_status_8b_wrsr + *fill* 0x000000004009eb25 0x3 + .text.spi_flash_common_write_status_8b_wrsr2 + 0x000000004009eb28 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004009eb28 spi_flash_common_write_status_8b_wrsr2 + *fill* 0x000000004009eb3d 0x3 + .text.spi_flash_chip_generic_set_io_mode + 0x000000004009eb40 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004009eb40 spi_flash_chip_generic_set_io_mode + *fill* 0x000000004009eb58 0x0 + *fill* 0x000000004009eb58 0x0 + .text.spi_flash_chip_generic_probe + 0x000000004009eb58 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004009eb58 spi_flash_chip_generic_probe + *fill* 0x000000004009eb5f 0x1 + .text.spi_flash_chip_generic_reset + 0x000000004009eb60 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004009eb60 spi_flash_chip_generic_reset + .text.spi_flash_chip_generic_erase_chip + 0x000000004009ebbc 0x8c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004009ebbc spi_flash_chip_generic_erase_chip + .text.spi_flash_chip_generic_erase_sector + 0x000000004009ec48 0x90 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004009ec48 spi_flash_chip_generic_erase_sector + .text.spi_flash_chip_generic_erase_block + 0x000000004009ecd8 0x90 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004009ecd8 spi_flash_chip_generic_erase_block + .text.spi_flash_chip_generic_page_program + 0x000000004009ed68 0x65 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004009ed68 spi_flash_chip_generic_page_program + *fill* 0x000000004009edcd 0x3 + .text.spi_flash_chip_generic_set_write_protect + 0x000000004009edd0 0x50 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004009edd0 spi_flash_chip_generic_set_write_protect + .text.spi_flash_chip_generic_read_reg + 0x000000004009ee20 0x12 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004009ee20 spi_flash_chip_generic_read_reg + *fill* 0x000000004009ee32 0x2 + .text.spi_flash_chip_generic_wait_idle + 0x000000004009ee34 0x94 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004009ee34 spi_flash_chip_generic_wait_idle + *fill* 0x000000004009eec8 0x0 + .text.spi_flash_chip_generic_get_caps + 0x000000004009eec8 0x17 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004009eec8 spi_flash_chip_generic_get_caps + *fill* 0x000000004009eedf 0x1 + .text.spi_flash_common_read_qe_sr + 0x000000004009eee0 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_common_write_qe_sr + 0x000000004009ef14 0x32 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000004009ef46 0x0 + *fill* 0x000000004009ef46 0x0 + *fill* 0x000000004009ef46 0x0 + *fill* 0x000000004009ef46 0x2 + .text.spi_flash_chip_generic_read_unique_id_none + 0x000000004009ef48 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004009ef48 spi_flash_chip_generic_read_unique_id_none + *fill* 0x000000004009ef50 0x0 + *fill* 0x000000004009ef50 0x0 + *fill* 0x000000004009ef50 0x0 + *fill* 0x000000004009ef50 0x0 + *fill* 0x000000004009ef50 0x0 + .text.spi_flash_common_set_io_mode + 0x000000004009ef50 0xa4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004009ef50 spi_flash_common_set_io_mode + *libspi_flash.a:spi_flash_chip_issi.*(.literal .literal.* .text .text.*) + .text.spi_flash_chip_issi_probe + 0x000000004009eff4 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x000000004009eff4 spi_flash_chip_issi_probe + *fill* 0x000000004009f01d 0x3 + .text.spi_flash_chip_issi_set_io_mode + 0x000000004009f020 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x18 (size before relaxing) + 0x000000004009f020 spi_flash_chip_issi_set_io_mode + .text.spi_flash_chip_issi_get_io_mode + 0x000000004009f034 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x20 (size before relaxing) + 0x000000004009f034 spi_flash_chip_issi_get_io_mode + *fill* 0x000000004009f050 0x0 + .text.spi_flash_chip_issi_get_caps + 0x000000004009f050 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x000000004009f050 spi_flash_chip_issi_get_caps + *fill* 0x000000004009f057 0x0 + *libspi_flash.a:spi_flash_chip_mxic.*(.literal .literal.* .text .text.*) + *fill* 0x000000004009f057 0x1 + .text.spi_flash_chip_mxic_probe + 0x000000004009f058 0x25 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x000000004009f058 spi_flash_chip_mxic_probe + *fill* 0x000000004009f07d 0x3 + .text.spi_flash_chip_mxic_get_caps + 0x000000004009f080 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x000000004009f080 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* 0x000000004009f087 0x1 + .text.spi_flash_command_winbond_program_4B + 0x000000004009f088 0x4d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *fill* 0x000000004009f0d5 0x3 + .text.spi_flash_chip_winbond_page_program + 0x000000004009f0d8 0x35 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x000000004009f0d8 spi_flash_chip_winbond_page_program + *fill* 0x000000004009f10d 0x3 + .text.spi_flash_command_winbond_erase_sector_4B + 0x000000004009f110 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .text.spi_flash_chip_winbond_erase_sector + 0x000000004009f158 0x52 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x000000004009f158 spi_flash_chip_winbond_erase_sector + *fill* 0x000000004009f1aa 0x2 + .text.spi_flash_command_erase_block_4B + 0x000000004009f1ac 0x4a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *fill* 0x000000004009f1f6 0x2 + .text.spi_flash_chip_winbond_erase_block + 0x000000004009f1f8 0x52 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x000000004009f1f8 spi_flash_chip_winbond_erase_block + *fill* 0x000000004009f24a 0x2 + .text.spi_flash_chip_winbond_read + 0x000000004009f24c 0xc8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0xcc (size before relaxing) + 0x000000004009f24c spi_flash_chip_winbond_read + *fill* 0x000000004009f314 0x0 + .text.spi_flash_chip_winbond_probe + 0x000000004009f314 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x000000004009f314 spi_flash_chip_winbond_probe + *fill* 0x000000004009f32a 0x2 + .text.spi_flash_chip_winbond_get_caps + 0x000000004009f32c 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x000000004009f32c spi_flash_chip_winbond_get_caps + *fill* 0x000000004009f345 0x0 + *fill* 0x000000004009f345 0x0 + *fill* 0x000000004009f345 0x0 + *fill* 0x000000004009f345 0x0 + *fill* 0x000000004009f345 0x0 + *fill* 0x000000004009f345 0x0 + *libspi_flash.a:spi_flash_wrap.*(.literal .literal.* .text .text.*) + *libxt_hal.a:(.literal .literal.* .text .text.*) + *fill* 0x000000004009f345 0x3 + .text 0x000000004009f348 0x137 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + 0x000000004009f348 xthal_spill_registers_into_stack_nw + 0x000000004009f348 xthal_window_spill_nw + 0x000000004009f45c xthal_window_spill + *fill* 0x000000004009f47f 0x1 + .text 0x000000004009f480 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + 0x000000004009f480 xthal_set_intclear + .text 0x000000004009f488 0x3e /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + 0x000000004009f488 xthal_restore_extra_nw + *fill* 0x000000004009f4c6 0x2 + .text 0x000000004009f4c8 0x3e /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + 0x000000004009f4c8 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* 0x000000004009f506 0x2 + .text 0x000000004009f508 0x186 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + 0x18e (size before relaxing) + 0x000000004009f508 _xt_context_save + 0x000000004009f5ac _xt_context_restore + 0x000000004009f5f0 _xt_coproc_init + 0x000000004009f604 _xt_coproc_release + 0x000000004009f648 _xt_coproc_savecs + 0x000000004009f66c _xt_coproc_restorecs + *fill* 0x000000004009f68e 0x0 + *fill* 0x000000004009f68e 0x2 + .text 0x000000004009f690 0x33 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + 0x000000004009f690 xt_ints_on + 0x000000004009f6a8 xt_ints_off + +.dram0.data 0x000000003ffbdb60 0x53cc + 0x000000003ffbdb60 _data_start = ABSOLUTE (.) + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + *(EXCLUDE_FILE(*libnimble.a *libbtdm_app.a *libbt.a *libble_app.a) .data EXCLUDE_FILE(*libnimble.a *libbtdm_app.a *libbt.a *libble_app.a) .data.*) + .data.pthread_lazy_init_lock + 0x000000003ffbdb60 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x000000003ffbdb60 pthread_lazy_init_lock + .data.s_keys_lock + 0x000000003ffbdb68 0x8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .data.esp_ipc_isr_end_fl + 0x000000003ffbdb70 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x000000003ffbdb70 esp_ipc_isr_end_fl + .data.s_ipc_isr_mux + 0x000000003ffbdb74 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .data 0x000000003ffbdb7c 0x10 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .data.s_panic_uart + 0x000000003ffbdb8c 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .data.rtc_wdt_ctx + 0x000000003ffbdb90 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .data.wdt0_context + 0x000000003ffbdb98 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .data.hooks_spinlock + 0x000000003ffbdba0 0x8 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .data.s_log_print_func + 0x000000003ffbdba8 0x4 esp-idf/log/liblog.a(log.c.obj) + .data.esp_log_default_level + 0x000000003ffbdbac 0x4 esp-idf/log/liblog.a(log.c.obj) + 0x000000003ffbdbac esp_log_default_level + .data.malloc_alwaysinternal_limit + 0x000000003ffbdbb0 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .data.registered_heaps_write_lock$0 + 0x000000003ffbdbb4 0x8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .data.first_call$0 + 0x000000003ffbdbbc 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + *fill* 0x000000003ffbdbbd 0x3 + .data.s_esp_rtc_time_lock + 0x000000003ffbdbc0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .data.spinlock + 0x000000003ffbdbc8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .data.periph_spinlock + 0x000000003ffbdbd0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .data.rtc_spinlock + 0x000000003ffbdbd8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x000000003ffbdbd8 rtc_spinlock + .data.mux 0x000000003ffbdbe0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .data.xKernelLock + 0x000000003ffbdbe8 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .data.lock_init_spinlock + 0x000000003ffbdbf0 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .data.s_stub_table + 0x000000003ffbdbf8 0x90 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .data.s_timer_lock + 0x000000003ffbdc88 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .data.timestamp_id + 0x000000003ffbdc90 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0x000000003ffbdc90 timestamp_id + .data.s_time_update_lock + 0x000000003ffbdca0 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0x000000003ffbdca0 s_time_update_lock + .data.s_fd_table + 0x000000003ffbdca8 0xc0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .data.s_registered_select_lock + 0x000000003ffbdd68 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .data.s_context + 0x000000003ffbdd70 0x6c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .data.g_coex_adapter_funcs + 0x000000003ffbdddc 0x58 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x000000003ffbdddc g_coex_adapter_funcs + .data.protobuf_c__allocator + 0x000000003ffbde34 0xc esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .data.global_hooks + 0x000000003ffbde40 0xc esp-idf/json/libjson.a(cJSON.c.obj) + *fill* 0x000000003ffbde4c 0x4 + .data 0x000000003ffbde50 0x400 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + 0x000000003ffbde50 _xt_interrupt_table + 0x000000003ffbe050 _xt_exception_table + .data 0x000000003ffbe250 0x14 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x000000003ffbe250 _xt_coproc_owner_sa + 0x000000003ffbe260 _xt_coproc_owner_sa_lock + .data.ESP_EFUSE_MAC_VERSION + 0x000000003ffbe264 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003ffbe264 ESP_EFUSE_MAC_VERSION + .data.ESP_EFUSE_MAC_CUSTOM + 0x000000003ffbe26c 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003ffbe26c ESP_EFUSE_MAC_CUSTOM + .data.ESP_EFUSE_CUSTOM_MAC_CRC + 0x000000003ffbe274 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003ffbe274 ESP_EFUSE_CUSTOM_MAC_CRC + .data.ESP_EFUSE_MAC_CRC + 0x000000003ffbe27c 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003ffbe27c ESP_EFUSE_MAC_CRC + .data.ESP_EFUSE_MAC + 0x000000003ffbe284 0x1c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003ffbe284 ESP_EFUSE_MAC + .data.uart_selectlock + 0x000000003ffbe2a0 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + .data.uart_context + 0x000000003ffbe2a8 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .data.s_cache_drv + 0x000000003ffbe2d8 0x8 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .data.s_flash_op_cpu + 0x000000003ffbe2e0 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .data.esp_flash_registered_chips + 0x000000003ffbe2e4 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0x000000003ffbe2e4 esp_flash_registered_chips + .data.default_registered_chips + 0x000000003ffbe2e8 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .data.reason_spinlock + 0x000000003ffbe300 0x8 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .data.spinlock + 0x000000003ffbe308 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .data.s_mac_table + 0x000000003ffbe310 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .data.g_wifi_feature_caps + 0x000000003ffbe348 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x000000003ffbe348 g_wifi_feature_caps + .data.g_wifi_osi_funcs + 0x000000003ffbe350 0x1d8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x000000003ffbe350 g_wifi_osi_funcs + .data.Rp$0 0x000000003ffbe528 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .data.Rp$1 0x000000003ffbe530 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .data.Rp$2 0x000000003ffbe538 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .data.mpi_one 0x000000003ffbe540 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .data.mbedtls_free_func + 0x000000003ffbe544 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .data.mbedtls_calloc_func + 0x000000003ffbe548 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .data.memset_func + 0x000000003ffbe54c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .data.aes_spinlock + 0x000000003ffbe550 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .data.engines_in_use_lock + 0x000000003ffbe558 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .data.memory_block_lock + 0x000000003ffbe560 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .data.libcoexist_reversion_git + 0x000000003ffbe568 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + 0x000000003ffbe568 libcoexist_reversion_git + .data.g_coex_param + 0x000000003ffbe56c 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0x000000003ffbe56c g_coex_param + .data.coex_schm_ble_default_bt_default_wifi_conn + 0x000000003ffbe578 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe578 coex_schm_ble_default_bt_default_wifi_conn + .data.coex_schm_ble_default_bt_a2dp_wifi_conn + 0x000000003ffbe582 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe582 coex_schm_ble_default_bt_a2dp_wifi_conn + .data.coex_schm_ble_default_bt_idle_wifi_conn + 0x000000003ffbe58c 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe58c coex_schm_ble_default_bt_idle_wifi_conn + .data.coex_schm_ble_mesh_standby_bt_default_wifi_conn + 0x000000003ffbe596 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe596 coex_schm_ble_mesh_standby_bt_default_wifi_conn + .data.coex_schm_ble_mesh_standby_bt_sniff_wifi_conn + 0x000000003ffbe5a4 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe5a4 coex_schm_ble_mesh_standby_bt_sniff_wifi_conn + .data.coex_schm_ble_mesh_standby_bt_a2dp_wifi_conn + 0x000000003ffbe5ae 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe5ae coex_schm_ble_mesh_standby_bt_a2dp_wifi_conn + .data.coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_conn + 0x000000003ffbe5bc 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe5bc coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_conn + .data.coex_schm_ble_mesh_standby_bt_conn_wifi_conn + 0x000000003ffbe5ca 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe5ca coex_schm_ble_mesh_standby_bt_conn_wifi_conn + .data.coex_schm_ble_mesh_standby_bt_iscan_wifi_conn + 0x000000003ffbe5d8 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe5d8 coex_schm_ble_mesh_standby_bt_iscan_wifi_conn + .data.coex_schm_ble_mesh_traffic_bt_default_wifi_conn + 0x000000003ffbe5e2 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe5e2 coex_schm_ble_mesh_traffic_bt_default_wifi_conn + .data.coex_schm_ble_mesh_traffic_bt_sniff_wifi_conn + 0x000000003ffbe5f0 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe5f0 coex_schm_ble_mesh_traffic_bt_sniff_wifi_conn + .data.coex_schm_ble_mesh_traffic_bt_a2dp_wifi_conn + 0x000000003ffbe5fa 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe5fa coex_schm_ble_mesh_traffic_bt_a2dp_wifi_conn + .data.coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_conn + 0x000000003ffbe608 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe608 coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_conn + .data.coex_schm_ble_mesh_traffic_bt_conn_wifi_conn + 0x000000003ffbe616 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe616 coex_schm_ble_mesh_traffic_bt_conn_wifi_conn + .data.coex_schm_ble_mesh_traffic_bt_iscan_wifi_conn + 0x000000003ffbe624 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe624 coex_schm_ble_mesh_traffic_bt_iscan_wifi_conn + .data.coex_schm_ble_mesh_config_bt_default_wifi_conn + 0x000000003ffbe62e 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe62e coex_schm_ble_mesh_config_bt_default_wifi_conn + .data.coex_schm_ble_mesh_config_bt_sniff_wifi_conn + 0x000000003ffbe63c 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe63c coex_schm_ble_mesh_config_bt_sniff_wifi_conn + .data.coex_schm_ble_mesh_config_bt_a2dp_wifi_conn + 0x000000003ffbe646 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe646 coex_schm_ble_mesh_config_bt_a2dp_wifi_conn + .data.coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_conn + 0x000000003ffbe654 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe654 coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_conn + .data.coex_schm_ble_mesh_config_bt_conn_wifi_conn + 0x000000003ffbe662 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe662 coex_schm_ble_mesh_config_bt_conn_wifi_conn + .data.coex_schm_ble_mesh_config_bt_iscan_wifi_conn + 0x000000003ffbe670 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe670 coex_schm_ble_mesh_config_bt_iscan_wifi_conn + .data.coex_schm_ble_mesh_standby_wifi_conn + 0x000000003ffbe67a 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe67a coex_schm_ble_mesh_standby_wifi_conn + .data.coex_schm_ble_mesh_traffic_wifi_conn + 0x000000003ffbe684 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe684 coex_schm_ble_mesh_traffic_wifi_conn + .data.coex_schm_ble_mesh_config_wifi_conn + 0x000000003ffbe68e 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe68e coex_schm_ble_mesh_config_wifi_conn + .data.coex_schm_bt_default_wifi_conn + 0x000000003ffbe698 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe698 coex_schm_bt_default_wifi_conn + .data.coex_schm_bt_sniff_wifi_conn + 0x000000003ffbe6a2 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe6a2 coex_schm_bt_sniff_wifi_conn + .data.coex_schm_bt_a2dp_wifi_conn + 0x000000003ffbe6a8 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe6a8 coex_schm_bt_a2dp_wifi_conn + .data.coex_schm_bt_a2dp_paused_wifi_conn + 0x000000003ffbe6b2 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe6b2 coex_schm_bt_a2dp_paused_wifi_conn + .data.coex_schm_bt_conn_wifi_conn + 0x000000003ffbe6bc 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe6bc coex_schm_bt_conn_wifi_conn + .data.coex_schm_bt_iscan_wifi_conn + 0x000000003ffbe6c6 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe6c6 coex_schm_bt_iscan_wifi_conn + .data.coex_schm_bt_idle_wifi_conn + 0x000000003ffbe6cc 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe6cc coex_schm_bt_idle_wifi_conn + .data.coex_schm_ble_default_bt_default_wifi_connecting + 0x000000003ffbe6d2 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe6d2 coex_schm_ble_default_bt_default_wifi_connecting + .data.coex_schm_ble_default_bt_a2dp_wifi_connecting + 0x000000003ffbe6dc 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe6dc coex_schm_ble_default_bt_a2dp_wifi_connecting + .data.coex_schm_ble_default_bt_idle_wifi_connecting + 0x000000003ffbe6e6 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe6e6 coex_schm_ble_default_bt_idle_wifi_connecting + .data.coex_schm_ble_mesh_standby_bt_default_wifi_connecting + 0x000000003ffbe6f0 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe6f0 coex_schm_ble_mesh_standby_bt_default_wifi_connecting + .data.coex_schm_ble_mesh_standby_bt_sniff_wifi_connecting + 0x000000003ffbe706 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe706 coex_schm_ble_mesh_standby_bt_sniff_wifi_connecting + .data.coex_schm_ble_mesh_standby_bt_a2dp_wifi_connecting + 0x000000003ffbe710 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe710 coex_schm_ble_mesh_standby_bt_a2dp_wifi_connecting + .data.coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_connecting + 0x000000003ffbe726 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe726 coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_connecting + .data.coex_schm_ble_mesh_standby_bt_conn_wifi_connecting + 0x000000003ffbe734 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe734 coex_schm_ble_mesh_standby_bt_conn_wifi_connecting + .data.coex_schm_ble_mesh_standby_bt_iscan_wifi_connecting + 0x000000003ffbe742 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe742 coex_schm_ble_mesh_standby_bt_iscan_wifi_connecting + .data.coex_schm_ble_mesh_traffic_bt_default_wifi_connecting + 0x000000003ffbe74c 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe74c coex_schm_ble_mesh_traffic_bt_default_wifi_connecting + .data.coex_schm_ble_mesh_traffic_bt_sniff_wifi_connecting + 0x000000003ffbe762 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe762 coex_schm_ble_mesh_traffic_bt_sniff_wifi_connecting + .data.coex_schm_ble_mesh_traffic_bt_a2dp_wifi_connecting + 0x000000003ffbe76c 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe76c coex_schm_ble_mesh_traffic_bt_a2dp_wifi_connecting + .data.coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_connecting + 0x000000003ffbe782 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe782 coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_connecting + .data.coex_schm_ble_mesh_traffic_bt_conn_wifi_connecting + 0x000000003ffbe790 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe790 coex_schm_ble_mesh_traffic_bt_conn_wifi_connecting + .data.coex_schm_ble_mesh_traffic_bt_iscan_wifi_connecting + 0x000000003ffbe79e 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe79e coex_schm_ble_mesh_traffic_bt_iscan_wifi_connecting + .data.coex_schm_ble_mesh_config_bt_default_wifi_connecting + 0x000000003ffbe7a8 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe7a8 coex_schm_ble_mesh_config_bt_default_wifi_connecting + .data.coex_schm_ble_mesh_config_bt_sniff_wifi_connecting + 0x000000003ffbe7b6 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe7b6 coex_schm_ble_mesh_config_bt_sniff_wifi_connecting + .data.coex_schm_ble_mesh_config_bt_a2dp_wifi_connecting + 0x000000003ffbe7c0 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe7c0 coex_schm_ble_mesh_config_bt_a2dp_wifi_connecting + .data.coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_connecting + 0x000000003ffbe7ce 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe7ce coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_connecting + .data.coex_schm_ble_mesh_config_bt_conn_wifi_connecting + 0x000000003ffbe7dc 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe7dc coex_schm_ble_mesh_config_bt_conn_wifi_connecting + .data.coex_schm_ble_mesh_config_bt_iscan_wifi_connecting + 0x000000003ffbe7ea 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe7ea coex_schm_ble_mesh_config_bt_iscan_wifi_connecting + .data.coex_schm_ble_mesh_standby_wifi_connecting + 0x000000003ffbe7f4 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe7f4 coex_schm_ble_mesh_standby_wifi_connecting + .data.coex_schm_ble_mesh_traffic_wifi_connecting + 0x000000003ffbe7fe 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe7fe coex_schm_ble_mesh_traffic_wifi_connecting + .data.coex_schm_ble_mesh_config_wifi_connecting + 0x000000003ffbe808 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe808 coex_schm_ble_mesh_config_wifi_connecting + .data.coex_schm_bt_default_wifi_connecting + 0x000000003ffbe812 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe812 coex_schm_bt_default_wifi_connecting + .data.coex_schm_bt_sniff_wifi_connecting + 0x000000003ffbe81c 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe81c coex_schm_bt_sniff_wifi_connecting + .data.coex_schm_bt_a2dp_wifi_connecting + 0x000000003ffbe822 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe822 coex_schm_bt_a2dp_wifi_connecting + .data.coex_schm_bt_a2dp_paused_wifi_connecting + 0x000000003ffbe82c 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe82c coex_schm_bt_a2dp_paused_wifi_connecting + .data.coex_schm_bt_conn_wifi_connecting + 0x000000003ffbe836 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe836 coex_schm_bt_conn_wifi_connecting + .data.coex_schm_bt_iscan_wifi_connecting + 0x000000003ffbe840 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe840 coex_schm_bt_iscan_wifi_connecting + .data.coex_schm_bt_idle_wifi_connecting + 0x000000003ffbe846 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe846 coex_schm_bt_idle_wifi_connecting + .data.coex_schm_ble_default_bt_default_wifi_scan + 0x000000003ffbe84c 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe84c coex_schm_ble_default_bt_default_wifi_scan + .data.coex_schm_ble_default_bt_a2dp_wifi_scan + 0x000000003ffbe856 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe856 coex_schm_ble_default_bt_a2dp_wifi_scan + .data.coex_schm_ble_default_bt_idle_wifi_scan + 0x000000003ffbe860 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe860 coex_schm_ble_default_bt_idle_wifi_scan + .data.coex_schm_ble_mesh_standby_bt_default_wifi_scan + 0x000000003ffbe86a 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe86a coex_schm_ble_mesh_standby_bt_default_wifi_scan + .data.coex_schm_ble_mesh_standby_bt_sniff_wifi_scan + 0x000000003ffbe880 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe880 coex_schm_ble_mesh_standby_bt_sniff_wifi_scan + .data.coex_schm_ble_mesh_standby_bt_a2dp_wifi_scan + 0x000000003ffbe88a 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe88a coex_schm_ble_mesh_standby_bt_a2dp_wifi_scan + .data.coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_scan + 0x000000003ffbe8a0 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe8a0 coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_scan + .data.coex_schm_ble_mesh_standby_bt_conn_wifi_scan + 0x000000003ffbe8ae 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe8ae coex_schm_ble_mesh_standby_bt_conn_wifi_scan + .data.coex_schm_ble_mesh_standby_bt_iscan_wifi_scan + 0x000000003ffbe8bc 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe8bc coex_schm_ble_mesh_standby_bt_iscan_wifi_scan + .data.coex_schm_ble_mesh_traffic_bt_default_wifi_scan + 0x000000003ffbe8c6 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe8c6 coex_schm_ble_mesh_traffic_bt_default_wifi_scan + .data.coex_schm_ble_mesh_traffic_bt_sniff_wifi_scan + 0x000000003ffbe8dc 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe8dc coex_schm_ble_mesh_traffic_bt_sniff_wifi_scan + .data.coex_schm_ble_mesh_traffic_bt_a2dp_wifi_scan + 0x000000003ffbe8e6 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe8e6 coex_schm_ble_mesh_traffic_bt_a2dp_wifi_scan + .data.coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_scan + 0x000000003ffbe8fc 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe8fc coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_scan + .data.coex_schm_ble_mesh_traffic_bt_conn_wifi_scan + 0x000000003ffbe90a 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe90a coex_schm_ble_mesh_traffic_bt_conn_wifi_scan + .data.coex_schm_ble_mesh_traffic_bt_iscan_wifi_scan + 0x000000003ffbe918 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe918 coex_schm_ble_mesh_traffic_bt_iscan_wifi_scan + .data.coex_schm_ble_mesh_config_bt_default_wifi_scan + 0x000000003ffbe922 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe922 coex_schm_ble_mesh_config_bt_default_wifi_scan + .data.coex_schm_ble_mesh_config_bt_sniff_wifi_scan + 0x000000003ffbe930 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe930 coex_schm_ble_mesh_config_bt_sniff_wifi_scan + .data.coex_schm_ble_mesh_config_bt_a2dp_wifi_scan + 0x000000003ffbe93a 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe93a coex_schm_ble_mesh_config_bt_a2dp_wifi_scan + .data.coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_scan + 0x000000003ffbe948 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe948 coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_scan + .data.coex_schm_ble_mesh_config_bt_conn_wifi_scan + 0x000000003ffbe956 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe956 coex_schm_ble_mesh_config_bt_conn_wifi_scan + .data.coex_schm_ble_mesh_config_bt_iscan_wifi_scan + 0x000000003ffbe964 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe964 coex_schm_ble_mesh_config_bt_iscan_wifi_scan + .data.coex_schm_ble_mesh_standby_wifi_scan + 0x000000003ffbe96e 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe96e coex_schm_ble_mesh_standby_wifi_scan + .data.coex_schm_ble_mesh_traffic_wifi_scan + 0x000000003ffbe978 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe978 coex_schm_ble_mesh_traffic_wifi_scan + .data.coex_schm_ble_mesh_config_wifi_scan + 0x000000003ffbe982 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe982 coex_schm_ble_mesh_config_wifi_scan + .data.coex_schm_bt_default_wifi_scan + 0x000000003ffbe98c 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe98c coex_schm_bt_default_wifi_scan + .data.coex_schm_bt_sniff_wifi_scan + 0x000000003ffbe996 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe996 coex_schm_bt_sniff_wifi_scan + .data.coex_schm_bt_a2dp_wifi_scan + 0x000000003ffbe99c 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe99c coex_schm_bt_a2dp_wifi_scan + .data.coex_schm_bt_a2dp_paused_wifi_scan + 0x000000003ffbe9a6 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe9a6 coex_schm_bt_a2dp_paused_wifi_scan + .data.coex_schm_bt_conn_wifi_scan + 0x000000003ffbe9b0 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe9b0 coex_schm_bt_conn_wifi_scan + .data.coex_schm_bt_iscan_wifi_scan + 0x000000003ffbe9ba 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe9ba coex_schm_bt_iscan_wifi_scan + .data.coex_schm_bt_idle_wifi_scan + 0x000000003ffbe9c0 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe9c0 coex_schm_bt_idle_wifi_scan + .data.coex_schm_all_default + 0x000000003ffbe9c6 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffbe9c6 coex_schm_all_default + .data.WIFI_MESH_EVENT + 0x000000003ffbe9d0 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffbe9d0 WIFI_MESH_EVENT + .data.g_wifi_event_mask + 0x000000003ffbe9d4 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffbe9d4 g_wifi_event_mask + .data.s_wifi_init_state + 0x000000003ffbe9d8 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.TmpSTAAPCloseAP + 0x000000003ffbe9dc 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000003ffbe9dc TmpSTAAPCloseAP + .data.g_mesh_self_organized + 0x000000003ffbe9dd 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x000000003ffbe9dd g_mesh_self_organized + .data.s_ndp_id + 0x000000003ffbe9de 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x000000003ffbe9de s_ndp_id + *fill* 0x000000003ffbe9df 0x1 + .data.g_wifi_nvs + 0x000000003ffbe9e0 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x000000003ffbe9e0 g_wifi_nvs + .data.s_raw_seq$12798 + 0x000000003ffbe9e4 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .data.country_info_24ghz + 0x000000003ffbe9e6 0xe6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + 0x000000003ffbe9e6 country_info_24ghz + .data.g_scan_chan_list + 0x000000003ffbeacc 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + *fill* 0x000000003ffbeada 0x2 + .data.g_scan 0x000000003ffbeadc 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000003ffbeadc g_scan + .data.g_dynamic_cs + 0x000000003ffbeae0 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000003ffbeae0 g_dynamic_cs + .data.s_ap_igtk_active_idx + 0x000000003ffbeaec 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .data.s_sta_igtk_active_idx + 0x000000003ffbeaee 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .data.g_timer_info + 0x000000003ffbeaf0 0x100 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000003ffbeaf0 g_timer_info + .data.g_chm 0x000000003ffbebf0 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x000000003ffbebf0 g_chm + .data.join_deny_flag + 0x000000003ffbebf4 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + *fill* 0x000000003ffbebf5 0x3 + .data.public_recv_action + 0x000000003ffbebf8 0x88 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.sa_query_recv_action + 0x000000003ffbec80 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.vendor_recv_action + 0x000000003ffbec88 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.ht_recv_action + 0x000000003ffbec8c 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.ba_recv_action + 0x000000003ffbec90 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.sa_query_send_action + 0x000000003ffbec9c 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.vendor_send_action + 0x000000003ffbeca4 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.ht_send_action + 0x000000003ffbeca8 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.ba_send_action + 0x000000003ffbecac 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.ccmp 0x000000003ffbecb8 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x000000003ffbecb8 ccmp + .data.sms4 0x000000003ffbecd0 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + 0x000000003ffbecd0 sms4 + .data.tkip 0x000000003ffbece8 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + 0x000000003ffbece8 tkip + .data.wep 0x000000003ffbed00 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + 0x000000003ffbed00 wep + .data.g_eb_list_desc + 0x000000003ffbed18 0xc8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x000000003ffbed18 g_eb_list_desc + .data.lmacConfMib + 0x000000003ffbede0 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000003ffbede0 lmacConfMib + .data.g_pm_cfg + 0x000000003ffbee10 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x000000003ffbee10 g_pm_cfg + .data.pTxRx 0x000000003ffbee3c 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffbee3c pTxRx + .data.TxRxCxt 0x000000003ffbee40 0x3cc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffbee40 TxRxCxt + .data.g_pp_timer_info + 0x000000003ffbf20c 0x60 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x000000003ffbf20c g_pp_timer_info + .data.rc11BSchedTbl + 0x000000003ffbf26c 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003ffbf26c rc11BSchedTbl + .data.rcP2P11GSchedTbl + 0x000000003ffbf2b4 0x60 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003ffbf2b4 rcP2P11GSchedTbl + .data.rc11GSchedTbl + 0x000000003ffbf314 0x9c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003ffbf314 rc11GSchedTbl + .data.rcP2P11NSchedTbl + 0x000000003ffbf3b0 0x6c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003ffbf3b0 rcP2P11NSchedTbl + .data.rc11NSchedTbl + 0x000000003ffbf41c 0xa8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003ffbf41c rc11NSchedTbl + .data.rcLoRaSchedTbl + 0x000000003ffbf4c4 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003ffbf4c4 rcLoRaSchedTbl + .data.BasicOFDMSched + 0x000000003ffbf4dc 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003ffbf4dc BasicOFDMSched + .data.trc_ctl 0x000000003ffbf4e8 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003ffbf4e8 trc_ctl + .data.BcnInterval + 0x000000003ffbf504 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffbf504 BcnInterval + .data.wDevCtrl + 0x000000003ffbf508 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffbf508 wDevCtrl + .data.spinlock_rtc_deep_sleep + 0x000000003ffbf540 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .data.tcp_port + 0x000000003ffbf548 0x2 esp-idf/lwip/liblwip.a(tcp.c.obj) + .data.udp_port + 0x000000003ffbf54a 0x2 esp-idf/lwip/liblwip.a(udp.c.obj) + .data.retrans_timer + 0x000000003ffbf54c 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000003ffbf54c retrans_timer + .data.reachable_time + 0x000000003ffbf550 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000003ffbf550 reachable_time + .data._g_esp_netif_netstack_default_wifi_sta + 0x000000003ffbf554 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + 0x000000003ffbf554 _g_esp_netif_netstack_default_wifi_sta + .data.g_allowed_groups + 0x000000003ffbf558 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x000000003ffbf558 g_allowed_groups + .data._ZN10__cxxabiv120__unexpected_handlerE + 0x000000003ffbf560 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + 0x000000003ffbf560 _ZN10__cxxabiv120__unexpected_handlerE + .data._ZN10__cxxabiv119__terminate_handlerE + 0x000000003ffbf564 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + 0x000000003ffbf564 _ZN10__cxxabiv119__terminate_handlerE + .data.phy_wifi_pll_track_en + 0x000000003ffbf568 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffbf568 phy_wifi_pll_track_en + .data.phy_bt_pll_track_en + 0x000000003ffbf569 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffbf569 phy_bt_pll_track_en + .data.chan14_mic_most_power + 0x000000003ffbf56a 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffbf56a chan14_mic_most_power + .data.phy_in_most_power_bk + 0x000000003ffbf56b 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffbf56b phy_in_most_power_bk + .data.phy_in_most_power + 0x000000003ffbf56c 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffbf56c phy_in_most_power + *fill* 0x000000003ffbf56d 0x3 + .data.tx_rf_ana_gain + 0x000000003ffbf570 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffbf570 tx_rf_ana_gain + .data.noise_array + 0x000000003ffbf574 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffbf574 noise_array + .data.wifi_bbgain_max + 0x000000003ffbf57a 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffbf57a wifi_bbgain_max + *fill* 0x000000003ffbf57b 0x1 + .data.bt_rx_gain_swp + 0x000000003ffbf57c 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .data.rfbb_gain_swp + 0x000000003ffbf584 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + *fill* 0x000000003ffbf585 0x3 + .data.wifi_rx_gain_swp + 0x000000003ffbf588 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .data.rfcal_bb_atten_init + 0x000000003ffbf594 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffbf594 rfcal_bb_atten_init + *fill* 0x000000003ffbf595 0x3 + .data 0x000000003ffbf598 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + 0x000000003ffbf598 __global_locale_ptr + *(.dram1 .dram1.*) + .dram1.4 0x000000003ffbf59c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.3 0x000000003ffbf5a4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.2 0x000000003ffbf5a8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.1 0x000000003ffbf5ac 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.0 0x000000003ffbf5b0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.0 0x000000003ffbf5b4 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000003ffbf5b4 FreeRTOS_openocd_params + *fill* 0x000000003ffbf5bc 0x4 + .dram1.3 0x000000003ffbf5c0 0xc00 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003ffbf5c0 port_IntStack + .dram1.2 0x000000003ffc01c0 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003ffc01c0 offset_xCoreID + .dram1.1 0x000000003ffc01c4 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003ffc01c4 offset_cpsa + .dram1.0 0x000000003ffc01c8 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003ffc01c8 offset_pxEndOfStack + .dram1.12 0x000000003ffc01cc 0x30 esp-idf/bt/libbt.a(hli_api.c.obj) + .dram1.10 0x000000003ffc01fc 0x20 esp-idf/bt/libbt.a(hli_api.c.obj) + .dram1.5 0x000000003ffc021c 0x4 esp-idf/bt/libbt.a(hli_api.c.obj) + .dram1.1 0x000000003ffc0220 0x40 esp-idf/bt/libbt.a(hli_api.c.obj) + .dram1.8 0x000000003ffc0260 0x8 esp-idf/bt/libbt.a(bt.c.obj) + .dram1.7 0x000000003ffc0268 0x4 esp-idf/bt/libbt.a(bt.c.obj) + .dram1.6 0x000000003ffc026c 0x1 esp-idf/bt/libbt.a(bt.c.obj) + .dram1.5 0x000000003ffc026d 0x1 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x000000003ffc026e 0x2 + .dram1.4 0x000000003ffc0270 0x4 esp-idf/bt/libbt.a(bt.c.obj) + .dram1.3 0x000000003ffc0274 0x8 esp-idf/bt/libbt.a(bt.c.obj) + .dram1.2 0x000000003ffc027c 0x4 esp-idf/bt/libbt.a(bt.c.obj) + .dram1.1 0x000000003ffc0280 0x8 esp-idf/bt/libbt.a(bt.c.obj) + .dram1.0 0x000000003ffc0288 0x4 esp-idf/bt/libbt.a(bt.c.obj) + .dram1.text 0x000000003ffc028c 0x1c4 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + .dram1.text 0x000000003ffc0450 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) + .dram1.text 0x000000003ffc0462 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) + .dram1.text 0x000000003ffc047a 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) + .dram1.text 0x000000003ffc049a 0x7f /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + *fill* 0x000000003ffc0519 0x3 + .dram1.text 0x000000003ffc051c 0x34 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + .dram1.text 0x000000003ffc0550 0x5b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) + .dram1.text 0x000000003ffc05ab 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) + *fill* 0x000000003ffc05d5 0x3 + .dram1.0 0x000000003ffc05d8 0x4 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.6 0x000000003ffc05dc 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x000000003ffc05dc g_flash_guard_default_ops + .dram1.25 0x000000003ffc05e4 0x1b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003ffc05ff 0x1 + .dram1.23 0x000000003ffc0600 0x1b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003ffc061b 0x1 + .dram1.2 0x000000003ffc061c 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x000000003ffc061c rom_spiflash_api_funcs + .dram1.1 0x000000003ffc0620 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .dram1.0 0x000000003ffc0630 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003ffc063a 0x2 + .dram1.2 0x000000003ffc063c 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.1 0x000000003ffc065c 0x2c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.16 0x000000003ffc0688 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .dram1.15 0x000000003ffc06b0 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .dram1.10 0x000000003ffc06c0 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x000000003ffc06c0 esp_flash_noos_functions + .dram1.5 0x000000003ffc06e8 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000003ffc06e8 spi_flash_chip_generic_timeout + .dram1.4 0x000000003ffc06fc 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .dram1.3 0x000000003ffc0714 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000003ffc0714 rom_flash_chip_dummy_hpm + .dram1.2 0x000000003ffc0718 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000003ffc0718 rom_flash_chip_dummy + .dram1.1 0x000000003ffc071c 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003ffc0722 0x2 + .dram1.0 0x000000003ffc0724 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003ffc072a 0x2 + .dram1.0 0x000000003ffc072c 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .dram1.1 0x000000003ffc0784 0xa8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .dram1.0 0x000000003ffc082c 0xa8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .dram1.3 0x000000003ffc08d4 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003ffc08ed 0x3 + .dram1.2 0x000000003ffc08f0 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .dram1.1 0x000000003ffc08f8 0x6 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003ffc08fe 0x2 + .dram1.0 0x000000003ffc0900 0x6 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003ffc0906 0x2 + .dram1.1 0x000000003ffc0908 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .dram1.0 0x000000003ffc0910 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .dram1.1 0x000000003ffc0918 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + 0x000000003ffc0918 g_coa_funcs_p + .dram1.25 0x000000003ffc091c 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .dram1.24 0x000000003ffc0928 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .dram1.23 0x000000003ffc094a 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .dram1.22 0x000000003ffc0956 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .dram1.21 0x000000003ffc0976 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .dram1.20 0x000000003ffc099d 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .dram1.15 0x000000003ffc09bf 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .dram1.5 0x000000003ffc09cb 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0x000000003ffc09cb coex_prio_tab + .dram1.4 0x000000003ffc09f2 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + *fill* 0x000000003ffc09f3 0x1 + .dram1.3 0x000000003ffc09f4 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0x000000003ffc09f4 coex_bb_rst_mux + .dram1.2 0x000000003ffc09f8 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0x000000003ffc09f8 coex_fwm_mux + .dram1.1 0x000000003ffc09fc 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0x000000003ffc09fc coex_env + .dram1.8 0x000000003ffc0a1c 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) + .dram1.6 0x000000003ffc0a1d 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .dram1.5 0x000000003ffc0a44 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .dram1.4 0x000000003ffc0a62 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + .dram1.3 0x000000003ffc0a63 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + .dram1.2 0x000000003ffc0a64 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + .dram1.1 0x000000003ffc0a78 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + .dram1.29 0x000000003ffc0a8c 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .dram1.28 0x000000003ffc0a98 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .dram1.27 0x000000003ffc0aa4 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .dram1.26 0x000000003ffc0ab0 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .dram1.25 0x000000003ffc0ad2 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .dram1.24 0x000000003ffc0af4 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .dram1.11 0x000000003ffc0b1a 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + *fill* 0x000000003ffc0b26 0x2 + .dram1.4 0x000000003ffc0b28 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .dram1.3 0x000000003ffc0b2c 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .dram1.2 0x000000003ffc0b30 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .dram1.1 0x000000003ffc0b34 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .dram1.6 0x000000003ffc0b48 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffc0b48 g_wifi_mac_time_delta + .dram1.5 0x000000003ffc0b4c 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffc0b4c g_osi_funcs_p + .dram1.5 0x000000003ffc0b50 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000003ffc0b50 g_intr_lock_mux + .dram1.4 0x000000003ffc0b54 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x000000003ffc0b54 g_mesh_is_root + *fill* 0x000000003ffc0b55 0x3 + .dram1.3 0x000000003ffc0b58 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x000000003ffc0b58 g_mesh_init_ps_type + .dram1.2 0x000000003ffc0b5c 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x000000003ffc0b5c g_mesh_is_started + .dram1.2 0x000000003ffc0b5d 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000003ffc0b5d g_sta_connected_flag + *fill* 0x000000003ffc0b5e 0x2 + .dram1.3 0x000000003ffc0b60 0x80 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x000000003ffc0b60 eb_txdesc_space + .dram1.5 0x000000003ffc0be0 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffc0be0 xphyQueue + .dram1.4 0x000000003ffc0be4 0x90 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffc0be4 bars + .dram1.3 0x000000003ffc0c74 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffc0c74 pp_sig_cnt + *fill* 0x000000003ffc0c92 0x2 + .dram1.3 0x000000003ffc0c94 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .dram1.45 0x000000003ffc0c98 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + *fill* 0x000000003ffc0c99 0x3 + .dram1.44 0x000000003ffc0c9c 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .dram1.43 0x000000003ffc0cb8 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .dram1.42 0x000000003ffc0cc0 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .dram1.18 0x000000003ffc0cd0 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .dram1.3 0x000000003ffc0cd4 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffc0cd8 _coredump_dram_start = ABSOLUTE (.) + *(.dram2.coredump .dram2.coredump.*) + 0x000000003ffc0cd8 _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.*) + 0x000000003ffc0cd8 . = ALIGN (0x4) + 0x000000003ffc0cd8 _bt_controller_data_start = ABSOLUTE (.) + *libble_app.a:(.data .data.*) + 0x000000003ffc0cd8 . = ALIGN (0x4) + 0x000000003ffc0cd8 _bt_controller_data_end = ABSOLUTE (.) + 0x000000003ffc0cd8 . = ALIGN (0x4) + 0x000000003ffc0cd8 _bt_data_start = ABSOLUTE (.) + *libbt.a:(.data .data.*) + .data 0x000000003ffc0cd8 0x111c esp-idf/bt/libbt.a(hli_vectors.S.obj) + .data.btdm_dram_available_region + 0x000000003ffc1df4 0x54 esp-idf/bt/libbt.a(bt.c.obj) + .data.ble_svc_gap_name + 0x000000003ffc1e48 0x20 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .data.ble_hs_cfg + 0x000000003ffc1e68 0x28 esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) + 0x000000003ffc1e68 ble_hs_cfg + .data.__compound_literal$4 + 0x000000003ffc1e90 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .data.__compound_literal$3 + 0x000000003ffc1e94 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .data.__compound_literal$2 + 0x000000003ffc1e98 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .data.__compound_literal$1 + 0x000000003ffc1e9c 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .data.__compound_literal$0 + 0x000000003ffc1ea0 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .data.g_os_mempool_list + 0x000000003ffc1ea4 0x8 esp-idf/bt/libbt.a(os_mempool.c.obj) + 0x000000003ffc1ea4 g_os_mempool_list + .data.g_msys_pool_list + 0x000000003ffc1eac 0x8 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x000000003ffc1eac g_msys_pool_list + .data.ble_port_mutex + 0x000000003ffc1eb4 0x8 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x000000003ffc1eb4 ble_port_mutex + 0x000000003ffc1ebc . = ALIGN (0x4) + 0x000000003ffc1ebc _bt_data_end = ABSOLUTE (.) + 0x000000003ffc1ebc . = ALIGN (0x4) + 0x000000003ffc1ebc _btdm_data_start = ABSOLUTE (.) + *libbtdm_app.a:(.data .data.*) + .data 0x000000003ffc1ebc 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + 0x000000003ffc1ebc dbg_assert_block + 0x000000003ffc1ec0 eif_api + .data 0x000000003ffc1ed0 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(btdm_log.o) + 0x000000003ffc1ed0 g_bt_plf_log_level + .data 0x000000003ffc1ed4 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + *fill* 0x000000003ffc1ed5 0x1 + .data 0x000000003ffc1ed6 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + 0x000000003ffc1ed6 SCAN_CHANNEL_SELECT_CONFIG + .data 0x000000003ffc1ed8 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + 0x000000003ffc1ee0 . = ALIGN (0x4) + *fill* 0x000000003ffc1edd 0x3 + 0x000000003ffc1ee0 _btdm_data_end = ABSOLUTE (.) + *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.4 + 0x000000003ffc1ee0 0xca esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x000000003ffc1faa 0x2 + .rodata.rtc_clk_cpu_freq_get_config.str1.4 + 0x000000003ffc1fac 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.rtc_clk_cpu_freq_to_xtal.str1.4 + 0x000000003ffc1fe8 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.__func__$25 + 0x000000003ffc2028 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.*) + *fill* 0x000000003ffc203f 0x1 + .rodata.esp_error_check_failed_print.str1.4 + 0x000000003ffc2040 0x5c esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .rodata._esp_error_check_failed.str1.4 + 0x000000003ffc209c 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.*) + *libhal.a:mmu_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.mmu_ll_entry_id_to_vaddr_base.str1.4 + 0x000000003ffc20ac 0x37 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x000000003ffc20e3 0x1 + .rodata.mmu_ll_check_entry_valid.str1.4 + 0x000000003ffc20e4 0x19 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x000000003ffc20fd 0x3 + .rodata.mmu_ll_get_entry_target.str1.4 + 0x000000003ffc2100 0x2b esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x000000003ffc212b 0x1 + .rodata.mmu_hal_paddr_to_vaddr.str1.4 + 0x000000003ffc212c 0x52 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x000000003ffc217e 0x2 + .rodata.mmu_hal_map_region.str1.4 + 0x000000003ffc2180 0xd5 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x000000003ffc2255 0x3 + .rodata.mmu_hal_vaddr_to_paddr.str1.4 + 0x000000003ffc2258 0x5f esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x000000003ffc22b7 0x1 + .rodata.__func__$2 + 0x000000003ffc22b8 0x1e esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x000000003ffc22d6 0x2 + .rodata.__func__$3 + 0x000000003ffc22d8 0x18 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$4 + 0x000000003ffc22f0 0x19 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x000000003ffc2309 0x3 + .rodata.__func__$5 + 0x000000003ffc230c 0x17 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x000000003ffc2323 0x1 + .rodata.__func__$6 + 0x000000003ffc2324 0x15 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x000000003ffc2339 0x3 + .rodata.__func__$7 + 0x000000003ffc233c 0x13 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x000000003ffc234f 0x1 + .rodata.__func__$8 + 0x000000003ffc2350 0x14 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$9 + 0x000000003ffc2364 0x13 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x000000003ffc2377 0x1 + .rodata.__func__$12 + 0x000000003ffc2378 0x19 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *libhal.a:spi_flash_encrypt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *fill* 0x000000003ffc2391 0x3 + .rodata.spi_flash_encrypt_ll_plaintext_save.str1.4 + 0x000000003ffc2394 0xe4 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .rodata.__func__$0 + 0x000000003ffc2478 0x24 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + *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.4 + 0x000000003ffc249c 0x54 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .rodata.__func__$0 + 0x000000003ffc24f0 0x15 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + *libnewlib.a:abort.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *fill* 0x000000003ffc2505 0x3 + .rodata.abort.str1.4 + 0x000000003ffc2508 0x26 esp-idf/newlib/libnewlib.a(abort.c.obj) + *fill* 0x000000003ffc252e 0x2 + .rodata 0x000000003ffc2530 0x2 esp-idf/newlib/libnewlib.a(abort.c.obj) + *libnewlib.a:assert.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *fill* 0x000000003ffc2532 0x2 + .rodata.__assert_func.str1.4 + 0x000000003ffc2534 0x2f esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x36 (size before relaxing) + *libnewlib.a:heap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libnewlib.a:stdatomic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + 0x000000003ffc2564 . = ALIGN (0x4) + *fill* 0x000000003ffc2563 0x1 + 0x000000003ffc2564 _nimble_data_start = ABSOLUTE (.) + *libnimble.a:(.data .data.*) + 0x000000003ffc2564 . = ALIGN (0x4) + 0x000000003ffc2564 _nimble_data_end = ABSOLUTE (.) + *libphy.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.str1.4 + 0x000000003ffc2564 0x57 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x5a (size before relaxing) + *fill* 0x000000003ffc25bb 0x1 + .rodata 0x000000003ffc25bc 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .rodata.bt_i2c_write_set + 0x000000003ffc25c4 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .rodata.bt_get_i2c_data + 0x000000003ffc25e8 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .rodata.CSWTCH$155 + 0x000000003ffc2614 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .rodata.CSWTCH$122 + 0x000000003ffc2624 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .rodata 0x000000003ffc2654 0x94 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .rodata.ram_set_pbus_mem + 0x000000003ffc26e8 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .rodata.str1.4 + 0x000000003ffc2714 0x1c8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x1dc (size before relaxing) + .rodata.bt_tx_gain_cal$part$3 + 0x000000003ffc28dc 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .rodata.CSWTCH$278 + 0x000000003ffc28fc 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + *fill* 0x000000003ffc2902 0x2 + .rodata 0x000000003ffc2904 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .rodata.str1.4 + 0x000000003ffc2928 0x18d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x191 (size before relaxing) + *fill* 0x000000003ffc2ab5 0x3 + .rodata.CSWTCH$265 + 0x000000003ffc2ab8 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .rodata.CSWTCH$261 + 0x000000003ffc2abc 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + *fill* 0x000000003ffc2ac7 0x1 + .rodata.CSWTCH$255 + 0x000000003ffc2ac8 0x3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + *fill* 0x000000003ffc2acb 0x1 + .rodata.CSWTCH$239 + 0x000000003ffc2acc 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .rodata.CSWTCH$229 + 0x000000003ffc2ad4 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .rodata.dco_gain_coarse$4633 + 0x000000003ffc2adc 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + *libsoc.a:lldesc.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:flash_brownout_hook.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:memspi_host_driver.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *fill* 0x000000003ffc2ae2 0x2 + .rodata.memspi_host_read_id_hs.str1.4 + 0x000000003ffc2ae4 0x25 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *fill* 0x000000003ffc2b09 0x3 + .rodata.TAG 0x000000003ffc2b0c 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* 0x000000003ffc2b13 0x1 + .rodata.esp_flash_chip_gd + 0x000000003ffc2b14 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x000000003ffc2b14 esp_flash_chip_gd + .rodata.chip_name + 0x000000003ffc2b90 0x3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + *libspi_flash.a:spi_flash_chip_generic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *fill* 0x000000003ffc2b93 0x1 + .rodata.spi_flash_chip_generic_read.str1.4 + 0x000000003ffc2b94 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_get_write_protect.str1.4 + 0x000000003ffc2bd8 0x4c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_suspend_cmd_conf.str1.4 + 0x000000003ffc2c24 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_read_unique_id.str1.4 + 0x000000003ffc2c84 0x53 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003ffc2cd7 0x1 + .rodata.__func__$0 + 0x000000003ffc2cd8 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003ffc2d01 0x3 + .rodata.esp_flash_chip_generic + 0x000000003ffc2d04 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000003ffc2d04 esp_flash_chip_generic + .rodata.chip_name + 0x000000003ffc2d80 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.TAG 0x000000003ffc2d88 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* 0x000000003ffc2d95 0x3 + .rodata.esp_flash_chip_issi + 0x000000003ffc2d98 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x000000003ffc2d98 esp_flash_chip_issi + .rodata.chip_name + 0x000000003ffc2e14 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* 0x000000003ffc2e19 0x3 + .rodata.esp_flash_chip_mxic + 0x000000003ffc2e1c 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x000000003ffc2e1c esp_flash_chip_mxic + .rodata.chip_name + 0x000000003ffc2e98 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + *libspi_flash.a:spi_flash_chip_th.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_winbond.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.spi_flash_chip_winbond_read.str1.4 + 0x000000003ffc2e9d 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *fill* 0x000000003ffc2e9d 0x3 + .rodata.esp_flash_chip_winbond + 0x000000003ffc2ea0 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x000000003ffc2ea0 esp_flash_chip_winbond + .rodata.chip_name + 0x000000003ffc2f1c 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .rodata.TAG 0x000000003ffc2f24 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.*) + 0x000000003ffc2f2c _data_end = ABSOLUTE (.) + 0x000000003ffc2f2c . = ALIGN (0x4) + +.ext_ram_noinit + 0x000000003f800000 0x0 + 0x000000003f800000 _ext_ram_noinit_start = ABSOLUTE (.) + *(.ext_ram_noinit*) + 0x000000003f800000 . = ALIGN (0x4) + 0x000000003f800000 _ext_ram_noinit_end = ABSOLUTE (.) + +.noinit 0x000000003ffc2f2c 0x0 + 0x000000003ffc2f2c . = ALIGN (0x4) + 0x000000003ffc2f2c _noinit_start = ABSOLUTE (.) + *(.noinit .noinit.*) + 0x000000003ffc2f2c . = ALIGN (0x4) + 0x000000003ffc2f2c _noinit_end = ABSOLUTE (.) + +.ext_ram.bss 0x000000003f800000 0x0 + 0x000000003f800000 _ext_ram_bss_start = ABSOLUTE (.) + 0x000000003f800000 . = ALIGN (0x4) + 0x000000003f800000 _ext_ram_bss_end = ABSOLUTE (.) + +.dram0.bss 0x000000003ffc2f30 0x6620 + 0x000000003ffc2f30 . = ALIGN (0x8) + 0x000000003ffc2f30 _bss_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*libnimble.a *libbtdm_app.a *libbt.a *libble_app.a) .bss EXCLUDE_FILE(*libnimble.a *libbtdm_app.a *libbt.a *libble_app.a) .bss.*) + .bss.app_elf_sha256_str + 0x000000003ffc2f30 0xa esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x000000003ffc2f30 app_elf_sha256_str + *fill* 0x000000003ffc2f3a 0x2 + .bss.s_pthread_cfg_key + 0x000000003ffc2f3c 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_threads_mux + 0x000000003ffc2f40 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_keys 0x000000003ffc2f44 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x000000003ffc2f44 s_keys + .bss.s_resume_cores + 0x000000003ffc2f48 0x1 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x000000003ffc2f49 0x3 + .bss.s_cpu_inited + 0x000000003ffc2f4c 0x2 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x000000003ffc2f4e 0x2 + .bss.s_cpu_up 0x000000003ffc2f50 0x2 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x000000003ffc2f52 0x2 + .bss.esp_ipc_isr_finish_cmd + 0x000000003ffc2f54 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.s_stored_interrupt_level + 0x000000003ffc2f58 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.s_count_of_nested_calls + 0x000000003ffc2f5c 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.s_stall_state + 0x000000003ffc2f64 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.esp_ipc_func_arg + 0x000000003ffc2f68 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x000000003ffc2f68 esp_ipc_func_arg + .bss.esp_ipc_func + 0x000000003ffc2f6c 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x000000003ffc2f6c esp_ipc_func + .bss.esp_ipc_isr_start_fl + 0x000000003ffc2f70 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x000000003ffc2f70 esp_ipc_isr_start_fl + .bss.int_wdt_cpu1_ticked + 0x000000003ffc2f74 0x1 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x000000003ffc2f74 int_wdt_cpu1_ticked + *fill* 0x000000003ffc2f75 0x3 + .bss.iwdt_context + 0x000000003ffc2f78 0x8 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .bss.s_panic_abort_details + 0x000000003ffc2f80 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .bss.g_panic_abort + 0x000000003ffc2f84 0x1 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x000000003ffc2f84 g_panic_abort + *fill* 0x000000003ffc2f85 0x3 + .bss.shutdown_handlers + 0x000000003ffc2f88 0x14 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .bss.s_system_full_inited + 0x000000003ffc2f9c 0x1 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x000000003ffc2f9d 0x3 + .bss.s_system_inited + 0x000000003ffc2fa0 0x2 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x000000003ffc2fa2 0x6 + .bss.g_startup_time + 0x000000003ffc2fa8 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x000000003ffc2fa8 g_startup_time + .bss.g_exc_frames + 0x000000003ffc2fb0 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x000000003ffc2fb0 g_exc_frames + .bss.tick_cb 0x000000003ffc2fb8 0x40 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss.idle_cb 0x000000003ffc2ff8 0x40 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss.s_log_cache_misses + 0x000000003ffc3038 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_cache_entry_count + 0x000000003ffc303c 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_cache_max_generation + 0x000000003ffc3040 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_cache + 0x000000003ffc3044 0xf8 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_tags + 0x000000003ffc313c 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.base$0 0x000000003ffc3140 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.s_log_mutex + 0x000000003ffc3144 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.alloc_failed_callback + 0x000000003ffc3148 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .bss.registered_heaps + 0x000000003ffc314c 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x000000003ffc314c registered_heaps + .bss.non_iram_int_disabled_flag + 0x000000003ffc3150 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003ffc3152 0x2 + .bss.non_iram_int_disabled + 0x000000003ffc3154 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss.non_iram_int_mask + 0x000000003ffc315c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss.vector_desc_head + 0x000000003ffc3164 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss.ref_counts + 0x000000003ffc3168 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x000000003ffc318a 0x2 + .bss.s_rtc_isr_handle + 0x000000003ffc318c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .bss.s_cur_pll_freq + 0x000000003ffc3190 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss.s_sar_power_on_cnt + 0x000000003ffc3194 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .bss.s_other_cpu_startup_done + 0x000000003ffc3198 0x1 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x000000003ffc3199 0x3 + .bss.xSwitchingContext + 0x000000003ffc319c 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxSchedulerSuspended + 0x000000003ffc31a4 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xIdleTaskHandle + 0x000000003ffc31ac 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xNextTaskUnblockTime + 0x000000003ffc31b4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxTaskNumber + 0x000000003ffc31b8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xNumOfOverflows + 0x000000003ffc31bc 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xYieldPending + 0x000000003ffc31c0 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xPendedTicks + 0x000000003ffc31c8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xSchedulerRunning + 0x000000003ffc31cc 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxTopReadyPriority + 0x000000003ffc31d0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xTickCount + 0x000000003ffc31d4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxCurrentNumberOfTasks + 0x000000003ffc31d8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xSuspendedTaskList + 0x000000003ffc31dc 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxDeletedTasksWaitingCleanUp + 0x000000003ffc31f0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xTasksWaitingTermination + 0x000000003ffc31f4 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xPendingReadyList + 0x000000003ffc3208 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxOverflowDelayedTaskList + 0x000000003ffc3230 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxDelayedTaskList + 0x000000003ffc3234 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xDelayedTaskList2 + 0x000000003ffc3238 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xDelayedTaskList1 + 0x000000003ffc324c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxReadyTasksLists + 0x000000003ffc3260 0x1f4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxCurrentTCB + 0x000000003ffc3454 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000003ffc3454 pxCurrentTCB + .bss.port_switch_flag + 0x000000003ffc345c 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003ffc345c port_switch_flag + .bss.port_uxOldInterruptState + 0x000000003ffc3464 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003ffc3464 port_uxOldInterruptState + .bss.port_uxCriticalNesting + 0x000000003ffc346c 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003ffc346c port_uxCriticalNesting + .bss.port_interruptNesting + 0x000000003ffc3474 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003ffc3474 port_interruptNesting + .bss.port_xSchedulerRunning + 0x000000003ffc347c 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003ffc347c port_xSchedulerRunning + .bss._xt_tick_divisor + 0x000000003ffc3484 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x000000003ffc3484 _xt_tick_divisor + .bss.s_common_recursive_mutex + 0x000000003ffc3488 0x54 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x000000003ffc3488 __lock___sinit_recursive_mutex + 0x000000003ffc3488 __lock___env_recursive_mutex + 0x000000003ffc3488 __lock___sfp_recursive_mutex + 0x000000003ffc3488 __lock___atexit_recursive_mutex + 0x000000003ffc3488 __lock___malloc_recursive_mutex + .bss.s_common_mutex + 0x000000003ffc34dc 0x54 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x000000003ffc34dc __lock___tz_mutex + 0x000000003ffc34dc __lock___arc4random_mutex + 0x000000003ffc34dc __lock___dd_hash_mutex + 0x000000003ffc34dc __lock___at_quick_exit_mutex + .bss.s_reent 0x000000003ffc3530 0xf0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .bss.s_time_lock + 0x000000003ffc3620 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + *fill* 0x000000003ffc3624 0x4 + .bss.s_adjtime_total_correction_us + 0x000000003ffc3628 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss.s_adjtime_start_us + 0x000000003ffc3630 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss.s_boot_time_lock + 0x000000003ffc3638 0x4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + *fill* 0x000000003ffc363c 0x4 + .bss.s_microseconds_offset + 0x000000003ffc3640 0x8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x000000003ffc3640 s_microseconds_offset + .bss.s_timer_task + 0x000000003ffc3648 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss.s_timers 0x000000003ffc364c 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss.s_correction_us + 0x000000003ffc3650 0x8 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .bss.s_alarm_handler + 0x000000003ffc3658 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .bss.s_timer_interrupt_handle + 0x000000003ffc365c 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .bss.s_wifi_adc_xpd_flag + 0x000000003ffc3660 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + *fill* 0x000000003ffc3661 0x3 + .bss.s_fd_table_lock + 0x000000003ffc3664 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.s_vfs_count + 0x000000003ffc3668 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.s_vfs 0x000000003ffc366c 0x20 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.vfs_console + 0x000000003ffc368c 0x8 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .bss.primary_vfs_index + 0x000000003ffc3694 0x4 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .bss.s_registered_select_num + 0x000000003ffc3698 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .bss.s_registered_selects + 0x000000003ffc369c 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .bss.retries$1 + 0x000000003ffc36a0 0x4 esp-idf/main/libmain.a(app_main.c.obj) + .bss.wifi_event_group + 0x000000003ffc36a4 0x4 esp-idf/main/libmain.a(app_main.c.obj) + .bss.sec1_params$3 + 0x000000003ffc36a8 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .bss.prov_ctx 0x000000003ffc36b0 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .bss.prov_ctx_lock + 0x000000003ffc36b4 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .bss.custom_manufacturer_data_len + 0x000000003ffc36b8 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + .bss.custom_manufacturer_data + 0x000000003ffc36bc 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + .bss.custom_service_uuid + 0x000000003ffc36c0 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + .bss.ble_cfg_p + 0x000000003ffc36c4 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .bss.uuid128_name_list + 0x000000003ffc36c8 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .bss.protocomm_ble_mfg_data_len + 0x000000003ffc36cc 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .bss.protocomm_ble_mfg_data + 0x000000003ffc36d0 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .bss.resp_data + 0x000000003ffc36d4 0x60 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .bss.adv_data 0x000000003ffc3734 0x60 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .bss.protocomm_ble_device_name + 0x000000003ffc3794 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .bss.adv_params + 0x000000003ffc3798 0xa esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + *fill* 0x000000003ffc37a2 0x2 + .bss.protoble_internal + 0x000000003ffc37a4 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .bss.own_addr_type + 0x000000003ffc37a8 0x1 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + *fill* 0x000000003ffc37a9 0x3 + .bss.data_mbuf_list + 0x000000003ffc37ac 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .bss.s_cached_conn_handle + 0x000000003ffc37b0 0x2 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + *fill* 0x000000003ffc37b2 0x2 + .bss.num_chr_dsc + 0x000000003ffc37b4 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .bss.ble_uuid_base + 0x000000003ffc37b8 0x10 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .bss.s_burn_counter + 0x000000003ffc37c8 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss.p_uart_obj + 0x000000003ffc37cc 0xc esp-idf/driver/libdriver.a(uart.c.obj) + .bss.s_mmu_ctx + 0x000000003ffc37d8 0x7c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .bss.flash_erasing + 0x000000003ffc3854 0x1 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .bss.flash_brownout_needs_reset + 0x000000003ffc3855 0x1 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .bss.s_flash_op_complete + 0x000000003ffc3856 0x1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_can_start + 0x000000003ffc3857 0x1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_mutex + 0x000000003ffc3858 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_cache_state + 0x000000003ffc385c 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_guard_ops + 0x000000003ffc3864 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .bss.esp_flash_default_chip + 0x000000003ffc3868 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x000000003ffc3868 esp_flash_default_chip + .bss.reason 0x000000003ffc386c 0x8 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .bss.s_func_arg + 0x000000003ffc3874 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_func 0x000000003ffc387c 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_ipc_ack + 0x000000003ffc3884 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_ipc_mutex + 0x000000003ffc388c 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_ipc_task_handle + 0x000000003ffc3894 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.p_twdt_obj + 0x000000003ffc389c 0x4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .bss.g_twdt_isr + 0x000000003ffc38a0 0x1 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x000000003ffc38a0 g_twdt_isr + *fill* 0x000000003ffc38a1 0x3 + .bss.init_context + 0x000000003ffc38a4 0xc esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .bss.s_cache_status + 0x000000003ffc38b0 0x8 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .bss.last_ccount$1 + 0x000000003ffc38b8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + *fill* 0x000000003ffc38bc 0x4 + .bss.s_reserve_status + 0x000000003ffc38c0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .bss.s_calibrated_freq + 0x000000003ffc38c8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .bss.s_default_loop + 0x000000003ffc38d0 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .bss._ZL13s_nvs_handles + 0x000000003ffc38d4 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .bss._ZN3nvs4Lock10mSemaphoreE + 0x000000003ffc38e0 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x000000003ffc38e0 _ZN3nvs4Lock10mSemaphoreE + .bss._ZN14NVSHandleEntry17s_nvs_next_handleE + 0x000000003ffc38e4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x000000003ffc38e4 _ZN14NVSHandleEntry17s_nvs_next_handleE + .bss._ZN3nvs19NVSPartitionManager8instanceE + 0x000000003ffc38e8 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x000000003ffc38e8 _ZN3nvs19NVSPartitionManager8instanceE + .bss.s_common_clock_disable_time$0 + 0x000000003ffc38ec 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .bss.s_is_phy_calibrated + 0x000000003ffc38f0 0x1 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x000000003ffc38f1 0x7 + .bss.s_phy_rf_en_ts + 0x000000003ffc38f8 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .bss.s_phy_access_ref + 0x000000003ffc3900 0x1 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x000000003ffc3901 0x3 + .bss.s_phy_access_lock + 0x000000003ffc3904 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .bss.s_list_lock + 0x000000003ffc3908 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .bss.s_esp_netif_counter + 0x000000003ffc390c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .bss.s_head 0x000000003ffc3910 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x000000003ffc3910 s_head + .bss.api_lock_sem + 0x000000003ffc3914 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss.api_sync_sem + 0x000000003ffc3918 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss.netif_callback + 0x000000003ffc391c 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss.s_is_last_default_esp_netif_overridden + 0x000000003ffc3924 0x1 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003ffc3925 0x3 + .bss.s_last_default_esp_netif + 0x000000003ffc3928 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss.s_wifi_mac_time_update_cb + 0x000000003ffc392c 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x000000003ffc392c s_wifi_mac_time_update_cb + .bss.wifi_default_handlers_set + 0x000000003ffc3930 0x1 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x000000003ffc3931 0x3 + .bss.s_wifi_netifs + 0x000000003ffc3934 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .bss.s_wifi_netifs + 0x000000003ffc3940 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .bss.s_wifi_rxcbs + 0x000000003ffc394c 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .bss.s_wifi_thread_sem_key$0 + 0x000000003ffc3958 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .bss.s_wifi_thread_sem_key_init$1 + 0x000000003ffc395c 0x1 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000003ffc395d 0x3 + .bss.init_done$1 + 0x000000003ffc3960 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.ecp_supported_grp_id + 0x000000003ffc3964 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.ecp_max_ops + 0x000000003ffc3998 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.mul_count + 0x000000003ffc399c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.dbl_count + 0x000000003ffc39a0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.add_count + 0x000000003ffc39a4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.engines_in_use + 0x000000003ffc39a8 0x1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x000000003ffc39a9 0x3 + .bss.engine_states + 0x000000003ffc39ac 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .bss.coex_enabled_ref + 0x000000003ffc39b8 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + *fill* 0x000000003ffc39b9 0x3 + .bss.coex_schm_env + 0x000000003ffc39bc 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffc39bc coex_schm_env + .bss.old_scan_id$13688 + 0x000000003ffc39f8 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + *fill* 0x000000003ffc39f9 0x3 + .bss.mesh_rxcb + 0x000000003ffc39fc 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffc39fc mesh_rxcb + .bss.s_wifi_api_lock + 0x000000003ffc3a00 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffc3a00 s_wifi_api_lock + .bss.g_pd_mac_in_light_sleep + 0x000000003ffc3a04 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffc3a04 g_pd_mac_in_light_sleep + *fill* 0x000000003ffc3a05 0x3 + .bss.wifi_sta_rx_probe_req + 0x000000003ffc3a08 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffc3a08 wifi_sta_rx_probe_req + .bss.s_wifi_stop_in_progress + 0x000000003ffc3a0c 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + *fill* 0x000000003ffc3a0d 0x3 + .bss.g_hmac_cnt + 0x000000003ffc3a10 0x40 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + 0x000000003ffc3a10 g_hmac_cnt + .bss.g_beacon_eb_allocated + 0x000000003ffc3a50 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + *fill* 0x000000003ffc3a51 0x3 + .bss.ap_rxcb 0x000000003ffc3a54 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000003ffc3a54 ap_rxcb + .bss.tim_offset + 0x000000003ffc3a58 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + *fill* 0x000000003ffc3a59 0x3 + .bss.BcnIntvl 0x000000003ffc3a5c 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .bss.g_beacon_idx + 0x000000003ffc3a60 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000003ffc3a60 g_beacon_idx + *fill* 0x000000003ffc3a61 0x3 + .bss.g_beacon_eb + 0x000000003ffc3a64 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000003ffc3a64 g_beacon_eb + .bss.g_beacon_dtim_send_mc + 0x000000003ffc3a6c 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .bss.beacon_send_start_flag + 0x000000003ffc3a6d 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + *fill* 0x000000003ffc3a6e 0x2 + .bss.beacon_timer + 0x000000003ffc3a70 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .bss.tokens$10989 + 0x000000003ffc3a84 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .bss.ap_id$12344 + 0x000000003ffc3a88 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x000000003ffc3a89 0x3 + .bss.mesh_deauth_reason + 0x000000003ffc3a8c 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .bss.g_wifi_global_lock + 0x000000003ffc3a90 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000003ffc3a90 g_wifi_global_lock + .bss.s_wifi_task_hdl + 0x000000003ffc3a94 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000003ffc3a94 s_wifi_task_hdl + .bss.s_wps_start + 0x000000003ffc3a98 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .bss.s_wpa2_start + 0x000000003ffc3a99 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .bss.g_mac_sleep_en + 0x000000003ffc3a9a 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000003ffc3a9a g_mac_sleep_en + *fill* 0x000000003ffc3a9b 0x1 + .bss.esp_mesh_quick_funcs + 0x000000003ffc3a9c 0xb0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x000000003ffc3a9c esp_mesh_quick_funcs + .bss.g_mesh_topology + 0x000000003ffc3b4c 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x000000003ffc3b4c g_mesh_topology + .bss.ndp_rxcb 0x000000003ffc3b50 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x000000003ffc3b50 ndp_rxcb + .bss.g_wifi_nvs_cfg + 0x000000003ffc3b54 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .bss.s_netstack_ref + 0x000000003ffc3b58 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x000000003ffc3b58 s_netstack_ref + .bss.s_encap_amsdu_func + 0x000000003ffc3b5c 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .bss.s_netstack_free + 0x000000003ffc3b60 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x000000003ffc3b60 s_netstack_free + .bss.len_dh_ie + 0x000000003ffc3b64 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .bss.g_wifi_improve_contention_ability + 0x000000003ffc3b65 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x000000003ffc3b65 g_wifi_improve_contention_ability + .bss.s_ch$11365 + 0x000000003ffc3b66 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .bss.TestStaFreqCalValInput + 0x000000003ffc3b68 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000003ffc3b68 TestStaFreqCalValInput + .bss.FreqCalCntForScan + 0x000000003ffc3b6a 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000003ffc3b6a FreqCalCntForScan + *fill* 0x000000003ffc3b6b 0x1 + .bss.s_owe_scan_flag + 0x000000003ffc3b6c 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .bss.connect_scan_flag + 0x000000003ffc3b70 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000003ffc3b70 connect_scan_flag + *fill* 0x000000003ffc3b71 0x1 + .bss.scannum 0x000000003ffc3b72 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000003ffc3b72 scannum + .bss.sta_csa_timer + 0x000000003ffc3b74 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000003ffc3b74 sta_csa_timer + .bss.sta_rxcb 0x000000003ffc3b88 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000003ffc3b88 sta_rxcb + .bss.rssi_index + 0x000000003ffc3b8c 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000003ffc3b8c rssi_index + *fill* 0x000000003ffc3b8d 0x3 + .bss.rssi_saved + 0x000000003ffc3b90 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000003ffc3b90 rssi_saved + .bss.in_rssi_adjust + 0x000000003ffc3b98 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000003ffc3b98 in_rssi_adjust + .bss.s_ap_igtk + 0x000000003ffc3b99 0x50 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .bss.s_sta_igtk + 0x000000003ffc3be9 0x50 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .bss.is_connected_sync + 0x000000003ffc3c39 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .bss.ap_no_lr 0x000000003ffc3c3a 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000003ffc3c3a ap_no_lr + .bss.reconnect_flag + 0x000000003ffc3c3b 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000003ffc3c3b reconnect_flag + .bss.in_blacklist_flag + 0x000000003ffc3c3c 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000003ffc3c3c in_blacklist_flag + .bss.wrong_password_flag + 0x000000003ffc3c3d 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000003ffc3c3d wrong_password_flag + .bss.s_sta_last_start_txseq + 0x000000003ffc3c3e 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .bss.g_cnx_probe_rc_list_cb + 0x000000003ffc3c40 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000003ffc3c40 g_cnx_probe_rc_list_cb + .bss.cnx_csa_timer + 0x000000003ffc3c44 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .bss.s_csa_timer_bss + 0x000000003ffc3c58 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .bss.avs_rx_content + 0x000000003ffc3c5c 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .bss.get_key_cb + 0x000000003ffc3c60 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .bss.avs_cb 0x000000003ffc3c64 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .bss.s_is_6m 0x000000003ffc3c68 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x000000003ffc3c68 s_is_6m + .bss.g_pp_tx_pkt_num + 0x000000003ffc3c69 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000003ffc3c69 g_pp_tx_pkt_num + *fill* 0x000000003ffc3c6a 0x2 + .bss.our_instances + 0x000000003ffc3c6c 0xb4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .bss.beacon_monitor_data$10995 + 0x000000003ffc3d20 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .bss.g_pm_tx_null_func + 0x000000003ffc3d34 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .bss.current_ifidx$11044 + 0x000000003ffc3d38 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + *fill* 0x000000003ffc3d39 0x7 + .bss.last_rx_rsc$10680 + 0x000000003ffc3d40 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.s_fragment + 0x000000003ffc3d48 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffc3d48 s_fragment + .bss.s_wifi_queue + 0x000000003ffc3d50 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffc3d50 s_wifi_queue + .bss.s_michael_mic_failure_cb + 0x000000003ffc3d54 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.s_pp_task_create_sem + 0x000000003ffc3d58 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.s_pp_task_del_sem + 0x000000003ffc3d5c 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.pp_task_hdl + 0x000000003ffc3d60 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.g_config_func + 0x000000003ffc3d64 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.g_timer_func + 0x000000003ffc3d68 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.g_net80211_tx_func + 0x000000003ffc3d6c 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.g_tx_done_cb_func + 0x000000003ffc3d70 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + *fill* 0x000000003ffc3d74 0x4 + .bss.g_pm_cnt 0x000000003ffc3d78 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x000000003ffc3d78 g_pm_cnt + .bss.g_lmac_cnt + 0x000000003ffc3dc0 0xb4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x000000003ffc3dc0 g_lmac_cnt + .bss.s_timer_post + 0x000000003ffc3e74 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .bss.s_fix_rate_mask + 0x000000003ffc3e78 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003ffc3e78 s_fix_rate_mask + .bss.g_per_conn_trc + 0x000000003ffc3e7c 0x58 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .bss.dbg_rx_all_count + 0x000000003ffc3ed4 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffc3ed4 dbg_rx_all_count + .bss.BcnSendTick + 0x000000003ffc3ed8 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffc3ed8 BcnSendTick + .bss.wDevMacSleep + 0x000000003ffc3edc 0x70 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffc3edc wDevMacSleep + .bss.g_wdev_csi_rx_ctx + 0x000000003ffc3f4c 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffc3f4c g_wdev_csi_rx_ctx + .bss.g_wdev_csi_rx + 0x000000003ffc3f50 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffc3f50 g_wdev_csi_rx + .bss.g_wdev_nan_is_in_dw_cb + 0x000000003ffc3f54 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffc3f54 g_wdev_nan_is_in_dw_cb + .bss.g_wdev_last_desc_reset + 0x000000003ffc3f58 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffc3f58 g_wdev_last_desc_reset + *fill* 0x000000003ffc3f59 0x3 + .bss.s_partition_list_lock + 0x000000003ffc3f5c 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .bss.s_partition_list + 0x000000003ffc3f60 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .bss.curr_partition$2 + 0x000000003ffc3f64 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss.s_dslp_cb + 0x000000003ffc3f68 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_crypto_mpi_lock + 0x000000003ffc3f74 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .bss.select_cb_list + 0x000000003ffc3f78 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.select_cb_ctr + 0x000000003ffc3f7c 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.sockets 0x000000003ffc3f80 0xc8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.socket_ipv6_multicast_memberships + 0x000000003ffc4048 0x118 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.socket_ipv4_multicast_memberships + 0x000000003ffc4160 0x78 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.tcpip_mbox + 0x000000003ffc41d8 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .bss.tcpip_init_done_arg + 0x000000003ffc41dc 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .bss.tcpip_init_done + 0x000000003ffc41e0 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .bss.dns_servers + 0x000000003ffc41e4 0x48 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.ip_data 0x000000003ffc422c 0x44 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x000000003ffc422c ip_data + .bss.loop_netif + 0x000000003ffc4270 0xfc esp-idf/lwip/liblwip.a(netif.c.obj) + .bss.netif_num + 0x000000003ffc436c 0x1 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003ffc436d 0x3 + .bss.netif_default + 0x000000003ffc4370 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x000000003ffc4370 netif_default + .bss.netif_list + 0x000000003ffc4374 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x000000003ffc4374 netif_list + .bss.ext_callback + 0x000000003ffc4378 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .bss.pbuf_free_ooseq_pending + 0x000000003ffc437c 0x1 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x000000003ffc437c pbuf_free_ooseq_pending + *fill* 0x000000003ffc437d 0x3 + .bss.raw_pcbs 0x000000003ffc4380 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) + .bss.tcp_timer_ctr + 0x000000003ffc4384 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) + .bss.tcp_timer + 0x000000003ffc4385 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) + .bss.tcp_active_pcbs_changed + 0x000000003ffc4386 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003ffc4386 tcp_active_pcbs_changed + *fill* 0x000000003ffc4387 0x1 + .bss.tcp_tw_pcbs + 0x000000003ffc4388 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003ffc4388 tcp_tw_pcbs + .bss.tcp_active_pcbs + 0x000000003ffc438c 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003ffc438c tcp_active_pcbs + .bss.tcp_listen_pcbs + 0x000000003ffc4390 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003ffc4390 tcp_listen_pcbs + .bss.tcp_bound_pcbs + 0x000000003ffc4394 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003ffc4394 tcp_bound_pcbs + .bss.tcp_ticks + 0x000000003ffc4398 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003ffc4398 tcp_ticks + .bss.tcp_input_pcb + 0x000000003ffc439c 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x000000003ffc439c tcp_input_pcb + .bss.recv_data + 0x000000003ffc43a0 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.recv_flags + 0x000000003ffc43a4 0x1 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.flags 0x000000003ffc43a5 0x1 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcplen 0x000000003ffc43a6 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.recv_acked + 0x000000003ffc43a8 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003ffc43aa 0x2 + .bss.ackno 0x000000003ffc43ac 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.seqno 0x000000003ffc43b0 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcp_optidx + 0x000000003ffc43b4 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003ffc43b6 0x2 + .bss.tcphdr_opt2 + 0x000000003ffc43b8 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcphdr_opt1len + 0x000000003ffc43bc 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcphdr_optlen + 0x000000003ffc43be 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcphdr 0x000000003ffc43c0 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.inseg 0x000000003ffc43c4 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcpip_tcp_timer_active + 0x000000003ffc43d4 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .bss.current_timeout_due_time + 0x000000003ffc43d8 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .bss.next_timeout + 0x000000003ffc43dc 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .bss.udp_pcbs 0x000000003ffc43e0 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x000000003ffc43e0 udp_pcbs + .bss.xid$12 0x000000003ffc43e4 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .bss.dhcp_pcb_refcount + 0x000000003ffc43e8 0x1 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003ffc43e9 0x3 + .bss.dhcp_pcb 0x000000003ffc43ec 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .bss.dhcp_rx_options_given + 0x000000003ffc43f0 0xb esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x000000003ffc43f0 dhcp_rx_options_given + *fill* 0x000000003ffc43fb 0x1 + .bss.dhcp_rx_options_val + 0x000000003ffc43fc 0x2c esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x000000003ffc43fc dhcp_rx_options_val + .bss.etharp_cached_entry + 0x000000003ffc4428 0x1 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003ffc4429 0x3 + .bss.arp_table + 0x000000003ffc442c 0xf0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .bss.is_tmr_start + 0x000000003ffc451c 0x1 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000003ffc451d 0x3 + .bss.allrouters + 0x000000003ffc4520 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) + .bss.allsystems + 0x000000003ffc4524 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) + .bss.ip4_default_multicast_netif + 0x000000003ffc4528 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) + .bss.ip_id 0x000000003ffc452c 0x2 esp-idf/lwip/liblwip.a(ip4.c.obj) + *fill* 0x000000003ffc452e 0x2 + .bss.identification$1 + 0x000000003ffc4530 0x4 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .bss.is_tmr_start + 0x000000003ffc4534 0x1 esp-idf/lwip/liblwip.a(mld6.c.obj) + .bss.last_router$1 + 0x000000003ffc4535 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003ffc4536 0x2 + .bss.nd6_ra_buffer + 0x000000003ffc4538 0x20 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss.nd6_tmr_rs_reduction + 0x000000003ffc4558 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003ffc4559 0x3 + .bss.multicast_address + 0x000000003ffc455c 0x14 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss.nd6_cached_destination_index + 0x000000003ffc4570 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss.nd6_cached_neighbor_index + 0x000000003ffc4571 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003ffc4572 0x2 + .bss.default_router_list + 0x000000003ffc4574 0x24 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000003ffc4574 default_router_list + .bss.prefix_list + 0x000000003ffc4598 0x8c esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000003ffc4598 prefix_list + .bss.destination_cache + 0x000000003ffc4624 0x1e0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000003ffc4624 destination_cache + .bss.neighbor_cache + 0x000000003ffc4804 0xdc esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000003ffc4804 neighbor_cache + .bss.base_time + 0x000000003ffc48e0 0x4 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .bss.input 0x000000003ffc48e4 0x40 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .bss.lwip_task$1 + 0x000000003ffc4924 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .bss.sys_thread_sem_key + 0x000000003ffc4928 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .bss.g_lwip_protect_mutex + 0x000000003ffc492c 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .bss.wpa_cb 0x000000003ffc4930 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x000000003ffc4930 wpa_cb + .bss.wifi_funcs + 0x000000003ffc4934 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x000000003ffc4934 wifi_funcs + .bss.g_wpa_supp + 0x000000003ffc4938 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x000000003ffc4938 g_wpa_supp + .bss.g_wpa3_hostap_auth_api_lock + 0x000000003ffc49e0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x000000003ffc49e0 g_wpa3_hostap_auth_api_lock + .bss.g_wpa3_hostap_evt_queue + 0x000000003ffc49e4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_wpa3_hostap_task_hdl + 0x000000003ffc49e8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_sae_confirm + 0x000000003ffc49ec 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_sae_commit + 0x000000003ffc49f0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_sae_token + 0x000000003ffc49f4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_sae_data + 0x000000003ffc49f8 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_sae_pt 0x000000003ffc4a4c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.global_hapd + 0x000000003ffc4a50 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x000000003ffc4a50 global_hapd + .bss.eloop 0x000000003ffc4a54 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .bss.eloop_data_lock + 0x000000003ffc4a74 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .bss.s_sm_valid_bitmap + 0x000000003ffc4a78 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .bss.s_sm_table + 0x000000003ffc4a7c 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .bss.assoc_ie_buf + 0x000000003ffc4abc 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000003ffc4abc assoc_ie_buf + .bss.gWpaSm 0x000000003ffc4aec 0x338 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000003ffc4aec gWpaSm + .bss.g_misc_nvs_init + 0x000000003ffc4e24 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + *fill* 0x000000003ffc4e25 0x3 + .bss._ZN12_GLOBAL__N_113__new_handlerE + 0x000000003ffc4e28 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .bss._ZL4init 0x000000003ffc4e2c 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .bss._ZN17__eh_globals_init7_S_initE + 0x000000003ffc4e30 0x1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x000000003ffc4e30 _ZN17__eh_globals_init7_S_initE + *fill* 0x000000003ffc4e31 0x3 + .bss._ZN12_GLOBAL__N_110eh_globalsE + 0x000000003ffc4e34 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .bss._ZN12_GLOBAL__N_114emergency_poolE + 0x000000003ffc4e3c 0x10 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .bss.bt_pwr_track_num + 0x000000003ffc4e4c 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffc4e4c bt_pwr_track_num + .bss.bt_pwr_freq_old + 0x000000003ffc4e4d 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffc4e4d bt_pwr_freq_old + .bss.bt_pwr_cap_sum_old + 0x000000003ffc4e4e 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffc4e4e bt_pwr_cap_sum_old + *fill* 0x000000003ffc4e4f 0x1 + .bss.bt_pwr_cap_sum + 0x000000003ffc4e50 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffc4e50 bt_pwr_cap_sum + .bss.btpwr_atten_offset + 0x000000003ffc4e52 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffc4e52 btpwr_atten_offset + .bss.btpwr_tsen_flag + 0x000000003ffc4e53 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffc4e53 btpwr_tsen_flag + .bss.btpwr_tsen_old + 0x000000003ffc4e54 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffc4e54 btpwr_tsen_old + .bss.btpwr_tsen_init + 0x000000003ffc4e55 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffc4e55 btpwr_tsen_init + .bss.rfpll_offset_delta + 0x000000003ffc4e56 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffc4e56 rfpll_offset_delta + .bss.phy_bt_power_track_en + 0x000000003ffc4e58 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffc4e58 phy_bt_power_track_en + .bss.phy_sw_set_chan_en + 0x000000003ffc4e59 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffc4e59 phy_sw_set_chan_en + .bss.phy_force_wifi_chan_en + 0x000000003ffc4e5a 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffc4e5a phy_force_wifi_chan_en + .bss.phy_freq_wifi_only + 0x000000003ffc4e5b 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffc4e5b phy_freq_wifi_only + .bss.phy_freq_offset + 0x000000003ffc4e5c 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffc4e5c phy_freq_offset + *fill* 0x000000003ffc4e5e 0x2 + .bss.g_phyFuns + 0x000000003ffc4e60 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffc4e60 g_phyFuns + .bss.bt_dig_gain_force + 0x000000003ffc4e64 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffc4e64 bt_dig_gain_force + .bss.corr_cca_thr + 0x000000003ffc4e65 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffc4e65 corr_cca_thr + .bss.lr_enable + 0x000000003ffc4e66 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffc4e66 lr_enable + .bss.chan14_mic_en + 0x000000003ffc4e67 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffc4e67 chan14_mic_en + .bss.re_entry 0x000000003ffc4e68 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffc4e68 re_entry + .bss.phy_init_flag + 0x000000003ffc4e69 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffc4e69 phy_init_flag + .bss.phy_set_most_tpw_index + 0x000000003ffc4e6a 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffc4e6a phy_set_most_tpw_index + .bss.target_power_backoff_qdb + 0x000000003ffc4e6b 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffc4e6b target_power_backoff_qdb + .bss.phy_set_most_tpw_flag + 0x000000003ffc4e6c 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffc4e6c phy_set_most_tpw_flag + .bss.phy_set_most_tpw_disbg + 0x000000003ffc4e6d 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffc4e6d phy_set_most_tpw_disbg + .bss.phy_meas_noise_floor + 0x000000003ffc4e6e 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffc4e6e phy_meas_noise_floor + .bss.sw_scan_mode + 0x000000003ffc4e70 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffc4e70 sw_scan_mode + .bss.noise_timeout_flag + 0x000000003ffc4e71 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffc4e71 noise_timeout_flag + .bss.phy_pwdet_onetime_flag + 0x000000003ffc4e72 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffc4e72 phy_pwdet_onetime_flag + .bss.phy_dis_pwdet_one + 0x000000003ffc4e73 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffc4e73 phy_dis_pwdet_one + .bss.phy_tx_pwr_error + 0x000000003ffc4e74 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffc4e74 phy_tx_pwr_error + .bss.phy_in_vdd33_offset + 0x000000003ffc4e76 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffc4e76 phy_in_vdd33_offset + .bss.tx_pwctrl_track_num + 0x000000003ffc4e77 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffc4e77 tx_pwctrl_track_num + .bss.phy_tx_power_out + 0x000000003ffc4e78 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffc4e78 phy_tx_power_out + *fill* 0x000000003ffc4e7a 0x2 + .bss.force_wifi_mode_on + 0x000000003ffc4e7c 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + 0x000000003ffc4e7c force_wifi_mode_on + *(.dynbss .dynsbss .gnu.linkonce.b .gnu.linkonce.b.* .gnu.linkonce.sb .gnu.linkonce.sb.* .gnu.linkonce.sb2 .gnu.linkonce.sb2.* .sbss .sbss.* .sbss2 .sbss2.* .scommon .share.mem) + *(.ext_ram.bss .ext_ram.bss.*) + *(EXCLUDE_FILE(*libnimble.a *libbtdm_app.a *libbt.a *libble_app.a) COMMON) + COMMON 0x000000003ffc4e80 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffc4e80 net80211_funcs + COMMON 0x000000003ffc4e84 0x2a8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x000000003ffc4e84 g_ic + COMMON 0x000000003ffc512c 0x74 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x000000003ffc512c wpa_crypto_funcs + COMMON 0x000000003ffc51a0 0x58 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000003ffc51a0 g_wifi_menuconfig + COMMON 0x000000003ffc51f8 0x160 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x000000003ffc51f8 s_ni + 0x000000003ffc5350 action_q + COMMON 0x000000003ffc5358 0x21c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x000000003ffc5358 s_dp + COMMON 0x000000003ffc5574 0x500 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x000000003ffc5574 s_wifi_nvs + COMMON 0x000000003ffc5a74 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x000000003ffc5a74 s_tx_cacheq + COMMON 0x000000003ffc5a7c 0x11c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000003ffc5a7c gScanStruct + COMMON 0x000000003ffc5b98 0xfc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x000000003ffc5b98 gChmCxt + *fill* 0x000000003ffc5c94 0x4 + COMMON 0x000000003ffc5c98 0xf4c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000003ffc5c98 g_cnxMgr + 0x000000003ffc6bd0 sta_con_timer + COMMON 0x000000003ffc6be4 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + 0x000000003ffc6be4 ctx + COMMON 0x000000003ffc6bec 0xc0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x000000003ffc6bec eb_space + COMMON 0x000000003ffc6cac 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x000000003ffc6cac if_ctrl + *fill* 0x000000003ffc6cd4 0x4 + COMMON 0x000000003ffc6cd8 0x1d0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x000000003ffc6cd8 g_pm + COMMON 0x000000003ffc6ea8 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003ffc6ea8 s_fix_rate + COMMON 0x000000003ffc6eb4 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x000000003ffc6eb4 g_misc_nvs + 0x000000003ffc6eb8 g_log_level + 0x000000003ffc6ebc g_log_mod + COMMON 0x000000003ffc6ed4 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffc6ed4 bt_wifi_chan_data + 0x000000003ffc6ee8 freq_i2c_addr + *fill* 0x000000003ffc6ef3 0x1 + COMMON 0x000000003ffc6ef4 0x254 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffc6ef4 pwrdet_offset + 0x000000003ffc6ef8 phy_rxbb_dc + 0x000000003ffc6f70 phy_rxrf_dc + 0x000000003ffc6ff4 chip7_sleep_params + 0x000000003ffc70b8 set_most_tpw + 0x000000003ffc70bc phy_version_str + 0x000000003ffc70e4 chip7_phy_init_ctrl + 0x000000003ffc7134 chip7_phy_api_ctrl + 0x000000003ffc7144 adc_ana_conf_org + COMMON 0x000000003ffc7148 0x2d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffc7148 phy_chan_gain_table + 0x000000003ffc7150 phy_chan_pwr_index + 0x000000003ffc7164 phy_chan_target_power + 0x000000003ffc7178 . = ALIGN (0x4) + *fill* 0x000000003ffc7175 0x3 + 0x000000003ffc7178 _bt_controller_bss_start = ABSOLUTE (.) + *libble_app.a:(.bss .bss.*) + 0x000000003ffc7178 . = ALIGN (0x4) + 0x000000003ffc7178 _bt_controller_bss_end = ABSOLUTE (.) + 0x000000003ffc7178 . = ALIGN (0x4) + 0x000000003ffc7178 _bt_controller_common_start = ABSOLUTE (.) + *libble_app.a:(COMMON) + 0x000000003ffc7178 . = ALIGN (0x4) + 0x000000003ffc7178 _bt_controller_common_end = ABSOLUTE (.) + 0x000000003ffc7178 . = ALIGN (0x4) + 0x000000003ffc7178 _bt_bss_start = ABSOLUTE (.) + *libbt.a:(.bss .bss.*) + .bss.ret_handle + 0x000000003ffc7178 0x4 esp-idf/bt/libbt.a(hli_api.c.obj) + .bss.ble_hs_id_rnd + 0x000000003ffc717c 0x6 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + *fill* 0x000000003ffc7182 0x2 + .bss.ble_hs_id_pub + 0x000000003ffc7184 0x6 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + .bss.ble_hs_max_client_configs + 0x000000003ffc718a 0x2 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x000000003ffc718a ble_hs_max_client_configs + .bss.ble_hs_max_services + 0x000000003ffc718c 0x2 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x000000003ffc718c ble_hs_max_services + .bss.ble_hs_max_attrs + 0x000000003ffc718e 0x2 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x000000003ffc718e ble_hs_max_attrs + .bss.ble_hs_mutex + 0x000000003ffc7190 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) + .bss.ble_hs_rx_q + 0x000000003ffc7194 0xc esp-idf/bt/libbt.a(ble_hs.c.obj) + .bss.ble_hs_evq + 0x000000003ffc71a0 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) + .bss.ble_hs_timer + 0x000000003ffc71a4 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) + .bss.ble_hs_parent_task + 0x000000003ffc71a8 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) + .bss.ble_hs_reset_reason + 0x000000003ffc71ac 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) + .bss.ble_hs_enabled_state + 0x000000003ffc71b0 0x1 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x000000003ffc71b0 ble_hs_enabled_state + .bss.ble_hs_sync_state + 0x000000003ffc71b1 0x1 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x000000003ffc71b1 ble_hs_sync_state + *fill* 0x000000003ffc71b2 0x2 + .bss.ble_hs_ev_start_stage2 + 0x000000003ffc71b4 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) + .bss.ble_hs_ev_start_stage1 + 0x000000003ffc71b8 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) + .bss.ble_hs_ev_reset + 0x000000003ffc71bc 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) + .bss.ble_hs_ev_tx_notifications + 0x000000003ffc71c0 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) + .bss.ble_hs_hci_os_event_buf + 0x000000003ffc71c4 0x78 esp-idf/bt/libbt.a(ble_hs.c.obj) + .bss.ble_hs_hci_ev_pool + 0x000000003ffc723c 0x1c esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x000000003ffc723c ble_hs_hci_ev_pool + .bss.ble_att_preferred_mtu_val + 0x000000003ffc7258 0x2 esp-idf/bt/libbt.a(ble_att.c.obj) + *fill* 0x000000003ffc725a 0x2 + .bss.error$0 0x000000003ffc725c 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .bss.ble_gattc_resume_at + 0x000000003ffc7260 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .bss.ble_gattc_procs + 0x000000003ffc7264 0x8 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .bss.ble_gattc_proc_pool + 0x000000003ffc726c 0x1c esp-idf/bt/libbt.a(ble_gattc.c.obj) + .bss.ble_gattc_proc_mem + 0x000000003ffc7288 0xe0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .bss.ble_l2cap_sig_proc_pool + 0x000000003ffc7368 0x1c esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + .bss.ble_l2cap_sig_proc_mem + 0x000000003ffc7384 0x14 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + .bss.ble_l2cap_sig_cur_id + 0x000000003ffc7398 0x1 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + *fill* 0x000000003ffc7399 0x3 + .bss.ble_l2cap_sig_procs + 0x000000003ffc739c 0x8 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + .bss.slaves$0 0x000000003ffc73a4 0x10 esp-idf/bt/libbt.a(ble_gap.c.obj) + .bss.preempt_done_mutex + 0x000000003ffc73b4 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + .bss.ble_gap_update_entries + 0x000000003ffc73b8 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + .bss.ble_gap_update_entry_pool + 0x000000003ffc73bc 0x1c esp-idf/bt/libbt.a(ble_gap.c.obj) + .bss.ble_gap_update_entry_mem + 0x000000003ffc73d8 0x18 esp-idf/bt/libbt.a(ble_gap.c.obj) + .bss.ble_gap_event_listener_list + 0x000000003ffc73f0 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + .bss.ble_gap_slave + 0x000000003ffc73f4 0x20 esp-idf/bt/libbt.a(ble_gap.c.obj) + .bss.ble_gap_master + 0x000000003ffc7414 0x14 esp-idf/bt/libbt.a(ble_gap.c.obj) + .bss.ble_hs_pvcy_irk + 0x000000003ffc7428 0x10 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + .bss.ble_hs_pvcy_started + 0x000000003ffc7438 0x1 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + *fill* 0x000000003ffc7439 0x3 + .bss.ble_hs_flow_mbuf_conn_handle + 0x000000003ffc743c 0x30 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + .bss.ble_hs_flow_ev + 0x000000003ffc746c 0x4 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + .bss.ble_hs_flow_timer + 0x000000003ffc7470 0x4 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + .bss.ble_hs_flow_num_completed_pkts + 0x000000003ffc7474 0x2 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + *fill* 0x000000003ffc7476 0x2 + .bss.ble_l2cap_chan_mem + 0x000000003ffc7478 0xfc esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .bss.ble_l2cap_chan_pool + 0x000000003ffc7574 0x1c esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x000000003ffc7574 ble_l2cap_chan_pool + .bss.ble_gatts_num_cfgable_chrs + 0x000000003ffc7590 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .bss.ble_gatts_clt_cfgs + 0x000000003ffc7594 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .bss.ble_gatts_clt_cfg_pool + 0x000000003ffc7598 0x1c esp-idf/bt/libbt.a(ble_gatts.c.obj) + .bss.ble_gatts_clt_cfg_mem + 0x000000003ffc75b4 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .bss.ble_gatts_num_svc_entries + 0x000000003ffc75b8 0x2 esp-idf/bt/libbt.a(ble_gatts.c.obj) + *fill* 0x000000003ffc75ba 0x2 + .bss.ble_gatts_svc_entries + 0x000000003ffc75bc 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .bss.ble_gatts_num_svc_defs + 0x000000003ffc75c0 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .bss.ble_gatts_svc_defs + 0x000000003ffc75c4 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .bss.ble_hs_hci_avail_pkts + 0x000000003ffc75c8 0x2 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x000000003ffc75c8 ble_hs_hci_avail_pkts + *fill* 0x000000003ffc75ca 0x2 + .bss.ble_hs_hci_frag_mempool + 0x000000003ffc75cc 0x1c esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .bss.ble_hs_hci_frag_mbuf_pool + 0x000000003ffc75e8 0xc esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .bss.ble_hs_hci_frag_data + 0x000000003ffc75f4 0x12c esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .bss.ble_hs_hci_version + 0x000000003ffc7720 0x1 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + *fill* 0x000000003ffc7721 0x3 + .bss.ble_hs_hci_sup_feat + 0x000000003ffc7724 0x4 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .bss.ble_hs_hci_max_pkts + 0x000000003ffc7728 0x1 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + *fill* 0x000000003ffc7729 0x1 + .bss.ble_hs_hci_buf_sz + 0x000000003ffc772a 0x2 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .bss.ble_hs_hci_ack + 0x000000003ffc772c 0x4 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .bss.ble_hs_hci_sem + 0x000000003ffc7730 0x4 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .bss.ble_hs_hci_mutex + 0x000000003ffc7734 0x4 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .bss.nrpa_pvcy + 0x000000003ffc7738 0x1 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + *fill* 0x000000003ffc7739 0x3 + .bss.ble_store_num_peer_dev_rec + 0x000000003ffc773c 0x4 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .bss.peer_dev_rec + 0x000000003ffc7740 0xb0 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .bss.g_ble_hs_resolv_list + 0x000000003ffc77f0 0xe4 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .bss.g_ble_hs_resolv_data + 0x000000003ffc78d4 0xc esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .bss.ble_store_config_num_cccds + 0x000000003ffc78e0 0x4 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x000000003ffc78e0 ble_store_config_num_cccds + .bss.ble_store_config_cccds + 0x000000003ffc78e4 0x80 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x000000003ffc78e4 ble_store_config_cccds + .bss.ble_store_config_num_peer_secs + 0x000000003ffc7964 0x4 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x000000003ffc7964 ble_store_config_num_peer_secs + .bss.ble_store_config_peer_secs + 0x000000003ffc7968 0xf0 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x000000003ffc7968 ble_store_config_peer_secs + .bss.ble_store_config_num_our_secs + 0x000000003ffc7a58 0x4 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x000000003ffc7a58 ble_store_config_num_our_secs + *fill* 0x000000003ffc7a5c 0x4 + .bss.ble_store_config_our_secs + 0x000000003ffc7a60 0xf0 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x000000003ffc7a60 ble_store_config_our_secs + .bss.ble_hs_ev_stop + 0x000000003ffc7b50 0x4 esp-idf/bt/libbt.a(nimble_port.c.obj) + .bss.ble_hs_stop_sem + 0x000000003ffc7b54 0x4 esp-idf/bt/libbt.a(nimble_port.c.obj) + .bss.g_eventq_dflt + 0x000000003ffc7b58 0x4 esp-idf/bt/libbt.a(nimble_port.c.obj) + .bss.stop_listener + 0x000000003ffc7b5c 0xc esp-idf/bt/libbt.a(nimble_port.c.obj) + .bss.host_task_h + 0x000000003ffc7b68 0x4 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + .bss.os_msys_init_2_mempool + 0x000000003ffc7b6c 0x1c esp-idf/bt/libbt.a(os_msys_init.c.obj) + .bss.os_msys_init_2_mbuf_pool + 0x000000003ffc7b88 0xc esp-idf/bt/libbt.a(os_msys_init.c.obj) + .bss.os_msys_init_2_data + 0x000000003ffc7b94 0x4 esp-idf/bt/libbt.a(os_msys_init.c.obj) + .bss.os_msys_init_1_mempool + 0x000000003ffc7b98 0x1c esp-idf/bt/libbt.a(os_msys_init.c.obj) + .bss.os_msys_init_1_mbuf_pool + 0x000000003ffc7bb4 0xc esp-idf/bt/libbt.a(os_msys_init.c.obj) + .bss.os_msys_init_1_data + 0x000000003ffc7bc0 0x4 esp-idf/bt/libbt.a(os_msys_init.c.obj) + .bss.npl_funcs + 0x000000003ffc7bc4 0x4 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x000000003ffc7bc4 npl_funcs + .bss.hw_critical_state_status + 0x000000003ffc7bc8 0x1 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x000000003ffc7bc8 hw_critical_state_status + *fill* 0x000000003ffc7bc9 0x3 + .bss.ble_freertos_mutex_buf + 0x000000003ffc7bcc 0x28 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .bss.ble_freertos_mutex_pool + 0x000000003ffc7bf4 0x1c esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x000000003ffc7bf4 ble_freertos_mutex_pool + .bss.ble_freertos_sem_buf + 0x000000003ffc7c10 0x28 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .bss.ble_freertos_sem_pool + 0x000000003ffc7c38 0x1c esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x000000003ffc7c38 ble_freertos_sem_pool + .bss.ble_freertos_co_buf + 0x000000003ffc7c54 0x1e0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .bss.ble_freertos_co_pool + 0x000000003ffc7e34 0x1c esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x000000003ffc7e34 ble_freertos_co_pool + .bss.ble_freertos_evq_buf + 0x000000003ffc7e50 0x28 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .bss.ble_freertos_evq_pool + 0x000000003ffc7e78 0x1c esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x000000003ffc7e78 ble_freertos_evq_pool + .bss.ble_freertos_ev_buf + 0x000000003ffc7e94 0x3c0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .bss.ble_freertos_ev_pool + 0x000000003ffc8254 0x1c esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x000000003ffc8254 ble_freertos_ev_pool + .bss.vhci_send_sem + 0x000000003ffc8270 0x4 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .bss.transport_put_acl_from_ll_cb + 0x000000003ffc8274 0x4 esp-idf/bt/libbt.a(transport.c.obj) + .bss.mpool_acl + 0x000000003ffc8278 0xc esp-idf/bt/libbt.a(transport.c.obj) + .bss.pool_acl 0x000000003ffc8284 0x24 esp-idf/bt/libbt.a(transport.c.obj) + .bss.pool_acl_buf + 0x000000003ffc82a8 0x4 esp-idf/bt/libbt.a(transport.c.obj) + .bss.pool_evt_lo + 0x000000003ffc82ac 0x1c esp-idf/bt/libbt.a(transport.c.obj) + .bss.pool_evt_lo_buf + 0x000000003ffc82c8 0x4 esp-idf/bt/libbt.a(transport.c.obj) + .bss.pool_evt 0x000000003ffc82cc 0x1c esp-idf/bt/libbt.a(transport.c.obj) + .bss.pool_evt_buf + 0x000000003ffc82e8 0x4 esp-idf/bt/libbt.a(transport.c.obj) + .bss.pool_cmd 0x000000003ffc82ec 0x1c esp-idf/bt/libbt.a(transport.c.obj) + .bss.pool_cmd_buf + 0x000000003ffc8308 0x4 esp-idf/bt/libbt.a(transport.c.obj) + .bss.ble_hs_conn_elem_mem + 0x000000003ffc830c 0x12c esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + .bss.ble_hs_conn_pool + 0x000000003ffc8438 0x1c esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + .bss.ble_hs_conns + 0x000000003ffc8454 0x4 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + .bss.ble_sm_procs + 0x000000003ffc8458 0x8 esp-idf/bt/libbt.a(ble_sm.c.obj) + .bss.ble_sm_proc_pool + 0x000000003ffc8460 0x1c esp-idf/bt/libbt.a(ble_sm.c.obj) + .bss.ble_sm_proc_mem + 0x000000003ffc847c 0x180 esp-idf/bt/libbt.a(ble_sm.c.obj) + .bss.ble_att_svr_prep_entry_pool + 0x000000003ffc85fc 0x1c esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .bss.ble_att_svr_prep_entry_mem + 0x000000003ffc8618 0x300 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .bss.ble_att_svr_entry_pool + 0x000000003ffc8918 0x1c esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .bss.ble_att_svr_entry_mem + 0x000000003ffc8934 0x4 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .bss.ble_att_svr_id + 0x000000003ffc8938 0x2 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + *fill* 0x000000003ffc893a 0x2 + .bss.ble_att_svr_hidden_list + 0x000000003ffc893c 0x8 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .bss.ble_att_svr_list + 0x000000003ffc8944 0x8 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .bss.keypair 0x000000003ffc894c 0xac esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + .bss.ble_hs_stop_terminate_tmo + 0x000000003ffc89f8 0x4 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + .bss.ble_hs_stop_conn_cnt + 0x000000003ffc89fc 0x1 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + *fill* 0x000000003ffc89fd 0x3 + .bss.ble_hs_stop_listeners + 0x000000003ffc8a00 0x4 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + .bss.ble_hs_stop_gap_listener + 0x000000003ffc8a04 0xc esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + .bss.ble_sm_sc_keys_generated + 0x000000003ffc8a10 0x1 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + *fill* 0x000000003ffc8a11 0x3 + .bss.ble_sm_sc_priv_key + 0x000000003ffc8a14 0x20 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + .bss.ble_sm_sc_pub_key + 0x000000003ffc8a34 0x40 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x000000003ffc8a74 . = ALIGN (0x4) + 0x000000003ffc8a74 _bt_bss_end = ABSOLUTE (.) + 0x000000003ffc8a74 . = ALIGN (0x4) + 0x000000003ffc8a74 _bt_common_start = ABSOLUTE (.) + *libbt.a:(COMMON) + 0x000000003ffc8a74 . = ALIGN (0x4) + 0x000000003ffc8a74 _bt_common_end = ABSOLUTE (.) + 0x000000003ffc8a74 . = ALIGN (0x4) + 0x000000003ffc8a74 _btdm_bss_start = ABSOLUTE (.) + *libbtdm_app.a:(.bss .bss.*) + .bss 0x000000003ffc8a74 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + 0x000000003ffc8a74 g_sleep_exception + 0x000000003ffc8a78 btdm_env_p + *fill* 0x000000003ffc8a89 0x3 + .bss 0x000000003ffc8a8c 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + 0x000000003ffc8a8c coex_schm_btdm_env + .bss 0x000000003ffc8a9c 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) + 0x000000003ffc8a9c ea_prog_timestamp_latest + .bss 0x000000003ffc8aa0 0x1 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) + *fill* 0x000000003ffc8aa1 0x3 + .bss 0x000000003ffc8aa4 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + .bss 0x000000003ffc8aa8 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_msg.o) + 0x000000003ffc8aa8 is_lc_lmp_rx_flooding + 0x000000003ffc8ab0 lc_lmp_msg_stored_num + .bss 0x000000003ffc8acc 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + .bss 0x000000003ffc8b04 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + .bss 0x000000003ffc8b20 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) + 0x000000003ffc8b20 l2cap_start + .bss 0x000000003ffc8b24 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) + *fill* 0x000000003ffc8b2f 0x1 + .bss 0x000000003ffc8b30 0x68 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + 0x000000003ffc8b30 lld_scan_to_connected + 0x000000003ffc8b31 lld_adv_to_connected + 0x000000003ffc8b32 lld_con_llcp_ind + 0x000000003ffc8b46 lld_con_term_info + 0x000000003ffc8b6e g_scan_forever + 0x000000003ffc8b70 g_qa_test_config + 0x000000003ffc8b88 event_empty + .bss 0x000000003ffc8b98 0x2 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + *fill* 0x000000003ffc8b9a 0x2 + .bss 0x000000003ffc8b9c 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + 0x000000003ffc8b9c le_send_adv_reserved_func + .bss 0x000000003ffc8bac 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(osi.o) + 0x000000003ffc8bac r_osi_funcs_p + .bss 0x000000003ffc8bb0 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) + 0x000000003ffc8bb0 r_ip_funcs_p + 0x000000003ffc8bb4 r_modules_funcs_p + 0x000000003ffc8bb8 r_plf_funcs_p + .bss 0x000000003ffc8bbc 0x50 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) + .bss 0x000000003ffc8c0c 0x58 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) + .bss 0x000000003ffc8c64 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + 0x000000003ffc8c64 g_waking_sleeping_sem + .bss 0x000000003ffc8c68 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(sdk_config.o) + .bss 0x000000003ffc8c98 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + 0x000000003ffc8c98 g_coex_swisr_queue + 0x000000003ffc8c9c g_rw_controller_task_handle + 0x000000003ffc8ca0 g_rw_schd_queue + 0x000000003ffc8ca4 g_rw_init_sem + .bss 0x000000003ffc8ca8 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vflash.o) + .bss 0x000000003ffc8cb4 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + 0x000000003ffc8cb8 . = ALIGN (0x4) + 0x000000003ffc8cb8 _btdm_bss_end = ABSOLUTE (.) + 0x000000003ffc8cb8 . = ALIGN (0x4) + 0x000000003ffc8cb8 _btdm_common_start = ABSOLUTE (.) + *libbtdm_app.a:(COMMON) + COMMON 0x000000003ffc8cb8 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) + 0x000000003ffc8cb8 is_set_afh_pending + 0x000000003ffc8cbf is_rd_rem_ext_feats_sent_cs + *fill* 0x000000003ffc8cc6 0x2 + COMMON 0x000000003ffc8cc8 0x60 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + 0x000000003ffc8cc8 le_scan_duplicate_option + 0x000000003ffc8d1c llm_elt + COMMON 0x000000003ffc8d28 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) + 0x000000003ffc8d28 host_ch_class + *fill* 0x000000003ffc8d32 0x2 + COMMON 0x000000003ffc8d34 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + 0x000000003ffc8d34 btdm_slp_err + 0x000000003ffc8d38 btdm_pwr_state + COMMON 0x000000003ffc8d3c 0x800 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vflash.o) + 0x000000003ffc8d3c vflash_mem + COMMON 0x000000003ffc953c 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) + 0x000000003ffc953c lmp_tx_stored + 0x000000003ffc9550 . = ALIGN (0x4) + 0x000000003ffc9550 _btdm_common_end = ABSOLUTE (.) + 0x000000003ffc9550 . = ALIGN (0x4) + 0x000000003ffc9550 _nimble_bss_start = ABSOLUTE (.) + *libnimble.a:(.bss .bss.*) + 0x000000003ffc9550 . = ALIGN (0x4) + 0x000000003ffc9550 _nimble_bss_end = ABSOLUTE (.) + 0x000000003ffc9550 . = ALIGN (0x4) + 0x000000003ffc9550 _nimble_common_start = ABSOLUTE (.) + *libnimble.a:(COMMON) + 0x000000003ffc9550 . = ALIGN (0x4) + 0x000000003ffc9550 _nimble_common_end = ABSOLUTE (.) + 0x000000003ffc9550 . = ALIGN (0x8) + 0x000000003ffc9550 _bss_end = ABSOLUTE (.) + 0x0000000000000001 ASSERT (((_bss_end - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) + +.flash.appdesc 0x000000003f400020 0x100 + 0x000000003f400020 _rodata_reserved_start = ABSOLUTE (.) + 0x000000003f400020 _rodata_start = ABSOLUTE (.) + *(.rodata_desc .rodata_desc.*) + .rodata_desc 0x000000003f400020 0x100 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x000000003f400020 esp_app_desc + *(.rodata_custom_desc .rodata_custom_desc.*) + 0x000000003f400120 . = ALIGN (ALIGNOF (.flash.rodata)) + +.flash.rodata 0x000000003f400120 0x2c730 + 0x000000003f400120 _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_create.str1.4 + 0x000000003f400120 0xf7 esp-idf/pthread/libpthread.a(pthread.c.obj) + *fill* 0x000000003f400217 0x1 + .rodata.pthread_mutex_destroy.str1.4 + 0x000000003f400218 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_mutex_unlock.str1.4 + 0x000000003f40023c 0x23 esp-idf/pthread/libpthread.a(pthread.c.obj) + *fill* 0x000000003f40025f 0x1 + .rodata.__func__$0 + 0x000000003f400260 0x15 esp-idf/pthread/libpthread.a(pthread.c.obj) + *fill* 0x000000003f400275 0x3 + .rodata.__func__$1 + 0x000000003f400278 0x16 esp-idf/pthread/libpthread.a(pthread.c.obj) + *fill* 0x000000003f40028e 0x2 + .rodata.pthread_cleanup_thread_specific_data_callback.str1.4 + 0x000000003f400290 0x3d esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + *fill* 0x000000003f4002cd 0x3 + .rodata.__func__$0 + 0x000000003f4002d0 0x2e esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + *fill* 0x000000003f4002fe 0x2 + .rodata.str1.4 + 0x000000003f400300 0x7c esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .rodata.start_other_core.str1.4 + 0x000000003f40037c 0xfc esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .rodata.select_rtc_slow_clk.str1.4 + 0x000000003f400478 0x5c esp-idf/esp_system/libesp_system.a(clk.c.obj) + .rodata.esp_clk_init.str1.4 + 0x000000003f4004d4 0x68 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .rodata 0x000000003f40053c 0x4 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .rodata.__func__$0 + 0x000000003f400540 0xd esp-idf/esp_system/libesp_system.a(clk.c.obj) + *fill* 0x000000003f40054d 0x3 + .rodata.str1.4 + 0x000000003f400550 0x3b esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x3f (size before relaxing) + *fill* 0x000000003f40058b 0x1 + .rodata.__func__$0 + 0x000000003f40058c 0x1e esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + *fill* 0x000000003f4005aa 0x2 + .rodata 0x000000003f4005ac 0x10 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .rodata.esp_panic_handler.str1.4 + 0x000000003f4005bc 0x83 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x87 (size before relaxing) + *fill* 0x000000003f40063f 0x1 + .rodata.do_core_init.str1.4 + 0x000000003f400640 0xb8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0xc0 (size before relaxing) + .rodata.do_system_init_fn.str1.4 + 0x000000003f4006f8 0x45 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x51 (size before relaxing) + *fill* 0x000000003f40073d 0x3 + .rodata.start_cpu0_default.str1.4 + 0x000000003f400740 0x22d esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x231 (size before relaxing) + *fill* 0x000000003f40096d 0x3 + .rodata.__func__$0 + 0x000000003f400970 0xd esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x000000003f40097d 0x3 + .rodata.g_startup_fn + 0x000000003f400980 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x000000003f400980 g_startup_fn + .rodata.frame_to_panic_info.str1.4 + 0x000000003f400988 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .rodata.print_state_for_core.str1.4 + 0x000000003f400990 0x3 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .rodata.str1.4 + 0x000000003f400990 0x26 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + *fill* 0x000000003f4009b6 0x2 + .rodata 0x000000003f4009b8 0x5 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + *fill* 0x000000003f4009bd 0x3 + .rodata 0x000000003f4009c0 0x10 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .rodata.print_debug_exception_details.str1.4 + 0x000000003f4009d0 0x93 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + *fill* 0x000000003f400a63 0x1 + .rodata.print_illegal_instruction_details.str1.4 + 0x000000003f400a64 0x17 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x1a (size before relaxing) + *fill* 0x000000003f400a7b 0x1 + .rodata.panic_print_registers.str1.4 + 0x000000003f400a7c 0x199 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x1a5 (size before relaxing) + *fill* 0x000000003f400c15 0x3 + .rodata 0x000000003f400c18 0x60 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.panic_arch_fill_info.str1.4 + 0x000000003f400c78 0x19 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x21 (size before relaxing) + *fill* 0x000000003f400c91 0x3 + .rodata.panic_soc_fill_info.str1.4 + 0x000000003f400c94 0xf esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + *fill* 0x000000003f400ca3 0x1 + .rodata.str1.4 + 0x000000003f400ca4 0x2af esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x2b3 (size before relaxing) + *fill* 0x000000003f400f53 0x1 + .rodata.pseudo_reason$0 + 0x000000003f400f54 0x20 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.reason$1 + 0x000000003f400f74 0xa0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.str1.4 + 0x000000003f401014 0x4d esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + *fill* 0x000000003f401061 0x3 + .rodata.uart_hal_rxfifo_rst.str1.4 + 0x000000003f401064 0xc1 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + *fill* 0x000000003f401125 0x3 + .rodata.uart_hal_write_txfifo.str1.4 + 0x000000003f401128 0x90 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .rodata.__func__$1 + 0x000000003f4011b8 0x15 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + *fill* 0x000000003f4011cd 0x3 + .rodata.__func__$2 + 0x000000003f4011d0 0x13 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + *fill* 0x000000003f4011e3 0x1 + .rodata.get_cached_log_level.str1.4 + 0x000000003f4011e4 0x67 esp-idf/log/liblog.a(log.c.obj) + *fill* 0x000000003f40124b 0x1 + .rodata.esp_log_level_set.str1.4 + 0x000000003f40124c 0x2 esp-idf/log/liblog.a(log.c.obj) + *fill* 0x000000003f40124e 0x2 + .rodata.__func__$0 + 0x000000003f401250 0x15 esp-idf/log/liblog.a(log.c.obj) + *fill* 0x000000003f401265 0x3 + .rodata.__func__$1 + 0x000000003f401268 0x12 esp-idf/log/liblog.a(log.c.obj) + *fill* 0x000000003f40127a 0x2 + .rodata.str1.4 + 0x000000003f40127c 0x11d esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003f401399 0x3 + .rodata.__func__$2 + 0x000000003f40139c 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003f4013ad 0x3 + .rodata.__func__$3 + 0x000000003f4013b0 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003f4013c2 0x2 + .rodata.__func__$4 + 0x000000003f4013c4 0xf esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003f4013d3 0x1 + .rodata.__func__$8 + 0x000000003f4013d4 0x17 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003f4013eb 0x1 + .rodata.__func__$9 + 0x000000003f4013ec 0x1a esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003f401406 0x2 + .rodata.__func__$10 + 0x000000003f401408 0x19 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003f401421 0x3 + .rodata.__func__$11 + 0x000000003f401424 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$12 + 0x000000003f40143c 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003f40144d 0x3 + .rodata.register_heap.str1.4 + 0x000000003f401450 0x43 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x000000003f401493 0x1 + .rodata.heap_caps_init.str1.4 + 0x000000003f401494 0x130 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.__func__$1 + 0x000000003f4015c4 0x14 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.__func__$2 + 0x000000003f4015d8 0xf esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x000000003f4015e7 0x1 + .rodata.__func__$3 + 0x000000003f4015e8 0xe esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x000000003f4015f6 0x2 + .rodata.assert_valid_block.str1.4 + 0x000000003f4015f8 0x32 esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003f40162a 0x2 + .rodata.multi_heap_register_impl.str1.4 + 0x000000003f40162c 0x2f esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003f40165b 0x1 + .rodata.multi_heap_get_first_block.str1.4 + 0x000000003f40165c 0xd esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003f401669 0x3 + .rodata.__func__$4 + 0x000000003f40166c 0x18 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$0 + 0x000000003f401684 0x19 esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003f40169d 0x3 + .rodata.control_construct.str1.4 + 0x000000003f4016a0 0xca esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003f40176a 0x2 + .rodata.default_walker.str1.4 + 0x000000003f40176c 0x26 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003f401792 0x2 + .rodata.tlsf_check.str1.4 + 0x000000003f401794 0x4a esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003f4017de 0x2 + .rodata.tlsf_add_pool.str1.4 + 0x000000003f4017e0 0x142 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003f401922 0x2 + .rodata.tlsf_remove_pool.str1.4 + 0x000000003f401924 0x116 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003f401a3a 0x2 + .rodata.tlsf_create.str1.4 + 0x000000003f401a3c 0x32 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003f401a6e 0x2 + .rodata.tlsf_malloc.str1.4 + 0x000000003f401a70 0x1a7 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003f401c17 0x1 + .rodata.tlsf_free.str1.4 + 0x000000003f401c18 0x110 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_realloc.str1.4 + 0x000000003f401d28 0x2e esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003f401d56 0x2 + .rodata.__func__$0 + 0x000000003f401d58 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$1 + 0x000000003f401d68 0xd esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003f401d75 0x3 + .rodata.__func__$2 + 0x000000003f401d78 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003f401d89 0x3 + .rodata.__func__$3 + 0x000000003f401d8c 0xd esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003f401d99 0x3 + .rodata.__func__$5 + 0x000000003f401d9c 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003f401dad 0x3 + .rodata.__func__$6 + 0x000000003f401db0 0xa esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003f401dba 0x2 + .rodata.__func__$8 + 0x000000003f401dbc 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$9 + 0x000000003f401dc8 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$10 + 0x000000003f401dd8 0x13 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003f401deb 0x1 + .rodata.__func__$11 + 0x000000003f401dec 0x16 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003f401e02 0x2 + .rodata.__func__$12 + 0x000000003f401e04 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003f401e16 0x2 + .rodata.__func__$14 + 0x000000003f401e18 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003f401e2a 0x2 + .rodata.__func__$15 + 0x000000003f401e2c 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003f401e3e 0x2 + .rodata.__func__$18 + 0x000000003f401e40 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003f401e52 0x2 + .rodata.__func__$20 + 0x000000003f401e54 0xb esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003f401e5f 0x1 + .rodata.s_prepare_reserved_regions.str1.4 + 0x000000003f401e60 0x105 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x000000003f401f65 0x3 + .rodata.__func__$0 + 0x000000003f401f68 0x1b esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x000000003f401f83 0x1 + .rodata.soc_memory_region_count + 0x000000003f401f84 0x4 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x000000003f401f84 soc_memory_region_count + .rodata.soc_memory_regions + 0x000000003f401f88 0x2b0 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x000000003f401f88 soc_memory_regions + .rodata.str1.4 + 0x000000003f402238 0xa7 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0xb7 (size before relaxing) + *fill* 0x000000003f4022df 0x1 + .rodata.soc_memory_types + 0x000000003f4022e0 0x154 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x000000003f4022e0 soc_memory_types + .rodata.esp_cpu_stall.str1.4 + 0x000000003f402434 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + *fill* 0x000000003f402486 0x2 + .rodata.__func__$0 + 0x000000003f402488 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + *fill* 0x000000003f40249e 0x2 + .rodata.__func__$2 + 0x000000003f4024a0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.__func__$3 + 0x000000003f4024b0 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + *fill* 0x000000003f4024be 0x2 + .rodata.intr_desc_table + 0x000000003f4024c0 0x200 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.find_desc_for_source.str1.4 + 0x000000003f4026c0 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003f4026f9 0x3 + .rodata.is_vect_desc_usable.str1.4 + 0x000000003f4026fc 0x49 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003f402745 0x3 + .rodata.esp_intr_alloc_intrstatus.str1.4 + 0x000000003f402748 0xbe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003f402806 0x2 + .rodata.__func__$0 + 0x000000003f402808 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003f402819 0x3 + .rodata.__func__$2 + 0x000000003f40281c 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003f402832 0x2 + .rodata.__func__$3 + 0x000000003f402834 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003f40284d 0x3 + .rodata.__func__$5 + 0x000000003f402850 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.__func__$6 + 0x000000003f402864 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003f402879 0x3 + .rodata.periph_module_enable.str1.4 + 0x000000003f40287c 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x000000003f4028c6 0x2 + .rodata.__func__$0 + 0x000000003f4028c8 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .rodata.__func__$1 + 0x000000003f4028dc 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x000000003f4028f2 0x2 + .rodata.__func__$2 + 0x000000003f4028f4 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x000000003f402909 0x3 + .rodata.rtcio_ll_force_hold_disable.str1.4 + 0x000000003f40290c 0xdf esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + *fill* 0x000000003f4029eb 0x1 + .rodata.__func__$0 + 0x000000003f4029ec 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.rtc_clk_cal_internal.str1.4 + 0x000000003f402a08 0xa6 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + *fill* 0x000000003f402aae 0x2 + .rodata.rtc_time_get.str1.4 + 0x000000003f402ab0 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + *fill* 0x000000003f402acd 0x3 + .rodata.rtc_clk_wait_for_slow_cycle.str1.4 + 0x000000003f402ad0 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__$0 + 0x000000003f402b04 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + *fill* 0x000000003f402b19 0x3 + .rodata.s_sar_power_release.str1.4 + 0x000000003f402b1c 0x4f esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + *fill* 0x000000003f402b6b 0x1 + .rodata.__func__$0 + 0x000000003f402b6c 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .rodata.main_task.str1.4 + 0x000000003f402b80 0xdd esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x000000003f402c5d 0x3 + .rodata.esp_startup_start_app.str1.4 + 0x000000003f402c60 0x7f esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x000000003f402cdf 0x1 + .rodata.esp_startup_start_app_other_cores.str1.4 + 0x000000003f402ce0 0x34 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .rodata.__func__$0 + 0x000000003f402d14 0xa esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x000000003f402d1e 0x2 + .rodata.__func__$1 + 0x000000003f402d20 0x16 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x000000003f402d36 0x2 + .rodata.prvNotifyQueueSetContainer.str1.4 + 0x000000003f402d38 0x8f esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f402dc7 0x1 + .rodata.xQueueGenericReset.str1.4 + 0x000000003f402dc8 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x43 (size before relaxing) + .rodata.xQueueGenericCreateStatic.str1.4 + 0x000000003f402dd0 0xdf esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f402eaf 0x1 + .rodata.xQueueGenericCreate.str1.4 + 0x000000003f402eb0 0x8e esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f402f3e 0x2 + .rodata.xQueueCreateCountingSemaphoreStatic.str1.4 + 0x000000003f402f40 0x2d esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f402f6d 0x3 + .rodata.xQueueGenericSend.str1.4 + 0x000000003f402f70 0x195 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f403105 0x3 + .rodata.xQueueGiveMutexRecursive.str1.4 + 0x000000003f403108 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGiveFromISR.str1.4 + 0x000000003f403110 0x7d esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f40318d 0x3 + .rodata.xQueueReceive.str1.4 + 0x000000003f403190 0x66 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f4031f6 0x2 + .rodata.xQueueReceiveFromISR.str1.4 + 0x000000003f4031f8 0x52 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f40324a 0x2 + .rodata.uxQueueMessagesWaiting.str1.4 + 0x000000003f40324c 0x7 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f403253 0x1 + .rodata.__func__$1 + 0x000000003f403254 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f40326e 0x2 + .rodata.__func__$2 + 0x000000003f403270 0xd esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f40327d 0x3 + .rodata.__func__$3 + 0x000000003f403280 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f40329e 0x2 + .rodata.__func__$5 + 0x000000003f4032a0 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f4032b7 0x1 + .rodata.__func__$7 + 0x000000003f4032b8 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f4032cd 0x3 + .rodata.__func__$9 + 0x000000003f4032d0 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$10 + 0x000000003f4032e4 0xe esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f4032f2 0x2 + .rodata.__func__$11 + 0x000000003f4032f4 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f403306 0x2 + .rodata.__func__$12 + 0x000000003f403308 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f403321 0x3 + .rodata.__func__$13 + 0x000000003f403324 0x1b esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f40333f 0x1 + .rodata.__func__$14 + 0x000000003f403340 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f403352 0x2 + .rodata.__func__$15 + 0x000000003f403354 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f403372 0x2 + .rodata.__func__$17 + 0x000000003f403374 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f40338d 0x3 + .rodata.__func__$18 + 0x000000003f403390 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f4033a9 0x3 + .rodata.__func__$20 + 0x000000003f4033ac 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$22 + 0x000000003f4033c0 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f4033da 0x2 + .rodata.__func__$23 + 0x000000003f4033dc 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$24 + 0x000000003f4033f0 0x13 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f403403 0x1 + .rodata.prvDeleteTLS.str1.4 + 0x000000003f403404 0x3a esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f40343e 0x2 + .rodata.taskSelectHighestPriorityTaskSMP.str1.4 + 0x000000003f403440 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403459 0x3 + .rodata.prvDeleteTCB.str1.4 + 0x000000003f40345c 0x32 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f40348e 0x2 + .rodata.xTaskCreateStaticPinnedToCore.str1.4 + 0x000000003f403490 0xb1 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403541 0x3 + .rodata.xTaskGetIdleTaskHandleForCPU.str1.4 + 0x000000003f403544 0x38 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskIncrementTick.str1.4 + 0x000000003f40357c 0x8e esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f40360a 0x2 + .rodata.xTaskIncrementTickOtherCores.str1.4 + 0x000000003f40360c 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403619 0x3 + .rodata.vTaskPlaceOnEventList.str1.4 + 0x000000003f40361c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskRemoveFromEventList.str1.4 + 0x000000003f403628 0x4f esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403677 0x1 + .rodata.vTaskSetTimeOutState.str1.4 + 0x000000003f403678 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403682 0x2 + .rodata.xTaskCheckForTimeOut.str1.4 + 0x000000003f403684 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403692 0x2 + .rodata.vTaskDelete.str1.4 + 0x000000003f403694 0x3f esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f4036d3 0x1 + .rodata.vTaskPrioritySet.str1.4 + 0x000000003f4036d4 0x1b esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f4036ef 0x1 + .rodata.xTaskDelayUntil.str1.4 + 0x000000003f4036f0 0x62 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403752 0x2 + .rodata.xTaskResumeAll.str1.4 + 0x000000003f403754 0x35 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403789 0x3 + .rodata.xTaskPriorityDisinherit.str1.4 + 0x000000003f40378c 0x41 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f4037cd 0x3 + .rodata.vTaskPriorityDisinheritAfterTimeout.str1.4 + 0x000000003f4037d0 0x2a esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f4037fa 0x2 + .rodata.ulTaskGenericNotifyTake.str1.4 + 0x000000003f4037fc 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f40380e 0x2 + .rodata.xTaskGenericNotify.str1.4 + 0x000000003f403810 0x97 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f4038a7 0x1 + .rodata.prvTaskPriorityRaise.str1.4 + 0x000000003f4038a8 0x45 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f4038ed 0x3 + .rodata.vTaskStartScheduler.str1.4 + 0x000000003f4038f0 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f40390a 0x2 + .rodata.__func__$0 + 0x000000003f40390c 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403921 0x3 + .rodata.__func__$2 + 0x000000003f403924 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403942 0x2 + .rodata.__func__$4 + 0x000000003f403944 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403957 0x1 + .rodata.__func__$5 + 0x000000003f403958 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f40396f 0x1 + .rodata.__func__$6 + 0x000000003f403970 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$7 + 0x000000003f403988 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$8 + 0x000000003f4039ac 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$9 + 0x000000003f4039c4 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f4039d9 0x3 + .rodata.__func__$10 + 0x000000003f4039dc 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f4039f9 0x3 + .rodata.__func__$12 + 0x000000003f4039fc 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403a1e 0x2 + .rodata.__func__$13 + 0x000000003f403a20 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403a39 0x3 + .rodata.__func__$15 + 0x000000003f403a3c 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403a5b 0x1 + .rodata.__func__$16 + 0x000000003f403a5c 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403a72 0x2 + .rodata.__func__$17 + 0x000000003f403a74 0x21 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403a95 0x3 + .rodata.ucExpectedStackBytes$18 + 0x000000003f403a98 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$19 + 0x000000003f403aac 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403ac9 0x3 + .rodata.__func__$20 + 0x000000003f403acc 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403adf 0x1 + .rodata.__func__$23 + 0x000000003f403ae0 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403afd 0x3 + .rodata.__func__$27 + 0x000000003f403b00 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403b0e 0x2 + .rodata.__func__$28 + 0x000000003f403b10 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403b1f 0x1 + .rodata.__func__$29 + 0x000000003f403b20 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$33 + 0x000000003f403b34 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403b41 0x3 + .rodata.__func__$34 + 0x000000003f403b44 0x11 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403b55 0x3 + .rodata.__func__$36 + 0x000000003f403b58 0xb esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403b63 0x1 + .rodata.__func__$38 + 0x000000003f403b64 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403b71 0x3 + .rodata.__func__$39 + 0x000000003f403b74 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403b81 0x3 + .rodata.__func__$40 + 0x000000003f403b84 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$42 + 0x000000003f403b90 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f403bae 0x2 + .rodata.vPortTaskWrapper.str1.4 + 0x000000003f403bb0 0x58 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.pxPortInitialiseStack.str1.4 + 0x000000003f403c08 0x65 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x000000003f403c6d 0x3 + .rodata.xPortEnterCriticalTimeout.str1.4 + 0x000000003f403c70 0xa7 esp-idf/freertos/libfreertos.a(port.c.obj) + 0xe3 (size before relaxing) + *fill* 0x000000003f403d17 0x1 + .rodata.vPortExitCritical.str1.4 + 0x000000003f403d18 0x2c esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vApplicationStackOverflowHook.str1.4 + 0x000000003f403d44 0x3c esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.__func__$0 + 0x000000003f403d80 0x11 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x000000003f403d91 0x3 + .rodata.__func__$1 + 0x000000003f403d94 0x11 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x000000003f403da5 0x3 + .rodata.__func__$3 + 0x000000003f403da8 0x16 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x000000003f403dbe 0x2 + .rodata.vApplicationGetIdleTaskMemory.str1.4 + 0x000000003f403dc0 0x5a esp-idf/freertos/libfreertos.a(port_common.c.obj) + *fill* 0x000000003f403e1a 0x2 + .rodata.__func__$1 + 0x000000003f403e1c 0x1e esp-idf/freertos/libfreertos.a(port_common.c.obj) + *fill* 0x000000003f403e3a 0x2 + .rodata.str1.4 + 0x000000003f403e3c 0x8d esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x91 (size before relaxing) + *fill* 0x000000003f403ec9 0x3 + .rodata.esp_newlib_locks_init.str1.4 + 0x000000003f403ecc 0x68 esp-idf/newlib/libnewlib.a(locks.c.obj) + .rodata.__func__$4 + 0x000000003f403f34 0x16 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x000000003f403f4a 0x2 + .rodata.__func__$3 + 0x000000003f403f4c 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x000000003f403f5f 0x1 + .rodata.__func__$2 + 0x000000003f403f60 0x15 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x000000003f403f75 0x3 + .rodata.__func__$1 + 0x000000003f403f78 0x15 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x000000003f403f8d 0x3 + .rodata.__func__$0 + 0x000000003f403f90 0xc esp-idf/newlib/libnewlib.a(locks.c.obj) + .rodata.str1.4 + 0x000000003f403f9c 0x33 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000003f403fcf 0x1 + .rodata.init_timer_task.str1.4 + 0x000000003f403fd0 0x7f esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000003f40404f 0x1 + .rodata.esp_timer_init.str1.4 + 0x000000003f404050 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.__func__$0 + 0x000000003f404078 0xd esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000003f404085 0x3 + .rodata.esp_timer_impl_init_system_time.str1.4 + 0x000000003f404088 0x51 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + *fill* 0x000000003f4040d9 0x3 + .rodata.str1.4 + 0x000000003f4040dc 0x108 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .rodata.esp_timer_impl_init.str1.4 + 0x000000003f4041e4 0xbf esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + *fill* 0x000000003f4042a3 0x1 + .rodata.__func__$2 + 0x000000003f4042a4 0x1f esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + *fill* 0x000000003f4042c3 0x1 + .rodata.__func__$1 + 0x000000003f4042c4 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .rodata.translate_path.str1.4 + 0x000000003f4042e0 0x5b esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x5f (size before relaxing) + .rodata.esp_vfs_register_fd_range.str1.4 + 0x000000003f40433b 0x1 esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x000000003f40433b 0x1 + .rodata.__func__$0 + 0x000000003f40433c 0xf esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x000000003f40434b 0x1 + .rodata.console_open.str1.4 + 0x000000003f40434c 0xf esp-idf/vfs/libvfs.a(vfs_console.c.obj) + *fill* 0x000000003f40435b 0x1 + .rodata.esp_vfs_dev_console_register.str1.4 + 0x000000003f40435c 0xd esp-idf/vfs/libvfs.a(vfs_console.c.obj) + *fill* 0x000000003f404369 0x3 + .rodata.vfs 0x000000003f40436c 0xa4 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .rodata.uart_tx_char.str1.4 + 0x000000003f404410 0xc1 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.uart_rx_char.str1.4 + 0x000000003f404410 0x8e esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.uart_fcntl.str1.4 + 0x000000003f404410 0x34 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.uart_return_char.str1.4 + 0x000000003f404444 0x1d esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f404461 0x3 + .rodata.uart_access.str1.4 + 0x000000003f404464 0x7 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0xb (size before relaxing) + *fill* 0x000000003f40446b 0x1 + .rodata.uart_fsync.str1.4 + 0x000000003f40446c 0x12 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f40447e 0x2 + .rodata.__func__$1 + 0x000000003f404480 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f40448b 0x1 + .rodata.__func__$2 + 0x000000003f40448c 0x11 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f40449d 0x3 + .rodata.__func__$3 + 0x000000003f4044a0 0xa esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f4044aa 0x2 + .rodata.__func__$4 + 0x000000003f4044ac 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f4044b7 0x1 + .rodata.__func__$5 + 0x000000003f4044b8 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f4044c3 0x1 + .rodata.__func__$6 + 0x000000003f4044c4 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f4044cf 0x1 + .rodata.__func__$7 + 0x000000003f4044d0 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f4044db 0x1 + .rodata.__func__$8 + 0x000000003f4044dc 0x15 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f4044f1 0x3 + .rodata.__func__$9 + 0x000000003f4044f4 0x14 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.vfs 0x000000003f404508 0xa4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.s_uart_mount_points + 0x000000003f4045ac 0xc esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.s_ctx 0x000000003f4045b8 0xc esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.hli_queue_setup.str1.4 + 0x000000003f4045c4 0x96 esp-idf/bt/libbt.a(hli_api.c.obj) + *fill* 0x000000003f40465a 0x2 + .rodata.__func__$0 + 0x000000003f40465c 0x10 esp-idf/bt/libbt.a(hli_api.c.obj) + .rodata.example_get_sec2_salt.str1.4 + 0x000000003f40466c 0x44 esp-idf/main/libmain.a(app_main.c.obj) + .rodata.example_get_sec2_verifier.str1.4 + 0x000000003f4046b0 0x44 esp-idf/main/libmain.a(app_main.c.obj) + .rodata.custom_prov_data_handler.str1.4 + 0x000000003f4046f4 0x64 esp-idf/main/libmain.a(app_main.c.obj) + .rodata.event_handler.str1.4 + 0x000000003f404758 0x3ac esp-idf/main/libmain.a(app_main.c.obj) + .rodata.get_device_service_name.str1.4 + 0x000000003f404b04 0x17 esp-idf/main/libmain.a(app_main.c.obj) + *fill* 0x000000003f404b1b 0x1 + .rodata.wifi_prov_print_qr.str1.4 + 0x000000003f404b1c 0x1bd esp-idf/main/libmain.a(app_main.c.obj) + *fill* 0x000000003f404cd9 0x3 + .rodata 0x000000003f404cdc 0xc esp-idf/main/libmain.a(app_main.c.obj) + .rodata.wifi_init_sta.str1.4 + 0x000000003f404ce8 0x71 esp-idf/main/libmain.a(app_main.c.obj) + *fill* 0x000000003f404d59 0x3 + .rodata.app_main.str1.4 + 0x000000003f404d5c 0x439 esp-idf/main/libmain.a(app_main.c.obj) + *fill* 0x000000003f405195 0x3 + .rodata.__func__$0 + 0x000000003f405198 0xe esp-idf/main/libmain.a(app_main.c.obj) + *fill* 0x000000003f4051a6 0x2 + .rodata.__func__$2 + 0x000000003f4051a8 0x9 esp-idf/main/libmain.a(app_main.c.obj) + *fill* 0x000000003f4051b1 0x3 + .rodata.sec2_verifier + 0x000000003f4051b4 0x180 esp-idf/main/libmain.a(app_main.c.obj) + .rodata.sec2_salt + 0x000000003f405334 0x10 esp-idf/main/libmain.a(app_main.c.obj) + .rodata.execute_event_cb.str1.4 + 0x000000003f405344 0xfb esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f40543f 0x1 + .rodata.wifi_connect_timer_cb.str1.4 + 0x000000003f405440 0x30 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .rodata.update_wifi_scan_results.str1.4 + 0x000000003f405470 0xe5 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f405555 0x3 + .rodata.prov_stop_and_notify.str1.4 + 0x000000003f405558 0x83 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f4055db 0x1 + .rodata.wifi_prov_mgr_event_handler_internal.str1.4 + 0x000000003f4055dc 0x135 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f405711 0x3 + .rodata.cleanup_delay_timer_cb.str1.4 + 0x000000003f405714 0x47 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f40575b 0x1 + .rodata.wifi_prov_get_info_json.str1.4 + 0x000000003f40575c 0x26 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x32 (size before relaxing) + *fill* 0x000000003f405782 0x2 + .rodata.wifi_prov_mgr_start_service.str1.4 + 0x000000003f405784 0x3a9 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f405b2d 0x3 + .rodata.wifi_prov_mgr_endpoint_create.str1.4 + 0x000000003f405b30 0x3d esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f405b6d 0x3 + .rodata.wifi_prov_mgr_endpoint_register.str1.4 + 0x000000003f405b70 0x40 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .rodata.wifi_prov_mgr_is_provisioned.str1.4 + 0x000000003f405bb0 0x6 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f405bb6 0x2 + .rodata.wifi_prov_mgr_configure_sta.str1.4 + 0x000000003f405bb8 0x178 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .rodata.wifi_prov_mgr_init.str1.4 + 0x000000003f405d30 0x26d esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f405f9d 0x3 + .rodata.wifi_prov_mgr_deinit.str1.4 + 0x000000003f405fa0 0x3e esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f405fde 0x2 + .rodata.wifi_prov_mgr_start_provisioning.str1.4 + 0x000000003f405fe0 0x28d esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f40626d 0x3 + .rodata.wifi_prov_mgr_reset_sm_state_on_failure.str1.4 + 0x000000003f406270 0x8c esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .rodata.wifi_prov_mgr_reset_sm_state_for_reprovision.str1.4 + 0x000000003f4062fc 0xd8 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .rodata.__func__$0 + 0x000000003f4063d4 0x2d esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f406401 0x3 + .rodata.__func__$1 + 0x000000003f406404 0x28 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .rodata.__func__$2 + 0x000000003f40642c 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .rodata.__func__$4 + 0x000000003f40644c 0x21 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f40646d 0x3 + .rodata.__func__$5 + 0x000000003f406470 0x25 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f406495 0x3 + .rodata.__func__$6 + 0x000000003f406498 0x1b esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f4064b3 0x1 + .rodata.__func__$7 + 0x000000003f4064b4 0x15 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f4064c9 0x3 + .rodata.__func__$9 + 0x000000003f4064cc 0x13 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f4064df 0x1 + .rodata.__func__$10 + 0x000000003f4064e0 0x11 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f4064f1 0x3 + .rodata.__func__$11 + 0x000000003f4064f4 0x1c esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .rodata.__func__$12 + 0x000000003f406510 0x29 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f406539 0x3 + .rodata.__func__$13 + 0x000000003f40653c 0x1d esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f406559 0x3 + .rodata.__func__$14 + 0x000000003f40655c 0x1f esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f40657b 0x1 + .rodata.__func__$15 + 0x000000003f40657c 0x25 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f4065a1 0x3 + .rodata.__func__$16 + 0x000000003f4065a4 0x21 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f4065c5 0x3 + .rodata.__func__$17 + 0x000000003f4065c8 0x1e esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f4065e6 0x2 + .rodata.__func__$18 + 0x000000003f4065e8 0x13 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f4065fb 0x1 + .rodata.__func__$21 + 0x000000003f4065fc 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .rodata.__func__$22 + 0x000000003f40661c 0x1e esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x000000003f40663a 0x2 + .rodata.WIFI_PROV_EVENT + 0x000000003f40663c 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x000000003f40663c WIFI_PROV_EVENT + .rodata.apply_config_handler.str1.4 + 0x000000003f406640 0x7e esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + *fill* 0x000000003f4066be 0x2 + .rodata.set_config_handler.str1.4 + 0x000000003f4066c0 0x38 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + .rodata.get_status_handler.str1.4 + 0x000000003f4066f8 0x4d esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + *fill* 0x000000003f406745 0x3 + .rodata.set_config_endpoint.str1.4 + 0x000000003f406748 0x105 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + *fill* 0x000000003f40684d 0x3 + .rodata.set_config_service.str1.4 + 0x000000003f406850 0xa3 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + *fill* 0x000000003f4068f3 0x1 + .rodata.delete_config.str1.4 + 0x000000003f4068f4 0x39 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + *fill* 0x000000003f40692d 0x3 + .rodata.new_config.str1.4 + 0x000000003f406930 0x59 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + *fill* 0x000000003f406989 0x3 + .rodata.prov_start.str1.4 + 0x000000003f40698c 0xb6 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + *fill* 0x000000003f406a42 0x2 + .rodata.wifi_prov_scheme_ble_event_cb_free_btdm.str1.4 + 0x000000003f406a44 0xd5 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + *fill* 0x000000003f406b19 0x3 + .rodata.wifi_prov_scheme_ble + 0x000000003f406b1c 0x1c esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + 0x000000003f406b1c wifi_prov_scheme_ble + .rodata.wifi_prov_config_command_dispatcher.str1.4 + 0x000000003f406b38 0x80 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + .rodata.cmd_apply_config_handler.str1.4 + 0x000000003f406bb8 0x6c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + .rodata.wifi_prov_config_command_cleanup.str1.4 + 0x000000003f406c24 0x45 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + *fill* 0x000000003f406c69 0x3 + .rodata.wifi_prov_config_data_handler.str1.4 + 0x000000003f406c6c 0xaa esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + 0xd9 (size before relaxing) + *fill* 0x000000003f406d16 0x2 + .rodata.cmd_table + 0x000000003f406d18 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + .rodata.wifi_prov_scan_cmd_dispatcher.str1.4 + 0x000000003f406d30 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + 0x80 (size before relaxing) + .rodata.cmd_scan_result_handler.str1.4 + 0x000000003f406d40 0x126 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + 0x192 (size before relaxing) + *fill* 0x000000003f406e66 0x2 + .rodata 0x000000003f406e68 0x30 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + .rodata.wifi_prov_scan_cmd_cleanup.str1.4 + 0x000000003f406e98 0x45 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + .rodata.wifi_prov_scan_handler.str1.4 + 0x000000003f406e98 0x6c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + 0xd1 (size before relaxing) + .rodata.cmd_table + 0x000000003f406f04 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + .rodata.wifi_ctrl_cmd_dispatcher.str1.4 + 0x000000003f406f1c 0x5d esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + 0x98 (size before relaxing) + .rodata.cmd_ctrl_reprov_handler.str1.4 + 0x000000003f406f79 0x6c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + .rodata.wifi_ctrl_cmd_cleanup.str1.4 + 0x000000003f406f79 0x45 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + *fill* 0x000000003f406f79 0x3 + .rodata.wifi_ctrl_handler.str1.4 + 0x000000003f406f7c 0xb8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + 0xf0 (size before relaxing) + .rodata.cmd_table + 0x000000003f407034 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + .rodata.cmd_get_status__get_packed_size.str1.4 + 0x000000003f407044 0x76 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + *fill* 0x000000003f4070ba 0x2 + .rodata.wi_fi_config_payload__get_packed_size.str1.4 + 0x000000003f4070bc 0x3e esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + *fill* 0x000000003f4070fa 0x2 + .rodata.__func__$0 + 0x000000003f4070fc 0x24 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.__func__$2 + 0x000000003f407120 0x1b esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + *fill* 0x000000003f40713b 0x1 + .rodata.__func__$3 + 0x000000003f40713c 0x26 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + *fill* 0x000000003f407162 0x2 + .rodata.str1.4 + 0x000000003f407164 0x24e esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x2bd (size before relaxing) + *fill* 0x000000003f4073b2 0x2 + .rodata.wi_fi_config_msg_type__descriptor + 0x000000003f4073b4 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x000000003f4073b4 wi_fi_config_msg_type__descriptor + .rodata.wi_fi_config_msg_type__enum_values_by_name + 0x000000003f4073f0 0x30 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.wi_fi_config_msg_type__value_ranges + 0x000000003f407420 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.wi_fi_config_msg_type__enum_values_by_number + 0x000000003f407430 0x48 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.wi_fi_config_payload__descriptor + 0x000000003f407478 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x000000003f407478 wi_fi_config_payload__descriptor + .rodata.wi_fi_config_payload__number_ranges + 0x000000003f4074b4 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.wi_fi_config_payload__field_indices_by_name + 0x000000003f4074cc 0x1c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.wi_fi_config_payload__field_descriptors + 0x000000003f4074e8 0x150 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.resp_apply_config__descriptor + 0x000000003f407638 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x000000003f407638 resp_apply_config__descriptor + .rodata.resp_apply_config__number_ranges + 0x000000003f407674 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.resp_apply_config__field_indices_by_name + 0x000000003f407684 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.resp_apply_config__field_descriptors + 0x000000003f407688 0x30 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.cmd_apply_config__descriptor + 0x000000003f4076b8 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x000000003f4076b8 cmd_apply_config__descriptor + .rodata.resp_set_config__descriptor + 0x000000003f4076f4 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x000000003f4076f4 resp_set_config__descriptor + .rodata.resp_set_config__number_ranges + 0x000000003f407730 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.resp_set_config__field_indices_by_name + 0x000000003f407740 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.resp_set_config__field_descriptors + 0x000000003f407744 0x30 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.cmd_set_config__descriptor + 0x000000003f407774 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x000000003f407774 cmd_set_config__descriptor + .rodata.cmd_set_config__number_ranges + 0x000000003f4077b0 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.cmd_set_config__field_indices_by_name + 0x000000003f4077c0 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.cmd_set_config__field_descriptors + 0x000000003f4077d0 0xc0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.resp_get_status__descriptor + 0x000000003f407890 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x000000003f407890 resp_get_status__descriptor + .rodata.resp_get_status__number_ranges + 0x000000003f4078cc 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.resp_get_status__field_indices_by_name + 0x000000003f4078e4 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.resp_get_status__field_descriptors + 0x000000003f4078f4 0xc0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .rodata.cmd_get_status__descriptor + 0x000000003f4079b4 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x000000003f4079b4 cmd_get_status__descriptor + .rodata.cmd_scan_start__get_packed_size.str1.4 + 0x000000003f4079f0 0x74 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.wi_fi_scan_payload__get_packed_size.str1.4 + 0x000000003f407a64 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.__func__$0 + 0x000000003f407aa0 0x22 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + *fill* 0x000000003f407ac2 0x2 + .rodata.__func__$2 + 0x000000003f407ac4 0x19 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + *fill* 0x000000003f407add 0x3 + .rodata.__func__$3 + 0x000000003f407ae0 0x24 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.str1.4 + 0x000000003f407b04 0x272 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x302 (size before relaxing) + *fill* 0x000000003f407d76 0x2 + .rodata.wi_fi_scan_msg_type__descriptor + 0x000000003f407d78 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x000000003f407d78 wi_fi_scan_msg_type__descriptor + .rodata.wi_fi_scan_msg_type__enum_values_by_name + 0x000000003f407db4 0x30 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.wi_fi_scan_msg_type__value_ranges + 0x000000003f407de4 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.wi_fi_scan_msg_type__enum_values_by_number + 0x000000003f407df4 0x48 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.wi_fi_scan_payload__descriptor + 0x000000003f407e3c 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x000000003f407e3c wi_fi_scan_payload__descriptor + .rodata.wi_fi_scan_payload__number_ranges + 0x000000003f407e78 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.wi_fi_scan_payload__field_indices_by_name + 0x000000003f407e90 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.wi_fi_scan_payload__field_descriptors + 0x000000003f407eb0 0x180 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.resp_scan_result__descriptor + 0x000000003f408030 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x000000003f408030 resp_scan_result__descriptor + .rodata.resp_scan_result__number_ranges + 0x000000003f40806c 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.resp_scan_result__field_indices_by_name + 0x000000003f40807c 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.resp_scan_result__field_descriptors + 0x000000003f408080 0x30 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.wi_fi_scan_result__descriptor + 0x000000003f4080b0 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x000000003f4080b0 wi_fi_scan_result__descriptor + .rodata.wi_fi_scan_result__number_ranges + 0x000000003f4080ec 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.wi_fi_scan_result__field_indices_by_name + 0x000000003f4080fc 0x14 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.wi_fi_scan_result__field_descriptors + 0x000000003f408110 0xf0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.cmd_scan_result__descriptor + 0x000000003f408200 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x000000003f408200 cmd_scan_result__descriptor + .rodata.cmd_scan_result__number_ranges + 0x000000003f40823c 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.cmd_scan_result__field_indices_by_name + 0x000000003f40824c 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.cmd_scan_result__field_descriptors + 0x000000003f408254 0x60 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.resp_scan_status__descriptor + 0x000000003f4082b4 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x000000003f4082b4 resp_scan_status__descriptor + .rodata.resp_scan_status__number_ranges + 0x000000003f4082f0 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.resp_scan_status__field_indices_by_name + 0x000000003f408300 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.resp_scan_status__field_descriptors + 0x000000003f408308 0x60 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.cmd_scan_status__descriptor + 0x000000003f408368 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x000000003f408368 cmd_scan_status__descriptor + .rodata.resp_scan_start__descriptor + 0x000000003f4083a4 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x000000003f4083a4 resp_scan_start__descriptor + .rodata.cmd_scan_start__descriptor + 0x000000003f4083e0 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x000000003f4083e0 cmd_scan_start__descriptor + .rodata.cmd_scan_start__number_ranges + 0x000000003f40841c 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.cmd_scan_start__field_indices_by_name + 0x000000003f40842c 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.cmd_scan_start__field_descriptors + 0x000000003f40843c 0xc0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .rodata.cmd_ctrl_reset__get_packed_size.str1.4 + 0x000000003f4084fc 0x74 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.wi_fi_ctrl_payload__get_packed_size.str1.4 + 0x000000003f408570 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.__func__$0 + 0x000000003f4085ac 0x22 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + *fill* 0x000000003f4085ce 0x2 + .rodata.__func__$2 + 0x000000003f4085d0 0x19 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + *fill* 0x000000003f4085e9 0x3 + .rodata.__func__$3 + 0x000000003f4085ec 0x24 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.str1.4 + 0x000000003f408610 0x18d esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + 0x1dd (size before relaxing) + *fill* 0x000000003f40879d 0x3 + .rodata.wi_fi_ctrl_msg_type__descriptor + 0x000000003f4087a0 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + 0x000000003f4087a0 wi_fi_ctrl_msg_type__descriptor + .rodata.wi_fi_ctrl_msg_type__enum_values_by_name + 0x000000003f4087dc 0x28 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.wi_fi_ctrl_msg_type__value_ranges + 0x000000003f408804 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.wi_fi_ctrl_msg_type__enum_values_by_number + 0x000000003f408814 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.wi_fi_ctrl_payload__descriptor + 0x000000003f408850 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + 0x000000003f408850 wi_fi_ctrl_payload__descriptor + .rodata.wi_fi_ctrl_payload__number_ranges + 0x000000003f40888c 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.wi_fi_ctrl_payload__field_indices_by_name + 0x000000003f4088a4 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.wi_fi_ctrl_payload__field_descriptors + 0x000000003f4088bc 0x120 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .rodata.resp_ctrl_reprov__descriptor + 0x000000003f4089dc 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + 0x000000003f4089dc resp_ctrl_reprov__descriptor + .rodata.cmd_ctrl_reprov__descriptor + 0x000000003f408a18 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + 0x000000003f408a18 cmd_ctrl_reprov__descriptor + .rodata.resp_ctrl_reset__descriptor + 0x000000003f408a54 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + 0x000000003f408a54 resp_ctrl_reset__descriptor + .rodata.cmd_ctrl_reset__descriptor + 0x000000003f408a90 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + 0x000000003f408a90 cmd_ctrl_reset__descriptor + .rodata.init_value$4 + 0x000000003f408acc 0x28 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .rodata.str1.4 + 0x000000003f408af4 0x222 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + 0x2f4 (size before relaxing) + *fill* 0x000000003f408d16 0x2 + .rodata.wifi_auth_mode__descriptor + 0x000000003f408d18 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + 0x000000003f408d18 wifi_auth_mode__descriptor + .rodata.wifi_auth_mode__enum_values_by_name + 0x000000003f408d54 0x40 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .rodata.wifi_auth_mode__value_ranges + 0x000000003f408d94 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .rodata.wifi_auth_mode__enum_values_by_number + 0x000000003f408da4 0x60 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .rodata.wifi_connect_failed_reason__descriptor + 0x000000003f408e04 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + 0x000000003f408e04 wifi_connect_failed_reason__descriptor + .rodata.wifi_connect_failed_reason__enum_values_by_name + 0x000000003f408e40 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .rodata.wifi_connect_failed_reason__value_ranges + 0x000000003f408e50 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .rodata.wifi_connect_failed_reason__enum_values_by_number + 0x000000003f408e60 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .rodata.wifi_station_state__descriptor + 0x000000003f408e78 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + 0x000000003f408e78 wifi_station_state__descriptor + .rodata.wifi_station_state__enum_values_by_name + 0x000000003f408eb4 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .rodata.wifi_station_state__value_ranges + 0x000000003f408ed4 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .rodata.wifi_station_state__enum_values_by_number + 0x000000003f408ee4 0x30 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .rodata.wifi_connected_state__descriptor + 0x000000003f408f14 0x3c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + 0x000000003f408f14 wifi_connected_state__descriptor + .rodata.wifi_connected_state__number_ranges + 0x000000003f408f50 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .rodata.wifi_connected_state__field_indices_by_name + 0x000000003f408f60 0x14 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .rodata.wifi_connected_state__field_descriptors + 0x000000003f408f74 0xf0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .rodata.protocomm_add_endpoint_internal.str1.4 + 0x000000003f409064 0xb7 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + *fill* 0x000000003f40911b 0x1 + .rodata.protocomm_version_handler.str1.4 + 0x000000003f40911c 0x47 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + *fill* 0x000000003f409163 0x1 + .rodata.protocomm_new.str1.4 + 0x000000003f409164 0x33 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + *fill* 0x000000003f409197 0x1 + .rodata.protocomm_req_handle.str1.4 + 0x000000003f409198 0x12e esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + *fill* 0x000000003f4092c6 0x2 + .rodata.protocomm_set_security.str1.4 + 0x000000003f4092c8 0x133 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + *fill* 0x000000003f4093fb 0x1 + .rodata.protocomm_set_version.str1.4 + 0x000000003f4093fc 0x6e esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + *fill* 0x000000003f40946a 0x2 + .rodata.str1.4 + 0x000000003f40946c 0xb7 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) + 0x13b (size before relaxing) + *fill* 0x000000003f409523 0x1 + .rodata.status__descriptor + 0x000000003f409524 0x3c esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) + 0x000000003f409524 status__descriptor + .rodata.status__enum_values_by_name + 0x000000003f409560 0x40 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) + .rodata.status__value_ranges + 0x000000003f4095a0 0x10 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) + .rodata.status__enum_values_by_number + 0x000000003f4095b0 0x60 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) + .rodata.sec0_session_setup.str1.4 + 0x000000003f409610 0x3e esp-idf/protocomm/libprotocomm.a(security0.c.obj) + *fill* 0x000000003f40964e 0x2 + .rodata.sec0_req_handler.str1.4 + 0x000000003f409650 0xab esp-idf/protocomm/libprotocomm.a(security0.c.obj) + 0xd9 (size before relaxing) + *fill* 0x000000003f4096fb 0x1 + .rodata.protocomm_security0 + 0x000000003f4096fc 0x20 esp-idf/protocomm/libprotocomm.a(security0.c.obj) + 0x000000003f4096fc protocomm_security0 + .rodata.sec1_decrypt.str1.4 + 0x000000003f40971c 0x111 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + *fill* 0x000000003f40982d 0x3 + .rodata.sec1_close_session.str1.4 + 0x000000003f409830 0x39 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + *fill* 0x000000003f409869 0x3 + .rodata.sec1_new_session.str1.4 + 0x000000003f40986c 0x38 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + .rodata.handle_session_command0.str1.4 + 0x000000003f4098a4 0x44e esp-idf/protocomm/libprotocomm.a(security1.c.obj) + *fill* 0x000000003f409cf2 0x2 + .rodata.handle_session_command1.str1.4 + 0x000000003f409cf4 0x22e esp-idf/protocomm/libprotocomm.a(security1.c.obj) + *fill* 0x000000003f409f22 0x2 + .rodata.sec1_session_setup.str1.4 + 0x000000003f409f24 0x62 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + *fill* 0x000000003f409f86 0x2 + .rodata.sec1_req_handler.str1.4 + 0x000000003f409f88 0x75 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0x151 (size before relaxing) + *fill* 0x000000003f409ffd 0x3 + .rodata.sec1_init.str1.4 + 0x000000003f40a000 0x35 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + *fill* 0x000000003f40a035 0x3 + .rodata.protocomm_security1 + 0x000000003f40a038 0x20 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0x000000003f40a038 protocomm_security1 + .rodata.sec2_decrypt.str1.4 + 0x000000003f40a058 0x8c esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0xfc (size before relaxing) + .rodata.sec2_encrypt.str1.4 + 0x000000003f40a0e4 0x91 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + .rodata.sec2_init.str1.4 + 0x000000003f40a175 0x35 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + *fill* 0x000000003f40a175 0x3 + .rodata.handle_session_command1.str1.4 + 0x000000003f40a178 0x132 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x246 (size before relaxing) + .rodata.sec2_close_session.str1.4 + 0x000000003f40a2aa 0x39 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + .rodata.sec2_new_session.str1.4 + 0x000000003f40a2aa 0x38 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + *fill* 0x000000003f40a2aa 0x2 + .rodata.handle_session_command0.str1.4 + 0x000000003f40a2ac 0x1db esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x2fa (size before relaxing) + .rodata.sec2_session_setup.str1.4 + 0x000000003f40a487 0x62 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + .rodata.sec2_req_handler.str1.4 + 0x000000003f40a487 0x151 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + *fill* 0x000000003f40a487 0x1 + .rodata.__FUNCTION__$0 + 0x000000003f40a488 0x18 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + .rodata.protocomm_security2 + 0x000000003f40a4a0 0x20 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x000000003f40a4a0 protocomm_security2 + .rodata.PROTOCOMM_SECURITY_SESSION_EVENT + 0x000000003f40a4c0 0x4 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x000000003f40a4c0 PROTOCOMM_SECURITY_SESSION_EVENT + .rodata.__esp_srp_srv_pubkey.str1.4 + 0x000000003f40a4c4 0x1db esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x6 (size before relaxing) + .rodata.esp_srp_get_session_key.str1.4 + 0x000000003f40a4c4 0x2 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x6 (size before relaxing) + *fill* 0x000000003f40a4c6 0x2 + .rodata.g_3072 + 0x000000003f40a4c8 0x1 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + *fill* 0x000000003f40a4c9 0x3 + .rodata.N_3072 + 0x000000003f40a4cc 0x180 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + .rodata.esp_mpi_new_from_hex.str1.4 + 0x000000003f40a64c 0x2f esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + *fill* 0x000000003f40a67b 0x1 + .rodata.esp_mpi_new_from_bin.str1.4 + 0x000000003f40a67c 0x2f esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + *fill* 0x000000003f40a6ab 0x1 + .rodata.esp_mpi_a_mul_b_mod_c.str1.4 + 0x000000003f40a6ac 0x4f esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + *fill* 0x000000003f40a6fb 0x1 + .rodata.esp_mpi_a_add_b_mod_c.str1.4 + 0x000000003f40a6fc 0x50 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + .rodata.gatt_svr_register_cb.str1.4 + 0x000000003f40a74c 0x3d esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x41 (size before relaxing) + *fill* 0x000000003f40a789 0x3 + .rodata.simple_ble_gatts_get_attr_value.str1.4 + 0x000000003f40a78c 0x4c esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .rodata.simple_ble_on_reset.str1.4 + 0x000000003f40a7d8 0x33 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + *fill* 0x000000003f40a80b 0x1 + .rodata.nimble_host_task.str1.4 + 0x000000003f40a80c 0x2e esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + *fill* 0x000000003f40a83a 0x2 + .rodata.ble_gatt_add_primary_svcs.str1.4 + 0x000000003f40a83c 0x4a esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + *fill* 0x000000003f40a886 0x2 + .rodata.ble_gatt_add_characteristics.str1.4 + 0x000000003f40a888 0x48 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .rodata.ble_gatt_add_char_dsc.str1.4 + 0x000000003f40a8d0 0x54 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .rodata.populate_gatt_db.str1.4 + 0x000000003f40a924 0x140 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .rodata.transport_simple_ble_disconnect.str1.4 + 0x000000003f40aa64 0xa9 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + *fill* 0x000000003f40ab0d 0x3 + .rodata.transport_simple_ble_connect.str1.4 + 0x000000003f40ab10 0x73 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + *fill* 0x000000003f40ab83 0x1 + .rodata.simple_ble_gatts_set_attr_value.str1.4 + 0x000000003f40ab84 0x50 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .rodata.gatt_svr_chr_access.str1.4 + 0x000000003f40abd4 0x205 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + *fill* 0x000000003f40add9 0x3 + .rodata.gatt_svr_dsc_access.str1.4 + 0x000000003f40addc 0x42 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + *fill* 0x000000003f40ae1e 0x2 + .rodata.simple_ble_advertise.str1.4 + 0x000000003f40ae20 0xc2 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + *fill* 0x000000003f40aee2 0x2 + .rodata.simple_ble_on_sync.str1.4 + 0x000000003f40aee4 0x6e esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + *fill* 0x000000003f40af52 0x2 + .rodata.simple_ble_gap_event.str1.4 + 0x000000003f40af54 0xc7 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + *fill* 0x000000003f40b01b 0x1 + .rodata.simple_ble_start.str1.4 + 0x000000003f40b01c 0x9e esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + *fill* 0x000000003f40b0ba 0x2 + .rodata.protocomm_ble_start.str1.4 + 0x000000003f40b0bc 0x2ef esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + *fill* 0x000000003f40b3ab 0x1 + .rodata.__func__$0 + 0x000000003f40b3ac 0x15 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + *fill* 0x000000003f40b3c1 0x3 + .rodata.PROTOCOMM_TRANSPORT_BLE_EVENT + 0x000000003f40b3c4 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x000000003f40b3c4 PROTOCOMM_TRANSPORT_BLE_EVENT + .rodata.str1.4 + 0x000000003f40b3c8 0xad esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + 0xbd (size before relaxing) + *fill* 0x000000003f40b475 0x3 + .rodata.sec0_msg_type__descriptor + 0x000000003f40b478 0x3c esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + 0x000000003f40b478 sec0_msg_type__descriptor + .rodata.sec0_msg_type__enum_values_by_name + 0x000000003f40b4b4 0x10 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .rodata.sec0_msg_type__value_ranges + 0x000000003f40b4c4 0x10 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .rodata.sec0_msg_type__enum_values_by_number + 0x000000003f40b4d4 0x18 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .rodata.sec0_payload__descriptor + 0x000000003f40b4ec 0x3c esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + 0x000000003f40b4ec sec0_payload__descriptor + .rodata.sec0_payload__number_ranges + 0x000000003f40b528 0x18 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .rodata.sec0_payload__field_indices_by_name + 0x000000003f40b540 0xc esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .rodata.sec0_payload__field_descriptors + 0x000000003f40b54c 0x90 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .rodata.s0_session_resp__descriptor + 0x000000003f40b5dc 0x3c esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + 0x000000003f40b5dc s0_session_resp__descriptor + .rodata.s0_session_resp__number_ranges + 0x000000003f40b618 0x10 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .rodata.s0_session_resp__field_indices_by_name + 0x000000003f40b628 0x4 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .rodata.s0_session_resp__field_descriptors + 0x000000003f40b62c 0x30 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .rodata.s0_session_cmd__descriptor + 0x000000003f40b65c 0x3c esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + 0x000000003f40b65c s0_session_cmd__descriptor + .rodata.str1.4 + 0x000000003f40b698 0x18f esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + 0x19f (size before relaxing) + *fill* 0x000000003f40b827 0x1 + .rodata.sec1_msg_type__descriptor + 0x000000003f40b828 0x3c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + 0x000000003f40b828 sec1_msg_type__descriptor + .rodata.sec1_msg_type__enum_values_by_name + 0x000000003f40b864 0x20 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.sec1_msg_type__value_ranges + 0x000000003f40b884 0x10 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.sec1_msg_type__enum_values_by_number + 0x000000003f40b894 0x30 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.sec1_payload__descriptor + 0x000000003f40b8c4 0x3c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + 0x000000003f40b8c4 sec1_payload__descriptor + .rodata.sec1_payload__number_ranges + 0x000000003f40b900 0x18 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.sec1_payload__field_indices_by_name + 0x000000003f40b918 0x14 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.sec1_payload__field_descriptors + 0x000000003f40b92c 0xf0 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.session_resp0__descriptor + 0x000000003f40ba1c 0x3c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + 0x000000003f40ba1c session_resp0__descriptor + .rodata.session_resp0__number_ranges + 0x000000003f40ba58 0x10 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.session_resp0__field_indices_by_name + 0x000000003f40ba68 0xc esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.session_resp0__field_descriptors + 0x000000003f40ba74 0x90 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.session_cmd0__descriptor + 0x000000003f40bb04 0x3c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + 0x000000003f40bb04 session_cmd0__descriptor + .rodata.session_cmd0__number_ranges + 0x000000003f40bb40 0x10 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.session_cmd0__field_indices_by_name + 0x000000003f40bb50 0x4 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.session_cmd0__field_descriptors + 0x000000003f40bb54 0x30 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.session_resp1__descriptor + 0x000000003f40bb84 0x3c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + 0x000000003f40bb84 session_resp1__descriptor + .rodata.session_resp1__number_ranges + 0x000000003f40bbc0 0x18 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.session_resp1__field_indices_by_name + 0x000000003f40bbd8 0x8 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.session_resp1__field_descriptors + 0x000000003f40bbe0 0x60 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.session_cmd1__descriptor + 0x000000003f40bc40 0x3c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + 0x000000003f40bc40 session_cmd1__descriptor + .rodata.session_cmd1__number_ranges + 0x000000003f40bc7c 0x10 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.session_cmd1__field_indices_by_name + 0x000000003f40bc8c 0x4 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.session_cmd1__field_descriptors + 0x000000003f40bc90 0x30 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .rodata.str1.4 + 0x000000003f40bcc0 0x184 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + 0x1c2 (size before relaxing) + .rodata.sec2_msg_type__descriptor + 0x000000003f40be44 0x3c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + 0x000000003f40be44 sec2_msg_type__descriptor + .rodata.sec2_msg_type__enum_values_by_name + 0x000000003f40be80 0x20 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.sec2_msg_type__value_ranges + 0x000000003f40bea0 0x10 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.sec2_msg_type__enum_values_by_number + 0x000000003f40beb0 0x30 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.sec2_payload__descriptor + 0x000000003f40bee0 0x3c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + 0x000000003f40bee0 sec2_payload__descriptor + .rodata.sec2_payload__number_ranges + 0x000000003f40bf1c 0x18 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.sec2_payload__field_indices_by_name + 0x000000003f40bf34 0x14 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.sec2_payload__field_descriptors + 0x000000003f40bf48 0xf0 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.s2_session_resp1__descriptor + 0x000000003f40c038 0x3c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + 0x000000003f40c038 s2_session_resp1__descriptor + .rodata.s2_session_resp1__number_ranges + 0x000000003f40c074 0x10 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.s2_session_resp1__field_indices_by_name + 0x000000003f40c084 0xc esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.s2_session_resp1__field_descriptors + 0x000000003f40c090 0x90 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.s2_session_cmd1__descriptor + 0x000000003f40c120 0x3c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + 0x000000003f40c120 s2_session_cmd1__descriptor + .rodata.s2_session_cmd1__number_ranges + 0x000000003f40c15c 0x10 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.s2_session_cmd1__field_indices_by_name + 0x000000003f40c16c 0x4 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.s2_session_cmd1__field_descriptors + 0x000000003f40c170 0x30 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.s2_session_resp0__descriptor + 0x000000003f40c1a0 0x3c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + 0x000000003f40c1a0 s2_session_resp0__descriptor + .rodata.s2_session_resp0__number_ranges + 0x000000003f40c1dc 0x10 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.s2_session_resp0__field_indices_by_name + 0x000000003f40c1ec 0xc esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.s2_session_resp0__field_descriptors + 0x000000003f40c1f8 0x90 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.s2_session_cmd0__descriptor + 0x000000003f40c288 0x3c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + 0x000000003f40c288 s2_session_cmd0__descriptor + .rodata.s2_session_cmd0__number_ranges + 0x000000003f40c2c4 0x10 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.s2_session_cmd0__field_indices_by_name + 0x000000003f40c2d4 0x8 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.s2_session_cmd0__field_descriptors + 0x000000003f40c2dc 0x60 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .rodata.session_data__get_packed_size.str1.4 + 0x000000003f40c33c 0x6a esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + *fill* 0x000000003f40c3a6 0x2 + .rodata.__func__$0 + 0x000000003f40c3a8 0x1c esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + .rodata.__func__$2 + 0x000000003f40c3c4 0x13 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + *fill* 0x000000003f40c3d7 0x1 + .rodata.__func__$3 + 0x000000003f40c3d8 0x1e esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + *fill* 0x000000003f40c3f6 0x2 + .rodata.str1.4 + 0x000000003f40c3f8 0x95 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + 0xc5 (size before relaxing) + *fill* 0x000000003f40c48d 0x3 + .rodata.sec_scheme_version__descriptor + 0x000000003f40c490 0x3c esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + 0x000000003f40c490 sec_scheme_version__descriptor + .rodata.sec_scheme_version__enum_values_by_name + 0x000000003f40c4cc 0x18 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + .rodata.sec_scheme_version__value_ranges + 0x000000003f40c4e4 0x10 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + .rodata.sec_scheme_version__enum_values_by_number + 0x000000003f40c4f4 0x24 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + .rodata.session_data__descriptor + 0x000000003f40c518 0x3c esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + 0x000000003f40c518 session_data__descriptor + .rodata.session_data__number_ranges + 0x000000003f40c554 0x18 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + .rodata.session_data__field_indices_by_name + 0x000000003f40c56c 0x10 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + .rodata.session_data__field_descriptors + 0x000000003f40c57c 0xc0 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + .rodata.str1.4 + 0x000000003f40c63c 0xe3 esp-idf/bt/libbt.a(bt.c.obj) + 0xe7 (size before relaxing) + *fill* 0x000000003f40c71f 0x1 + .rodata.coex_version_get_wrapper.str1.4 + 0x000000003f40c720 0x9 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x000000003f40c729 0x3 + .rodata.queue_create_wrapper.str1.4 + 0x000000003f40c72c 0x16 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x000000003f40c742 0x2 + .rodata.customer_queue_create_hlevel_wrapper.str1.4 + 0x000000003f40c744 0x1f esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x000000003f40c763 0x1 + .rodata.semphr_create_wrapper.str1.4 + 0x000000003f40c764 0x14 esp-idf/bt/libbt.a(bt.c.obj) + 0x1c (size before relaxing) + .rodata.esp_bt_controller_mem_release.str1.4 + 0x000000003f40c778 0x59 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x000000003f40c7d1 0x3 + .rodata.esp_bt_controller_init.str1.4 + 0x000000003f40c7d4 0x5a esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x000000003f40c82e 0x2 + .rodata.esp_bt_controller_enable.str1.4 + 0x000000003f40c830 0x45 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x000000003f40c875 0x3 + .rodata.__func__$0 + 0x000000003f40c878 0x16 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x000000003f40c88e 0x2 + .rodata.__func__$1 + 0x000000003f40c890 0x19 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x000000003f40c8a9 0x3 + .rodata.__func__$2 + 0x000000003f40c8ac 0x19 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x000000003f40c8c5 0x3 + .rodata.__func__$3 + 0x000000003f40c8c8 0x1d esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x000000003f40c8e5 0x3 + .rodata.__func__$4 + 0x000000003f40c8e8 0x1d esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x000000003f40c905 0x3 + .rodata.__func__$5 + 0x000000003f40c908 0x1c esp-idf/bt/libbt.a(bt.c.obj) + .rodata.__func__$6 + 0x000000003f40c924 0x23 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x000000003f40c947 0x1 + .rodata.__func__$7 + 0x000000003f40c948 0x23 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x000000003f40c96b 0x1 + .rodata.__func__$8 + 0x000000003f40c96c 0x15 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x000000003f40c981 0x3 + .rodata.__func__$9 + 0x000000003f40c984 0x25 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x000000003f40c9a9 0x3 + .rodata.__func__$10 + 0x000000003f40c9ac 0x17 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x000000003f40c9c3 0x1 + .rodata.__func__$11 + 0x000000003f40c9c4 0x13 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x000000003f40c9d7 0x1 + .rodata.__func__$12 + 0x000000003f40c9d8 0x1e esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x000000003f40c9f6 0x2 + .rodata.osi_funcs_ro + 0x000000003f40c9f8 0xf8 esp-idf/bt/libbt.a(bt.c.obj) + .rodata.pub_addr_types$0 + 0x000000003f40caf0 0x2 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + *fill* 0x000000003f40caf2 0x2 + .rodata.priv_addr_types$1 + 0x000000003f40caf4 0x2 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + *fill* 0x000000003f40caf6 0x2 + .rodata.ble_hs_sync.str1.4 + 0x000000003f40caf8 0x4e esp-idf/bt/libbt.a(ble_hs.c.obj) + *fill* 0x000000003f40cb46 0x2 + .rodata.ble_hs_timer_exp.str1.4 + 0x000000003f40cb48 0x40 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x44 (size before relaxing) + .rodata.ble_hs_event_start_stage2.str1.4 + 0x000000003f40cb88 0x8 esp-idf/bt/libbt.a(ble_hs.c.obj) + .rodata.ble_hs_init.str1.4 + 0x000000003f40cb90 0x13 esp-idf/bt/libbt.a(ble_hs.c.obj) + *fill* 0x000000003f40cba3 0x1 + .rodata.__func__$0 + 0x000000003f40cba4 0x1a esp-idf/bt/libbt.a(ble_hs.c.obj) + *fill* 0x000000003f40cbbe 0x2 + .rodata.__func__$1 + 0x000000003f40cbc0 0xc esp-idf/bt/libbt.a(ble_hs.c.obj) + .rodata.__func__$2 + 0x000000003f40cbcc 0x11 esp-idf/bt/libbt.a(ble_hs.c.obj) + *fill* 0x000000003f40cbdd 0x3 + .rodata.__func__$3 + 0x000000003f40cbe0 0xd esp-idf/bt/libbt.a(ble_hs.c.obj) + *fill* 0x000000003f40cbed 0x3 + .rodata.ble_hs_hci_evt_le_dispatch + 0x000000003f40cbf0 0x64 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + .rodata.ble_hs_hci_evt_dispatch + 0x000000003f40cc54 0x30 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + .rodata.ble_att_rx_dispatch + 0x000000003f40cc84 0xd8 esp-idf/bt/libbt.a(ble_att.c.obj) + .rodata 0x000000003f40cd5c 0xc esp-idf/bt/libbt.a(ble_gattc.c.obj) + .rodata.ble_gattc_log_proc_init.str1.4 + 0x000000003f40cd68 0x35 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x3d (size before relaxing) + *fill* 0x000000003f40cd9d 0x3 + .rodata.ble_gattc_log_read.str1.4 + 0x000000003f40cda0 0x2f esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x000000003f40cdcf 0x1 + .rodata.ble_gattc_log_notify.str1.4 + 0x000000003f40cdd0 0x9 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x000000003f40cdd9 0x3 + .rodata.ble_gattc_log_indicate.str1.4 + 0x000000003f40cddc 0xb esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x000000003f40cde7 0x1 + .rodata.ble_gattc_init.str1.4 + 0x000000003f40cde8 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .rodata.ble_gattc_rx_exec_entries + 0x000000003f40cdfc 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .rodata.ble_gattc_rx_prep_entries + 0x000000003f40ce0c 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .rodata.ble_gattc_rx_read_rsp_entries + 0x000000003f40ce1c 0x18 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .rodata.ble_gattc_rx_read_type_complete_entries + 0x000000003f40ce34 0x20 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .rodata.ble_gattc_rx_read_type_elem_entries + 0x000000003f40ce54 0x20 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .rodata.ble_gattc_tmo_dispatch + 0x000000003f40ce74 0x3c esp-idf/bt/libbt.a(ble_gattc.c.obj) + .rodata.ble_gattc_resume_dispatch + 0x000000003f40ceb0 0x3c esp-idf/bt/libbt.a(ble_gattc.c.obj) + .rodata.ble_gattc_err_dispatch + 0x000000003f40ceec 0x3c esp-idf/bt/libbt.a(ble_gattc.c.obj) + .rodata.ble_hs_startup_read_sup_f_tx.str1.4 + 0x000000003f40cf28 0x37 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + 0x3f (size before relaxing) + *fill* 0x000000003f40cf5f 0x1 + .rodata.ble_hs_startup_go.str1.4 + 0x000000003f40cf60 0x40 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + .rodata.ble_l2cap_sig_init.str1.4 + 0x000000003f40cfa0 0x18 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + .rodata.ble_l2cap_sig_dispatch + 0x000000003f40cfb8 0x6c esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + .rodata.ble_gap_log_wl.str1.4 + 0x000000003f40d024 0xaf esp-idf/bt/libbt.a(ble_gap.c.obj) + 0xb7 (size before relaxing) + *fill* 0x000000003f40d0d3 0x1 + .rodata.ble_gap_log_adv.str1.4 + 0x000000003f40d0d4 0xd6 esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x000000003f40d1aa 0x2 + .rodata.ble_gap_log_update.str1.4 + 0x000000003f40d1ac 0x9a esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x000000003f40d246 0x2 + .rodata.ble_gap_wl_set.str1.4 + 0x000000003f40d248 0x5e esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x000000003f40d2a6 0x2 + .rodata.ble_gap_adv_start.str1.4 + 0x000000003f40d2a8 0x3d esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x000000003f40d2e5 0x3 + .rodata.ble_gap_rx_conn_complete.str1.4 + 0x000000003f40d2e8 0x9d esp-idf/bt/libbt.a(ble_gap.c.obj) + 0xa1 (size before relaxing) + *fill* 0x000000003f40d385 0x3 + .rodata.ble_gap_adv_stop_no_lock.str1.4 + 0x000000003f40d388 0x44 esp-idf/bt/libbt.a(ble_gap.c.obj) + .rodata.ble_gap_conn_cancel_no_lock.str1.4 + 0x000000003f40d3cc 0x44 esp-idf/bt/libbt.a(ble_gap.c.obj) + .rodata.ble_gap_terminate_with_conn.str1.4 + 0x000000003f40d410 0x65 esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x000000003f40d475 0x3 + .rodata.ble_gap_update_params.str1.4 + 0x000000003f40d478 0x32 esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x000000003f40d4aa 0x2 + .rodata.ble_gap_init.str1.4 + 0x000000003f40d4ac 0x4b esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x000000003f40d4f7 0x1 + .rodata.__func__$1 + 0x000000003f40d4f8 0x19 esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x000000003f40d511 0x3 + .rodata.ble_uuid_base + 0x000000003f40d514 0x10 esp-idf/bt/libbt.a(ble_uuid.c.obj) + .rodata.ble_hs_pvcy_set_our_irk.str1.4 + 0x000000003f40d524 0x11 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + *fill* 0x000000003f40d535 0x3 + .rodata.ble_l2cap_append_rx.str1.4 + 0x000000003f40d538 0x43 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x47 (size before relaxing) + *fill* 0x000000003f40d57b 0x1 + .rodata.ble_l2cap_reconfig.str1.4 + 0x000000003f40d57c 0x43 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x4b (size before relaxing) + *fill* 0x000000003f40d5bf 0x1 + .rodata.ble_l2cap_rx.str1.4 + 0x000000003f40d5c0 0x43 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + *fill* 0x000000003f40d603 0x1 + .rodata.ble_l2cap_init.str1.4 + 0x000000003f40d604 0x14 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .rodata.__func__$0 + 0x000000003f40d618 0x14 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .rodata.ble_hs_misc_restore_one_irk.str1.4 + 0x000000003f40d62c 0x3a esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + 0x42 (size before relaxing) + *fill* 0x000000003f40d666 0x2 + .rodata.ble_hs_misc_null_addr + 0x000000003f40d668 0x6 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + 0x000000003f40d668 ble_hs_misc_null_addr + *fill* 0x000000003f40d66e 0x2 + .rodata.ble_gatts_start.str1.4 + 0x000000003f40d670 0x17 esp-idf/bt/libbt.a(ble_gatts.c.obj) + *fill* 0x000000003f40d687 0x1 + .rodata 0x000000003f40d688 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .rodata.ble_hs_hci_init.str1.4 + 0x000000003f40d68c 0x10 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .rodata.ble_hs_hci_util_read_adv_tx_pwr.str1.4 + 0x000000003f40d69c 0x37 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + 0x3f (size before relaxing) + *fill* 0x000000003f40d6d3 0x1 + .rodata.ble_rpa_find_rl_from_peer_records.str1.4 + 0x000000003f40d6d4 0x46 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x4e (size before relaxing) + *fill* 0x000000003f40d71a 0x2 + .rodata.esp_nimble_init.str1.4 + 0x000000003f40d71c 0x36 esp-idf/bt/libbt.a(nimble_port.c.obj) + *fill* 0x000000003f40d752 0x2 + .rodata.esp_nimble_deinit.str1.4 + 0x000000003f40d754 0x2b esp-idf/bt/libbt.a(nimble_port.c.obj) + *fill* 0x000000003f40d77f 0x1 + .rodata.nimble_port_init.str1.4 + 0x000000003f40d780 0x95 esp-idf/bt/libbt.a(nimble_port.c.obj) + *fill* 0x000000003f40d815 0x3 + .rodata 0x000000003f40d818 0x28 esp-idf/bt/libbt.a(nimble_port.c.obj) + .rodata.nimble_port_deinit.str1.4 + 0x000000003f40d840 0x9a esp-idf/bt/libbt.a(nimble_port.c.obj) + *fill* 0x000000003f40d8da 0x2 + .rodata.nimble_port_stop.str1.4 + 0x000000003f40d8dc 0x3a esp-idf/bt/libbt.a(nimble_port.c.obj) + *fill* 0x000000003f40d916 0x2 + .rodata.esp_nimble_enable.str1.4 + 0x000000003f40d918 0xc esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + .rodata._os_mbuf_copypkthdr.str1.4 + 0x000000003f40d924 0x5c esp-idf/bt/libbt.a(os_mbuf.c.obj) + .rodata.__func__$0 + 0x000000003f40d980 0x14 esp-idf/bt/libbt.a(os_mbuf.c.obj) + .rodata.os_msys_init_once.str1.4 + 0x000000003f40d994 0x49 esp-idf/bt/libbt.a(os_msys_init.c.obj) + 0x51 (size before relaxing) + *fill* 0x000000003f40d9dd 0x3 + .rodata.os_msys_init.str1.4 + 0x000000003f40d9e0 0xf esp-idf/bt/libbt.a(os_msys_init.c.obj) + *fill* 0x000000003f40d9ef 0x1 + .rodata.__func__$0 + 0x000000003f40d9f0 0x12 esp-idf/bt/libbt.a(os_msys_init.c.obj) + *fill* 0x000000003f40da02 0x2 + .rodata.str1.4 + 0x000000003f40da04 0x16e esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x17a (size before relaxing) + *fill* 0x000000003f40db72 0x2 + .rodata.npl_freertos_funcs_init.str1.4 + 0x000000003f40db74 0x16 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + *fill* 0x000000003f40db8a 0x2 + .rodata.npl_freertos_mempool_init.str1.4 + 0x000000003f40db8c 0x78 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x80 (size before relaxing) + .rodata.__func__$0 + 0x000000003f40dc04 0x1a esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + *fill* 0x000000003f40dc1e 0x2 + .rodata.__func__$1 + 0x000000003f40dc20 0x18 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .rodata.__func__$2 + 0x000000003f40dc38 0x1c esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .rodata.__func__$3 + 0x000000003f40dc54 0x19 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + *fill* 0x000000003f40dc6d 0x3 + .rodata.__func__$4 + 0x000000003f40dc70 0x1a esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + *fill* 0x000000003f40dc8a 0x2 + .rodata.__func__$5 + 0x000000003f40dc8c 0x19 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + *fill* 0x000000003f40dca5 0x3 + .rodata.__func__$6 + 0x000000003f40dca8 0x16 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + *fill* 0x000000003f40dcbe 0x2 + .rodata.__func__$7 + 0x000000003f40dcc0 0x18 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .rodata.__func__$8 + 0x000000003f40dcd8 0x16 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + *fill* 0x000000003f40dcee 0x2 + .rodata.__func__$9 + 0x000000003f40dcf0 0x1b esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + *fill* 0x000000003f40dd0b 0x1 + .rodata.__func__$10 + 0x000000003f40dd0c 0x18 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .rodata.__func__$11 + 0x000000003f40dd24 0x1a esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + *fill* 0x000000003f40dd3e 0x2 + .rodata.__func__$12 + 0x000000003f40dd40 0x18 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .rodata.__func__$13 + 0x000000003f40dd58 0x1b esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + *fill* 0x000000003f40dd73 0x1 + .rodata.__func__$14 + 0x000000003f40dd74 0x18 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .rodata.__func__$15 + 0x000000003f40dd8c 0x18 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .rodata.__func__$16 + 0x000000003f40dda4 0x1f esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + *fill* 0x000000003f40ddc3 0x1 + .rodata.__func__$17 + 0x000000003f40ddc4 0x1b esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + *fill* 0x000000003f40dddf 0x1 + .rodata.__func__$18 + 0x000000003f40dde0 0x19 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + *fill* 0x000000003f40ddf9 0x3 + .rodata.__func__$19 + 0x000000003f40ddfc 0x19 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + *fill* 0x000000003f40de15 0x3 + .rodata.__func__$20 + 0x000000003f40de18 0x1a esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + *fill* 0x000000003f40de32 0x2 + .rodata.__func__$21 + 0x000000003f40de34 0x18 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .rodata.npl_funcs_ro + 0x000000003f40de4c 0xb0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x000000003f40de4c npl_funcs_ro + .rodata.ble_hci_rx_acl.str1.4 + 0x000000003f40defc 0x3d esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + 0x45 (size before relaxing) + *fill* 0x000000003f40df39 0x3 + .rodata.ble_hci_trans_hs_cmd_tx.str1.4 + 0x000000003f40df3c 0x49 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + *fill* 0x000000003f40df85 0x3 + .rodata.host_rcv_pkt.str1.4 + 0x000000003f40df88 0xf2 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + 0x100 (size before relaxing) + *fill* 0x000000003f40e07a 0x2 + .rodata.__func__$0 + 0x000000003f40e07c 0xf esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + *fill* 0x000000003f40e08b 0x1 + .rodata.__func__$1 + 0x000000003f40e08c 0xd esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + *fill* 0x000000003f40e099 0x3 + .rodata.__func__$2 + 0x000000003f40e09c 0x18 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .rodata.vhci_host_cb + 0x000000003f40e0b4 0x8 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .rodata.ble_transport_free.str1.4 + 0x000000003f40e0bc 0x48 esp-idf/bt/libbt.a(transport.c.obj) + 0x4c (size before relaxing) + .rodata.ble_transport_init.str1.4 + 0x000000003f40e104 0x53 esp-idf/bt/libbt.a(transport.c.obj) + 0x5b (size before relaxing) + *fill* 0x000000003f40e157 0x1 + .rodata.__func__$0 + 0x000000003f40e158 0x15 esp-idf/bt/libbt.a(transport.c.obj) + *fill* 0x000000003f40e16d 0x3 + .rodata.__func__$1 + 0x000000003f40e170 0x13 esp-idf/bt/libbt.a(transport.c.obj) + *fill* 0x000000003f40e183 0x1 + .rodata.__func__$2 + 0x000000003f40e184 0x13 esp-idf/bt/libbt.a(transport.c.obj) + *fill* 0x000000003f40e197 0x1 + .rodata.ble_hs_conn_addrs.str1.4 + 0x000000003f40e198 0x45 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x4d (size before relaxing) + *fill* 0x000000003f40e1dd 0x3 + .rodata.ble_hs_conn_init.str1.4 + 0x000000003f40e1e0 0x11 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + *fill* 0x000000003f40e1f1 0x3 + .rodata.__func__$0 + 0x000000003f40e1f4 0x12 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + *fill* 0x000000003f40e206 0x2 + .rodata.ble_hs_conn_null_addr + 0x000000003f40e208 0x6 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + *fill* 0x000000003f40e20e 0x2 + .rodata.ble_sm_pair_fail_tx.str1.4 + 0x000000003f40e210 0x3d esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x45 (size before relaxing) + *fill* 0x000000003f40e24d 0x3 + .rodata.ble_sm_init.str1.4 + 0x000000003f40e250 0x11 esp-idf/bt/libbt.a(ble_sm.c.obj) + *fill* 0x000000003f40e261 0x3 + .rodata.ble_sm_state_dispatch + 0x000000003f40e264 0x2c esp-idf/bt/libbt.a(ble_sm.c.obj) + .rodata.ble_sm_dispatch + 0x000000003f40e290 0x3c esp-idf/bt/libbt.a(ble_sm.c.obj) + .rodata.ble_att_svr_start.str1.4 + 0x000000003f40e2cc 0x17 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + *fill* 0x000000003f40e2e3 0x1 + .rodata.ble_att_svr_init.str1.4 + 0x000000003f40e2e4 0x1c esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .rodata.ble_sm_alg_f5.str1.4 + 0x000000003f40e300 0x14 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x1c (size before relaxing) + .rodata 0x000000003f40e314 0x35 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + *fill* 0x000000003f40e349 0x3 + .rodata.ble_sm_alg_f6.str1.4 + 0x000000003f40e34c 0x17 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x20 (size before relaxing) + .rodata.ble_sm_alg_g2.str1.4 + 0x000000003f40e363 0x17 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0xe (size before relaxing) + *fill* 0x000000003f40e363 0x1 + .rodata.salt$0 + 0x000000003f40e364 0x10 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + .rodata.ble_sm_alg_dbg_priv_key + 0x000000003f40e374 0x20 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + .rodata.ble_hs_stop_terminate_conn.str1.4 + 0x000000003f40e394 0x4c esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + 0x54 (size before relaxing) + .rodata.ble_hs_stop_begin.str1.4 + 0x000000003f40e3e0 0x45 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + 0x49 (size before relaxing) + *fill* 0x000000003f40e425 0x3 + .rodata.ble_hs_stop_terminate_timeout_cb.str1.4 + 0x000000003f40e428 0x55 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + *fill* 0x000000003f40e47d 0x3 + .rodata.__func__$0 + 0x000000003f40e480 0x12 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + *fill* 0x000000003f40e492 0x2 + .rodata.ble_sm_lgcy_resp_ioa + 0x000000003f40e494 0x19 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + *fill* 0x000000003f40e4ad 0x3 + .rodata.ble_sm_lgcy_init_ioa + 0x000000003f40e4b0 0x19 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + *fill* 0x000000003f40e4c9 0x3 + .rodata.ble_sm_sc_resp_ioa + 0x000000003f40e4cc 0x19 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + *fill* 0x000000003f40e4e5 0x3 + .rodata.ble_sm_sc_init_ioa + 0x000000003f40e4e8 0x19 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + .rodata.str1.1 + 0x000000003f40e501 0x1fa /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + 0x1fc (size before relaxing) + .rodata.str1.1 + 0x000000003f40e6fb 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + 0x27 (size before relaxing) + .rodata 0x000000003f40e720 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg.o) + .rodata 0x000000003f40e730 0x40 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg_task.o) + 0x000000003f40e730 dbg_default_handler_2 + .rodata.str1.1 + 0x000000003f40e770 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) + 0x7 (size before relaxing) + .rodata.str1.1 + 0x000000003f40e775 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_msg.o) + 0x2d (size before relaxing) + *fill* 0x000000003f40e796 0x2 + .rodata 0x000000003f40e798 0x64 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_msg.o) + 0x000000003f40e798 hci_evt_le_desc_tab_esp + 0x000000003f40e7a0 bt_esp_vs_evt_desc + 0x000000003f40e7a8 hci_cmd_desc_tab_vs_esp + 0x000000003f40e7f0 hci_cmd_desc_tab_stat_par_esp + .rodata.str1.1 + 0x000000003f40e7fc 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) + 0x6 (size before relaxing) + .rodata.str1.1 + 0x000000003f40e7fc 0x9 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) + 0xb (size before relaxing) + .rodata.str1.1 + 0x000000003f40e805 0x45 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + 0x47 (size before relaxing) + .rodata.str1.1 + 0x000000003f40e84a 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) + 0xc (size before relaxing) + .rodata.str1.1 + 0x000000003f40e854 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_lmppdu.o) + 0x1b (size before relaxing) + .rodata.str1.1 + 0x000000003f40e86b 0x76 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) + .rodata.str1.1 + 0x000000003f40e8e1 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sco.o) + .rodata.str1.1 + 0x000000003f40e91d 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sniff.o) + 0xd (size before relaxing) + .rodata.str1.1 + 0x000000003f40e928 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) + 0x4a (size before relaxing) + .rodata 0x000000003f40e970 0x298 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) + .rodata.str1.1 + 0x000000003f40ec08 0x339 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + 0x33b (size before relaxing) + .rodata.str1.1 + 0x000000003f40ef41 0x1bb /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + 0x1bd (size before relaxing) + .rodata.str1.1 + 0x000000003f40f0fc 0x9 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_inq.o) + 0xb0 (size before relaxing) + .rodata.str1.1 + 0x000000003f40f105 0x84 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld.o) + 0x89 (size before relaxing) + .rodata.str1.1 + 0x000000003f40f189 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sched.o) + .rodata 0x000000003f40f194 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) + .rodata.str1.1 + 0x000000003f40f19b 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) + .rodata.str1.1 + 0x000000003f40f1a1 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_util.o) + .rodata.str1.1 + 0x000000003f40f1ac 0x11c /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + 0x11e (size before relaxing) + .rodata.str1.1 + 0x000000003f40f2c8 0x13e /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + 0x1c4 (size before relaxing) + .rodata.str1.1 + 0x000000003f40f406 0x8a /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + .rodata 0x000000003f40f490 0x2d /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + .rodata.str1.1 + 0x000000003f40f4bd 0x8f /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_hci.o) + 0x91 (size before relaxing) + .rodata.str1.1 + 0x000000003f40f54c 0x12d /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + .rodata.str1.1 + 0x000000003f40f679 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) + .rodata.str1.1 + 0x000000003f40f684 0x3d /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) + 0x42 (size before relaxing) + .rodata.str1.1 + 0x000000003f40f6c1 0xc9 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + 0xcb (size before relaxing) + .rodata.str1.1 + 0x000000003f40f78a 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) + .rodata.str1.1 + 0x000000003f40f79d 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(osi.o) + *fill* 0x000000003f40f7b6 0x2 + .rodata 0x000000003f40f7b8 0x6c /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) + 0x000000003f40f7b8 r_plf_funcs_ro + .rodata.str1.1 + 0x000000003f40f824 0x4d /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + .rodata 0x000000003f40f871 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + .rodata.str1.1 + 0x000000003f40f880 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) + .rodata.str1.1 + 0x000000003f40f888 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) + .rodata.str1.1 + 0x000000003f40f8a2 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + .rodata 0x000000003f40f8d0 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + .rodata.str1.1 + 0x000000003f40f8dc 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + .rodata.str1.1 + 0x000000003f40f8ef 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + *fill* 0x000000003f40f91a 0x2 + .rodata 0x000000003f40f91c 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_sp.o) + .rodata 0x000000003f40f938 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ecc_p256.o) + 0x000000003f40f938 coef_B + .rodata.str1.1 + 0x000000003f40f964 0x3d /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(intc.o) + *fill* 0x000000003f40f9a1 0x3 + .rodata.sizeof_elt_in_repeated_array.str1.4 + 0x000000003f40f9a4 0x3f esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x43 (size before relaxing) + *fill* 0x000000003f40f9e3 0x1 + .rodata.protobuf_c_message_get_packed_size.str1.4 + 0x000000003f40f9e4 0x47 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x000000003f40fa2b 0x1 + .rodata.repeated_field_pack.str1.4 + 0x000000003f40fa2c 0x2a esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x000000003f40fa56 0x2 + .rodata.protobuf_c_message_unpack.str1.4 + 0x000000003f40fa58 0x4f esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x000000003f40faa7 0x1 + .rodata.__func__$2 + 0x000000003f40faa8 0x21 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x000000003f40fac9 0x3 + .rodata.__func__$3 + 0x000000003f40facc 0x1d esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x000000003f40fae9 0x3 + .rodata.__func__$4 + 0x000000003f40faec 0xd esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x000000003f40faf9 0x3 + .rodata.__func__$5 + 0x000000003f40fafc 0x1a esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x000000003f40fb16 0x2 + .rodata.__func__$11 + 0x000000003f40fb18 0x1d esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x000000003f40fb35 0x3 + .rodata.__func__$12 + 0x000000003f40fb38 0x14 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .rodata.__func__$13 + 0x000000003f40fb4c 0x14 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .rodata.__func__$14 + 0x000000003f40fb60 0x18 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .rodata.__func__$15 + 0x000000003f40fb78 0x1f esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x000000003f40fb97 0x1 + .rodata.__func__$16 + 0x000000003f40fb98 0x23 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x000000003f40fbbb 0x1 + .rodata.protobuf_c_empty_string + 0x000000003f40fbbc 0x1 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x000000003f40fbbc protobuf_c_empty_string + *fill* 0x000000003f40fbbd 0x3 + .rodata.print_string_ptr.str1.4 + 0x000000003f40fbc0 0xa esp-idf/json/libjson.a(cJSON.c.obj) + *fill* 0x000000003f40fbca 0x2 + .rodata.print_number.str1.4 + 0x000000003f40fbcc 0x1b esp-idf/json/libjson.a(cJSON.c.obj) + *fill* 0x000000003f40fbe7 0x1 + .rodata.print_value.str1.4 + 0x000000003f40fbe8 0xd esp-idf/json/libjson.a(cJSON.c.obj) + *fill* 0x000000003f40fbf5 0x3 + .rodata.esp_qrcode_print_console.str1.4 + 0x000000003f40fbf8 0x3 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + *fill* 0x000000003f40fbfb 0x1 + .rodata.esp_qrcode_generate.str1.4 + 0x000000003f40fbfc 0x77 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + *fill* 0x000000003f40fc73 0x1 + .rodata.str1.4 + 0x000000003f40fc74 0x77 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + 0x7b (size before relaxing) + *fill* 0x000000003f40fceb 0x1 + .rodata.lt 0x000000003f40fcec 0x40 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + .rodata.calcSegmentBitLength.str1.4 + 0x000000003f40fd2c 0x68 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x70 (size before relaxing) + .rodata.numCharCountBits.str1.4 + 0x000000003f40fd94 0x45 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f40fdd9 0x3 + .rodata.getTotalBits.str1.4 + 0x000000003f40fddc 0xaf esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f40fe8b 0x1 + .rodata.appendBitsToBuffer.str1.4 + 0x000000003f40fe8c 0x44 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .rodata.getNumRawDataModules.str1.4 + 0x000000003f40fed0 0x61 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f40ff31 0x3 + .rodata.getNumDataCodewords.str1.4 + 0x000000003f40ff34 0x10 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .rodata.getModule.str1.4 + 0x000000003f40ff44 0x4e esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f40ff92 0x2 + .rodata.finderPenaltyCountPatterns.str1.4 + 0x000000003f40ff94 0x10 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .rodata.reedSolomonComputeDivisor.str1.4 + 0x000000003f40ffa4 0x3b esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f40ffdf 0x1 + .rodata.addEccAndInterleave.str1.4 + 0x000000003f40ffe0 0x66 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f410046 0x2 + .rodata.qrcodegen_getSize.str1.4 + 0x000000003f410048 0x69 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f4100b1 0x3 + .rodata.drawCodewords.str1.4 + 0x000000003f4100b4 0x11 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f4100c5 0x3 + .rodata.drawWhiteFunctionModules.str1.4 + 0x000000003f4100c8 0x10 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .rodata.applyMask.str1.4 + 0x000000003f4100d8 0x21 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f4100f9 0x3 + .rodata.drawFormatBits.str1.4 + 0x000000003f4100fc 0x10 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .rodata.qrcodegen_encodeSegmentsAdvanced.str1.4 + 0x000000003f41010c 0x104 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .rodata.qrcodegen_isAlphanumeric.str1.4 + 0x000000003f410210 0x3e esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f41024e 0x2 + .rodata.qrcodegen_calcSegmentBufferSize.str1.4 + 0x000000003f410250 0x1f esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f41026f 0x1 + .rodata.qrcodegen_makeNumeric.str1.4 + 0x000000003f410270 0x53 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f4102c3 0x1 + .rodata.qrcodegen_makeAlphanumeric.str1.4 + 0x000000003f4102c4 0xd esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f4102d1 0x3 + .rodata.__func__$1 + 0x000000003f4102d4 0x1b esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f4102ef 0x1 + .rodata.__func__$2 + 0x000000003f4102f0 0x16 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f410306 0x2 + .rodata.__func__$4 + 0x000000003f410308 0x20 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .rodata.__func__$5 + 0x000000003f410328 0x14 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .rodata.__func__$6 + 0x000000003f41033c 0x19 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f410355 0x3 + .rodata.__func__$7 + 0x000000003f410358 0x14 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .rodata.__func__$8 + 0x000000003f41036c 0x12 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f41037e 0x2 + .rodata.table$9 + 0x000000003f410380 0x10 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .rodata.__func__$10 + 0x000000003f410390 0xf esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f41039f 0x1 + .rodata.__func__$11 + 0x000000003f4103a0 0xa esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f4103aa 0x2 + .rodata.__func__$12 + 0x000000003f4103ac 0x1b esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f4103c7 0x1 + .rodata.__func__$13 + 0x000000003f4103c8 0x19 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f4103e1 0x3 + .rodata.__func__$14 + 0x000000003f4103e4 0xa esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f4103ee 0x2 + .rodata.__func__$15 + 0x000000003f4103f0 0xa esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f4103fa 0x2 + .rodata.__func__$16 + 0x000000003f4103fc 0xe esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f41040a 0x2 + .rodata.__func__$17 + 0x000000003f41040c 0x15 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f410421 0x3 + .rodata.__func__$18 + 0x000000003f410424 0x1c esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .rodata.__func__$19 + 0x000000003f410440 0x1a esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f41045a 0x2 + .rodata.__func__$20 + 0x000000003f41045c 0x14 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .rodata.__func__$21 + 0x000000003f410470 0x13 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f410483 0x1 + .rodata.__func__$22 + 0x000000003f410484 0x14 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .rodata.temp$23 + 0x000000003f410498 0xc esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .rodata.temp$24 + 0x000000003f4104a4 0xc esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .rodata.temp$25 + 0x000000003f4104b0 0xc esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .rodata.temp$26 + 0x000000003f4104bc 0xc esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .rodata.__func__$27 + 0x000000003f4104c8 0x11 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f4104d9 0x3 + .rodata.__func__$28 + 0x000000003f4104dc 0xd esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f4104e9 0x3 + .rodata.__func__$29 + 0x000000003f4104ec 0x21 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f41050d 0x3 + .rodata.__func__$30 + 0x000000003f410510 0x15 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000003f410525 0x3 + .rodata.NUM_ERROR_CORRECTION_BLOCKS + 0x000000003f410528 0xa4 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .rodata.ECC_CODEWORDS_PER_BLOCK + 0x000000003f4105cc 0xa4 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .rodata.str1.4 + 0x000000003f410670 0x23 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + *fill* 0x000000003f410693 0xd + .rodata 0x000000003f4106a0 0x24 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x000000003f4106a0 _xt_coproc_sa_offset + .rodata.set_cnt_in_reg.str1.4 + 0x000000003f4106c4 0x63 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x000000003f410727 0x1 + .rodata.write_reg.str1.4 + 0x000000003f410728 0x10c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_process.str1.4 + 0x000000003f410834 0x69 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x000000003f41089d 0x3 + .rodata.esp_efuse_utility_read_reg.str1.4 + 0x000000003f4108a0 0xd0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$1 + 0x000000003f410970 0x1b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x000000003f41098b 0x1 + .rodata.__func__$7 + 0x000000003f41098c 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x000000003f4109a6 0x2 + .rodata.MAC_VERSION + 0x000000003f4109a8 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_CUSTOM + 0x000000003f4109ac 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CUSTOM_MAC_CRC + 0x000000003f4109b0 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_CRC + 0x000000003f4109b4 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC 0x000000003f4109b8 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.range_read_addr_blocks + 0x000000003f4109d0 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x000000003f4109d0 range_read_addr_blocks + .rodata.uart_reenable_intr_mask.str1.4 + 0x000000003f4109f0 0x37 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f410a27 0x1 + .rodata.uart_set_word_length.str1.4 + 0x000000003f410a28 0x2f esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f410a57 0x1 + .rodata.uart_set_stop_bits.str1.4 + 0x000000003f410a58 0x2f esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f410a87 0x1 + .rodata.uart_set_baudrate.str1.4 + 0x000000003f410a88 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_pattern_pop_pos.str1.4 + 0x000000003f410ab8 0x32 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f410aea 0x2 + .rodata.uart_wait_tx_done.str1.4 + 0x000000003f410aec 0x90 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_flush_input.str1.4 + 0x000000003f410b7c 0x2e esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f410baa 0x2 + .rodata.__FUNCTION__$37 + 0x000000003f410bac 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f410bbd 0x3 + .rodata.__FUNCTION__$35 + 0x000000003f410bc0 0x1b esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f410bdb 0x1 + .rodata.__FUNCTION__$34 + 0x000000003f410bdc 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__func__$29 + 0x000000003f410bf4 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f410c06 0x2 + .rodata.__FUNCTION__$28 + 0x000000003f410c08 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f410c1a 0x2 + .rodata.__FUNCTION__$7 + 0x000000003f410c1c 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f410c2e 0x2 + .rodata.__FUNCTION__$6 + 0x000000003f410c30 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f410c42 0x2 + .rodata.__FUNCTION__$5 + 0x000000003f410c44 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$4 + 0x000000003f410c54 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$3 + 0x000000003f410c64 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f410c77 0x1 + .rodata.__FUNCTION__$2 + 0x000000003f410c78 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f410c8b 0x1 + .rodata.__FUNCTION__$1 + 0x000000003f410c8c 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f410ca1 0x3 + .rodata.__FUNCTION__$0 + 0x000000003f410ca4 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f410cb9 0x3 + .rodata.str1.4 + 0x000000003f410cbc 0x7f esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + *fill* 0x000000003f410d3b 0x1 + .rodata.__func__$1 + 0x000000003f410d3c 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.s_reserve_irom_region.str1.4 + 0x000000003f410d64 0x141 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x149 (size before relaxing) + *fill* 0x000000003f410ea5 0x3 + .rodata.s_reserve_drom_region.str1.4 + 0x000000003f410ea8 0x8b esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x000000003f410f33 0x1 + .rodata.esp_mmu_map_init.str1.4 + 0x000000003f410f34 0x93 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x000000003f410fc7 0x1 + .rodata.esp_mmu_map_get_max_consecutive_free_block_size.str1.4 + 0x000000003f410fc8 0x5d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x000000003f411025 0x3 + .rodata.esp_mmu_map_reserve_block_with_caps.str1.4 + 0x000000003f411028 0x2c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map.str1.4 + 0x000000003f411054 0x17e esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x000000003f4111d2 0x2 + .rodata.esp_mmu_unmap.str1.4 + 0x000000003f4111d4 0xa3 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x000000003f411277 0x1 + .rodata.esp_mmu_vaddr_to_paddr.str1.4 + 0x000000003f411278 0x7b esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x000000003f4112f3 0x1 + .rodata.__FUNCTION__$1 + 0x000000003f4112f4 0x17 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x000000003f41130b 0x1 + .rodata.__FUNCTION__$2 + 0x000000003f41130c 0xe esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x000000003f41131a 0x2 + .rodata.__func__$4 + 0x000000003f41131c 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$5 + 0x000000003f411328 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__func__$8 + 0x000000003f411334 0x16 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x000000003f41134a 0x2 + .rodata.__func__$9 + 0x000000003f41134c 0x14 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__func__$10 + 0x000000003f411360 0x16 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x000000003f411376 0x2 + .rodata.__func__$11 + 0x000000003f411378 0x11 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x000000003f411389 0x3 + .rodata.str1.4 + 0x000000003f41138c 0x5 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x000000003f411391 0x3 + .rodata.g_mmu_mem_regions + 0x000000003f411394 0x48 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + 0x000000003f411394 g_mmu_mem_regions + .rodata.spi_flash_init_lock.str1.4 + 0x000000003f4113dc 0x45 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003f411421 0x3 + .rodata.str1.4 + 0x000000003f411424 0x163 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x195 (size before relaxing) + *fill* 0x000000003f411587 0x1 + .rodata.__func__$0 + 0x000000003f411588 0x1c esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.__func__$1 + 0x000000003f4115a4 0x31 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003f4115d5 0x3 + .rodata.__func__$2 + 0x000000003f4115d8 0x32 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003f41160a 0x2 + .rodata.__func__$3 + 0x000000003f41160c 0x14 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.s_merge_contiguous_pages.str1.4 + 0x000000003f411620 0x44 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.spi_flash_munmap.str1.4 + 0x000000003f411664 0x32 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x000000003f411696 0x2 + .rodata.__func__$1 + 0x000000003f411698 0x11 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x000000003f4116a9 0x3 + .rodata.esp_mspi_get_io.str1.4 + 0x000000003f4116ac 0x3f esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + *fill* 0x000000003f4116eb 0x1 + .rodata.__func__$0 + 0x000000003f4116ec 0x10 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .rodata.s_mspi_io_num_default + 0x000000003f4116fc 0x6 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + *fill* 0x000000003f411702 0x2 + .rodata.str1.4 + 0x000000003f411704 0x241 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003f411945 0x3 + .rodata.esp_flash_read_unique_chip_id.str1.4 + 0x000000003f411948 0x92 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003f4119da 0x2 + .rodata.__func__$0 + 0x000000003f4119dc 0x1a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003f4119f6 0x2 + .rodata.__func__$1 + 0x000000003f4119f8 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.__func__$2 + 0x000000003f411a08 0x17 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003f411a1f 0x1 + .rodata.io_mode_str + 0x000000003f411a20 0xb4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.esp_flash_init_default_chip.str1.4 + 0x000000003f411ad4 0xfc esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.TAG 0x000000003f411bd0 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + *fill* 0x000000003f411bda 0x2 + .rodata.str1.4 + 0x000000003f411bdc 0x47 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x000000003f411c23 0x1 + .rodata.__func__$0 + 0x000000003f411c24 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x000000003f411c3d 0x3 + .rodata.str1.4 + 0x000000003f411c40 0x48 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .rodata.esp_crosscore_int_init.str1.4 + 0x000000003f411c88 0x2f esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + *fill* 0x000000003f411cb7 0x1 + .rodata.__func__$0 + 0x000000003f411cb8 0x17 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + *fill* 0x000000003f411ccf 0x1 + .rodata.__func__$1 + 0x000000003f411cd0 0x17 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + *fill* 0x000000003f411ce7 0x1 + .rodata.str1.4 + 0x000000003f411ce8 0x42 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + *fill* 0x000000003f411d2a 0x2 + .rodata.esp_ipc_init.str1.4 + 0x000000003f411d2c 0x5 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x15 (size before relaxing) + *fill* 0x000000003f411d31 0x3 + .rodata.__func__$0 + 0x000000003f411d34 0x9 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + *fill* 0x000000003f411d3d 0x3 + .rodata.__func__$1 + 0x000000003f411d40 0xd esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + *fill* 0x000000003f411d4d 0x3 + .rodata.add_entry.str1.4 + 0x000000003f411d50 0xc7 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003f411e17 0x1 + .rodata.delete_entry.str1.4 + 0x000000003f411e18 0x5f esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003f411e77 0x1 + .rodata.task_wdt_timeout_abort_xtensa.str1.4 + 0x000000003f411e78 0xd3 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003f411f4b 0x1 + .rodata.task_wdt_isr.str1.4 + 0x000000003f411f4c 0x107 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003f412053 0x1 + .rodata.esp_task_wdt_add.str1.4 + 0x000000003f412054 0x3b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003f41208f 0x1 + .rodata.subscribe_idle.str1.4 + 0x000000003f412090 0xa8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_init.str1.4 + 0x000000003f412138 0xa4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$5 + 0x000000003f4121dc 0x13 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003f4121ef 0x1 + .rodata.__FUNCTION__$7 + 0x000000003f4121f0 0xa esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003f4121fa 0x2 + .rodata.__FUNCTION__$8 + 0x000000003f4121fc 0x11 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003f41220d 0x3 + .rodata.__func__$12 + 0x000000003f412210 0xf esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003f41221f 0x1 + .rodata.__func__$13 + 0x000000003f412220 0xd esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003f41222d 0x3 + .rodata.__FUNCTION__$14 + 0x000000003f412230 0x12 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003f412242 0x2 + .rodata.__func__$15 + 0x000000003f412244 0x1e esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003f412262 0x2 + .rodata.get_flash_clock_divider.str1.4 + 0x000000003f412264 0x93 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + *fill* 0x000000003f4122f7 0x1 + .rodata.str1.4 + 0x000000003f4122f8 0x2b9 esp-idf/soc/libsoc.a(interrupts.c.obj) + 0x2cd (size before relaxing) + *fill* 0x000000003f4125b1 0x3 + .rodata.esp_isr_names + 0x000000003f4125b4 0x114 esp-idf/soc/libsoc.a(interrupts.c.obj) + 0x000000003f4125b4 esp_isr_names + .rodata.rtc_io_desc + 0x000000003f4126c8 0x3f0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + 0x000000003f4126c8 rtc_io_desc + .rodata.rtc_io_num_map + 0x000000003f412ab8 0xa0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + 0x000000003f412ab8 rtc_io_num_map + .rodata 0x000000003f412b58 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .rodata.esp_fill_random.str1.4 + 0x000000003f412b6c 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .rodata.__func__$0 + 0x000000003f412ba4 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .rodata.get_idx.str1.4 + 0x000000003f412bb4 0x49 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + *fill* 0x000000003f412bfd 0x3 + .rodata.generate_mac.str1.4 + 0x000000003f412c00 0x2d esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + *fill* 0x000000003f412c2d 0x3 + .rodata.get_efuse_mac_custom.str1.4 + 0x000000003f412c30 0xb5 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + *fill* 0x000000003f412ce5 0x3 + .rodata.get_efuse_mac_get_default.str1.4 + 0x000000003f412ce8 0xb1 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + *fill* 0x000000003f412d99 0x3 + .rodata.get_mac_addr_from_mac_table.str1.4 + 0x000000003f412d9c 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + *fill* 0x000000003f412de2 0x2 + .rodata.esp_iface_mac_addr_set.str1.4 + 0x000000003f412de4 0xab esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + *fill* 0x000000003f412e8f 0x1 + .rodata.esp_read_mac.str1.4 + 0x000000003f412e90 0x6d esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + *fill* 0x000000003f412efd 0x3 + .rodata.__func__$0 + 0x000000003f412f00 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + *fill* 0x000000003f412f1a 0x2 + .rodata.esp_clk_tree_src_get_freq_hz.str1.4 + 0x000000003f412f1c 0xbc esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + 0xec (size before relaxing) + .rodata.__FUNCTION__$0 + 0x000000003f412fd8 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + *fill* 0x000000003f412ff5 0x3 + .rodata.clk_tree_rtc_slow_calibration.str1.4 + 0x000000003f412ff8 0x4f esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .rodata.esp_clk_tree_lp_fast_get_freq_hz.str1.4 + 0x000000003f413047 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + *fill* 0x000000003f413047 0x1 + .rodata.__func__$0 + 0x000000003f413048 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + *fill* 0x000000003f413069 0x3 + .rodata.__func__$1 + 0x000000003f41306c 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + *fill* 0x000000003f41308a 0x2 + .rodata.xEventGroupCreateStatic.str1.4 + 0x000000003f41308c 0x70 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0xab (size before relaxing) + .rodata.xEventGroupWaitBits.str1.4 + 0x000000003f4130fc 0x49 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x9f (size before relaxing) + *fill* 0x000000003f413145 0x3 + .rodata.xEventGroupClearBits.str1.4 + 0x000000003f413148 0x26 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x000000003f41316e 0x2 + .rodata.xEventGroupSetBits.str1.4 + 0x000000003f413170 0x24 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.vEventGroupDelete.str1.4 + 0x000000003f413194 0x66 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x000000003f4131fa 0x2 + .rodata.__func__$1 + 0x000000003f4131fc 0x12 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x000000003f41320e 0x2 + .rodata.__func__$2 + 0x000000003f413210 0x13 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x000000003f413223 0x1 + .rodata.__func__$3 + 0x000000003f413224 0x15 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x000000003f413239 0x3 + .rodata.__func__$4 + 0x000000003f41323c 0x14 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__func__$6 + 0x000000003f413250 0x14 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.esp_unknown_msg + 0x000000003f413264 0x6 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + *fill* 0x000000003f41326a 0x2 + .rodata.str1.4 + 0x000000003f41326c 0x178a esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + *fill* 0x000000003f4149f6 0x2 + .rodata.esp_err_msg_table + 0x000000003f4149f8 0x6a8 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.ets_timer_setfn.str1.4 + 0x000000003f4150a0 0x89 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x000000003f415129 0x3 + .rodata.str1.4 + 0x000000003f41512c 0xb9 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x000000003f4151e5 0x3 + .rodata.__func__$2 + 0x000000003f4151e8 0xe esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x000000003f4151f6 0x2 + .rodata.__func__$1 + 0x000000003f4151f8 0x11 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x000000003f415209 0x3 + .rodata.__func__$0 + 0x000000003f41520c 0x10 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .rodata.esp_event_loop_create_default.str1.4 + 0x000000003f41521c 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .rodata 0x000000003f415224 0x14 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .rodata.handler_instances_add.str1.4 + 0x000000003f415238 0x40 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x48 (size before relaxing) + .rodata.base_node_add_handler.str1.4 + 0x000000003f415278 0x35 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003f4152ad 0x3 + .rodata.loop_node_add_handler.str1.4 + 0x000000003f4152b0 0x3f esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003f4152ef 0x1 + .rodata.esp_event_loop_create.str1.4 + 0x000000003f4152f0 0x138 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x139 (size before relaxing) + .rodata.esp_event_loop_run.str1.4 + 0x000000003f415428 0x33 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003f41545b 0x1 + .rodata.esp_event_loop_run_task.str1.4 + 0x000000003f41545c 0x33 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003f41548f 0x1 + .rodata.esp_event_handler_register_with_internal.str1.4 + 0x000000003f415490 0x9b esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003f41552b 0x1 + .rodata.esp_event_handler_unregister_with_internal.str1.4 + 0x000000003f41552c 0x61 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003f41558d 0x3 + .rodata.__func__$1 + 0x000000003f415590 0x12 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003f4155a2 0x2 + .rodata.__func__$2 + 0x000000003f4155a4 0x2b esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003f4155cf 0x1 + .rodata.__func__$3 + 0x000000003f4155d0 0x29 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003f4155f9 0x3 + .rodata.__func__$5 + 0x000000003f4155fc 0x13 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003f41560f 0x1 + .rodata.nvs_flash_init.str1.4 + 0x000000003f415610 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .rodata._ZTVN3nvs9NVSHandleE + 0x000000003f415614 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x000000003f415614 _ZTVN3nvs9NVSHandleE + .rodata._ZTVN3nvs15NVSHandleSimpleE + 0x000000003f415650 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x000000003f415650 _ZTVN3nvs15NVSHandleSimpleE + .rodata._ZTVN3nvs9PartitionE + 0x000000003f41568c 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x000000003f41568c _ZTVN3nvs9PartitionE + .rodata._ZTVN3nvs12NVSPartitionE + 0x000000003f4156bc 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x000000003f4156bc _ZTVN3nvs12NVSPartitionE + .rodata._ZTVN3nvs19NVSPartitionManagerE + 0x000000003f4156ec 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x000000003f4156ec _ZTVN3nvs19NVSPartitionManagerE + .rodata.load_cal_data_from_nvs_handle.str1.4 + 0x000000003f4156fc 0x13d esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x000000003f415839 0x3 + .rodata.store_cal_data_to_nvs_handle.str1.4 + 0x000000003f41583c 0x10a esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x000000003f415946 0x2 + .rodata.esp_phy_load_cal_data_from_nvs.str1.4 + 0x000000003f415948 0x6b esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x000000003f4159b3 0x1 + .rodata.esp_phy_load_cal_and_init.str1.4 + 0x000000003f4159b4 0x198 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.__func__$8 + 0x000000003f415b4c 0x1a esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x000000003f415b66 0x2 + .rodata.__func__$6 + 0x000000003f415b68 0x1d esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x000000003f415b85 0x3 + .rodata.__func__$4 + 0x000000003f415b88 0x1e esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x000000003f415ba6 0x2 + .rodata.__func__$3 + 0x000000003f415ba8 0x1f esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x000000003f415bc7 0x1 + .rodata.phy_init_data + 0x000000003f415bc8 0x80 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.esp_netif_list_unlock.str1.4 + 0x000000003f415c48 0x3b esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + *fill* 0x000000003f415c83 0x1 + .rodata.esp_netif_remove_from_list.str1.4 + 0x000000003f415c84 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .rodata.esp_netif_next.str1.4 + 0x000000003f415c9c 0x52 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + *fill* 0x000000003f415cee 0x2 + .rodata.__func__$0 + 0x000000003f415cf0 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + *fill* 0x000000003f415d0b 0x1 + .rodata.__func__$1 + 0x000000003f415d0c 0x16 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + *fill* 0x000000003f415d22 0x2 + .rodata.str1.4 + 0x000000003f415d24 0x9 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + *fill* 0x000000003f415d2d 0x3 + .rodata.IP_EVENT + 0x000000003f415d30 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x000000003f415d30 IP_EVENT + .rodata.esp_netif_config_sanity_check.str1.4 + 0x000000003f415d34 0x123 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f415e57 0x1 + .rodata.esp_netif_dhcps_cb.str1.4 + 0x000000003f415e58 0xa0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_internal_nd6_cb.str1.4 + 0x000000003f415ef8 0x45 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f415f3d 0x3 + .rodata.esp_netif_ip_lost_timer.str1.4 + 0x000000003f415f40 0x49 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f415f89 0x3 + .rodata.esp_netif_init_configuration.str1.4 + 0x000000003f415f8c 0x5f esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f415feb 0x1 + .rodata.esp_netif_dhcps_start_api.str1.4 + 0x000000003f415fec 0x36 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f416022 0x2 + .rodata.esp_netif_start_api.str1.4 + 0x000000003f416024 0xcd esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f4160f1 0x3 + .rodata.esp_netif_dhcpc_start_api.str1.4 + 0x000000003f4160f4 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f416125 0x3 + .rodata.esp_netif_init.str1.4 + 0x000000003f416128 0xbd esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f4161e5 0x3 + .rodata.esp_netif_new.str1.4 + 0x000000003f4161e8 0x1be esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f4163a6 0x2 + .rodata.esp_netif_attach.str1.4 + 0x000000003f4163a8 0x4a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f4163f2 0x2 + .rodata.esp_netif_internal_dhcpc_cb.str1.4 + 0x000000003f4163f4 0x43 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f416437 0x1 + .rodata.__func__$3 + 0x000000003f416438 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__func__$4 + 0x000000003f41644c 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f41645a 0x2 + .rodata.g_wifi_default_wpa_crypto_funcs + 0x000000003f41645c 0x74 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x000000003f41645c g_wifi_default_wpa_crypto_funcs + .rodata.esp_wifi_config_info.str1.4 + 0x000000003f4164d0 0x180 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .rodata.s_set_default_wifi_log_level.str1.4 + 0x000000003f416650 0x23 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + *fill* 0x000000003f416673 0x1 + .rodata.esp_wifi_deinit.str1.4 + 0x000000003f416674 0xa1 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + *fill* 0x000000003f416715 0x3 + .rodata.esp_wifi_init.str1.4 + 0x000000003f416718 0xd2 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + *fill* 0x000000003f4167ea 0x2 + .rodata.str1.4 + 0x000000003f4167ec 0xb esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + *fill* 0x000000003f4167f7 0x1 + .rodata.WIFI_EVENT + 0x000000003f4167f8 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x000000003f4167f8 WIFI_EVENT + .rodata.wifi_default_action_sta_got_ip.str1.4 + 0x000000003f4167fc 0x58 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.wifi_start.str1.4 + 0x000000003f416854 0xbb esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x000000003f41690f 0x1 + .rodata.create_and_attach.str1.4 + 0x000000003f416910 0x3f esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x000000003f41694f 0x1 + .rodata.esp_netif_create_default_wifi_ap.str1.4 + 0x000000003f416950 0xa4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0xac (size before relaxing) + .rodata.esp_netif_create_default_wifi_sta.str1.4 + 0x000000003f4169f4 0x51 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x000000003f416a45 0x3 + .rodata.__func__$2 + 0x000000003f416a48 0x22 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x000000003f416a6a 0x2 + .rodata.esp_wifi_create_if_driver.str1.4 + 0x000000003f416a6c 0x50 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .rodata.esp_wifi_register_if_rxcb.str1.4 + 0x000000003f416abc 0xe8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .rodata.small_prime + 0x000000003f416ba4 0x2a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.mbedtls_cipher_definitions + 0x000000003f416e44 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f416e44 mbedtls_cipher_definitions + .rodata.str1.4 + 0x000000003f416fc4 0x2c4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_ccm_star_no_tag_info + 0x000000003f417288 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_ccm_star_no_tag_info + 0x000000003f4172a8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_ccm_star_no_tag_info + 0x000000003f4172c8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_ccm_info + 0x000000003f4172e8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_ccm_info + 0x000000003f417308 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_ccm_info + 0x000000003f417328 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.ccm_aria_info + 0x000000003f417348 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_gcm_info + 0x000000003f417374 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_gcm_info + 0x000000003f417394 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_gcm_info + 0x000000003f4173b4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.gcm_aria_info + 0x000000003f4173d4 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_ctr_info + 0x000000003f417400 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_ctr_info + 0x000000003f417420 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_ctr_info + 0x000000003f417440 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_cfb128_info + 0x000000003f417460 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_cfb128_info + 0x000000003f417480 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_cfb128_info + 0x000000003f4174a0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_cbc_info + 0x000000003f4174c0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_cbc_info + 0x000000003f4174e0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_cbc_info + 0x000000003f417500 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_ecb_info + 0x000000003f417520 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_ecb_info + 0x000000003f417540 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_ecb_info + 0x000000003f417560 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_info + 0x000000003f417580 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ccm_star_no_tag_info + 0x000000003f4175ac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ccm_star_no_tag_info + 0x000000003f4175cc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ccm_star_no_tag_info + 0x000000003f4175ec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ccm_info + 0x000000003f41760c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ccm_info + 0x000000003f41762c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ccm_info + 0x000000003f41764c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.ccm_aes_info + 0x000000003f41766c 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_gcm_info + 0x000000003f417698 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_gcm_info + 0x000000003f4176b8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_gcm_info + 0x000000003f4176d8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.gcm_aes_info + 0x000000003f4176f8 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_xts_info + 0x000000003f417724 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_xts_info + 0x000000003f417744 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.xts_aes_info + 0x000000003f417764 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ctr_info + 0x000000003f417790 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ctr_info + 0x000000003f4177b0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ctr_info + 0x000000003f4177d0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ofb_info + 0x000000003f4177f0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ofb_info + 0x000000003f417810 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ofb_info + 0x000000003f417830 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_cfb128_info + 0x000000003f417850 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_cfb128_info + 0x000000003f417870 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_cfb128_info + 0x000000003f417890 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_cbc_info + 0x000000003f4178b0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_cbc_info + 0x000000003f4178d0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_cbc_info + 0x000000003f4178f0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ecb_info + 0x000000003f417910 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ecb_info + 0x000000003f417930 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ecb_info + 0x000000003f417950 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_info + 0x000000003f417970 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.ecp_x25519_bad_point_2 + 0x000000003f41799c 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.ecp_x25519_bad_point_1 + 0x000000003f4179a8 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.x25519_bad_point_2 + 0x000000003f4179b4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.x25519_bad_point_1 + 0x000000003f4179d4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.str1.4 + 0x000000003f4179f4 0x97 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x000000003f417a8b 0x1 + .rodata.ecp_supported_curves + 0x000000003f417a8c 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.curve25519_n + 0x000000003f417b28 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.curve25519_p + 0x000000003f417b48 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T + 0x000000003f417b68 0x480 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_31_Y + 0x000000003f417fe8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_31_X + 0x000000003f418028 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_30_Y + 0x000000003f418068 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_30_X + 0x000000003f4180a8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_29_Y + 0x000000003f4180e8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_29_X + 0x000000003f418128 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_28_Y + 0x000000003f418168 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_28_X + 0x000000003f4181a8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_27_Y + 0x000000003f4181e8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_27_X + 0x000000003f418228 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_26_Y + 0x000000003f418268 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_26_X + 0x000000003f4182a8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_25_Y + 0x000000003f4182e8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_25_X + 0x000000003f418328 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_24_Y + 0x000000003f418368 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_24_X + 0x000000003f4183a8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_23_Y + 0x000000003f4183e8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_23_X + 0x000000003f418428 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_22_Y + 0x000000003f418468 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_22_X + 0x000000003f4184a8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_21_Y + 0x000000003f4184e8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_21_X + 0x000000003f418528 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_20_Y + 0x000000003f418568 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_20_X + 0x000000003f4185a8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_19_Y + 0x000000003f4185e8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_19_X + 0x000000003f418628 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_18_Y + 0x000000003f418668 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_18_X + 0x000000003f4186a8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_17_Y + 0x000000003f4186e8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_17_X + 0x000000003f418728 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_16_Y + 0x000000003f418768 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_16_X + 0x000000003f4187a8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_15_Y + 0x000000003f4187e8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_15_X + 0x000000003f418828 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_14_Y + 0x000000003f418868 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_14_X + 0x000000003f4188a8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_13_Y + 0x000000003f4188e8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_13_X + 0x000000003f418928 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_12_Y + 0x000000003f418968 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_12_X + 0x000000003f4189a8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_11_Y + 0x000000003f4189e8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_11_X + 0x000000003f418a28 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_10_Y + 0x000000003f418a68 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_10_X + 0x000000003f418aa8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_9_Y + 0x000000003f418ae8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_9_X + 0x000000003f418b28 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_8_Y + 0x000000003f418b68 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_8_X + 0x000000003f418ba8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_7_Y + 0x000000003f418be8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_7_X + 0x000000003f418c28 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_6_Y + 0x000000003f418c68 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_6_X + 0x000000003f418ca8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_5_Y + 0x000000003f418ce8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_5_X + 0x000000003f418d28 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_4_Y + 0x000000003f418d68 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_4_X + 0x000000003f418da8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_3_Y + 0x000000003f418de8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_3_X + 0x000000003f418e28 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_2_Y + 0x000000003f418e68 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_2_X + 0x000000003f418ea8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_1_Y + 0x000000003f418ee8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_1_X + 0x000000003f418f28 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_0_Y + 0x000000003f418f68 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_0_X + 0x000000003f418fa8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_n + 0x000000003f418fe8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_gy + 0x000000003f419028 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_gx + 0x000000003f419068 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_b + 0x000000003f4190a8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_a + 0x000000003f4190e8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_p + 0x000000003f419128 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T + 0x000000003f419168 0x480 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_31_Y + 0x000000003f4195e8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_31_X + 0x000000003f419618 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_30_Y + 0x000000003f419648 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_30_X + 0x000000003f419678 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_29_Y + 0x000000003f4196a8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_29_X + 0x000000003f4196d8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_28_Y + 0x000000003f419708 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_28_X + 0x000000003f419738 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_27_Y + 0x000000003f419768 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_27_X + 0x000000003f419798 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_26_Y + 0x000000003f4197c8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_26_X + 0x000000003f4197f8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_25_Y + 0x000000003f419828 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_25_X + 0x000000003f419858 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_24_Y + 0x000000003f419888 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_24_X + 0x000000003f4198b8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_23_Y + 0x000000003f4198e8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_23_X + 0x000000003f419918 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_22_Y + 0x000000003f419948 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_22_X + 0x000000003f419978 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_21_Y + 0x000000003f4199a8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_21_X + 0x000000003f4199d8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_20_Y + 0x000000003f419a08 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_20_X + 0x000000003f419a38 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_19_Y + 0x000000003f419a68 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_19_X + 0x000000003f419a98 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_18_Y + 0x000000003f419ac8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_18_X + 0x000000003f419af8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_17_Y + 0x000000003f419b28 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_17_X + 0x000000003f419b58 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_16_Y + 0x000000003f419b88 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_16_X + 0x000000003f419bb8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_15_Y + 0x000000003f419be8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_15_X + 0x000000003f419c18 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_14_Y + 0x000000003f419c48 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_14_X + 0x000000003f419c78 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_13_Y + 0x000000003f419ca8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_13_X + 0x000000003f419cd8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_12_Y + 0x000000003f419d08 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_12_X + 0x000000003f419d38 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_11_Y + 0x000000003f419d68 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_11_X + 0x000000003f419d98 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_10_Y + 0x000000003f419dc8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_10_X + 0x000000003f419df8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_9_Y + 0x000000003f419e28 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_9_X + 0x000000003f419e58 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_8_Y + 0x000000003f419e88 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_8_X + 0x000000003f419eb8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_7_Y + 0x000000003f419ee8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_7_X + 0x000000003f419f18 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_6_Y + 0x000000003f419f48 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_6_X + 0x000000003f419f78 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_5_Y + 0x000000003f419fa8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_5_X + 0x000000003f419fd8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_4_Y + 0x000000003f41a008 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_4_X + 0x000000003f41a038 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_3_Y + 0x000000003f41a068 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_3_X + 0x000000003f41a098 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_2_Y + 0x000000003f41a0c8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_2_X + 0x000000003f41a0f8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_1_Y + 0x000000003f41a128 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_1_X + 0x000000003f41a158 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_0_Y + 0x000000003f41a188 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_0_X + 0x000000003f41a1b8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_n + 0x000000003f41a1e8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_gy + 0x000000003f41a218 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_gx + 0x000000003f41a248 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_b + 0x000000003f41a278 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_a + 0x000000003f41a2a8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_p + 0x000000003f41a2d8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T + 0x000000003f41a308 0x240 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_15_Y + 0x000000003f41a548 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_15_X + 0x000000003f41a568 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_14_Y + 0x000000003f41a588 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_14_X + 0x000000003f41a5a8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_13_Y + 0x000000003f41a5c8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_13_X + 0x000000003f41a5e8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_12_Y + 0x000000003f41a608 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_12_X + 0x000000003f41a628 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_11_Y + 0x000000003f41a648 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_11_X + 0x000000003f41a668 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_10_Y + 0x000000003f41a688 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_10_X + 0x000000003f41a6a8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_9_Y + 0x000000003f41a6c8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_9_X + 0x000000003f41a6e8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_8_Y + 0x000000003f41a708 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_8_X + 0x000000003f41a728 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_7_Y + 0x000000003f41a748 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_7_X + 0x000000003f41a768 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_6_Y + 0x000000003f41a788 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_6_X + 0x000000003f41a7a8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_5_Y + 0x000000003f41a7c8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_5_X + 0x000000003f41a7e8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_4_Y + 0x000000003f41a808 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_4_X + 0x000000003f41a828 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_3_Y + 0x000000003f41a848 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_3_X + 0x000000003f41a868 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_2_Y + 0x000000003f41a888 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_2_X + 0x000000003f41a8a8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_1_Y + 0x000000003f41a8c8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_1_X + 0x000000003f41a8e8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_0_Y + 0x000000003f41a908 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_0_X + 0x000000003f41a928 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_n + 0x000000003f41a948 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_gy + 0x000000003f41a968 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_gx + 0x000000003f41a988 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_b + 0x000000003f41a9a8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_a + 0x000000003f41a9c8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_p + 0x000000003f41a9e8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T + 0x000000003f41aa08 0x240 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_15_Y + 0x000000003f41ac48 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_15_X + 0x000000003f41ac68 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_14_Y + 0x000000003f41ac88 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_14_X + 0x000000003f41aca8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_13_Y + 0x000000003f41acc8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_13_X + 0x000000003f41ace8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_12_Y + 0x000000003f41ad08 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_12_X + 0x000000003f41ad28 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_11_Y + 0x000000003f41ad48 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_11_X + 0x000000003f41ad68 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_10_Y + 0x000000003f41ad88 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_10_X + 0x000000003f41ada8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_9_Y + 0x000000003f41adc8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_9_X + 0x000000003f41ade8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_8_Y + 0x000000003f41ae08 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_8_X + 0x000000003f41ae28 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_7_Y + 0x000000003f41ae48 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_7_X + 0x000000003f41ae68 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_6_Y + 0x000000003f41ae88 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_6_X + 0x000000003f41aea8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_5_Y + 0x000000003f41aec8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_5_X + 0x000000003f41aee8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_4_Y + 0x000000003f41af08 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_4_X + 0x000000003f41af28 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_3_Y + 0x000000003f41af48 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_3_X + 0x000000003f41af68 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_2_Y + 0x000000003f41af88 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_2_X + 0x000000003f41afa8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_1_Y + 0x000000003f41afc8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_1_X + 0x000000003f41afe8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_0_Y + 0x000000003f41b008 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_0_X + 0x000000003f41b028 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_n + 0x000000003f41b048 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_gy + 0x000000003f41b068 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_gx + 0x000000003f41b088 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_b + 0x000000003f41b0a8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_a + 0x000000003f41b0ac 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_p + 0x000000003f41b0b0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T + 0x000000003f41b0d0 0x240 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_15_Y + 0x000000003f41b310 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_15_X + 0x000000003f41b330 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_14_Y + 0x000000003f41b350 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_14_X + 0x000000003f41b370 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_13_Y + 0x000000003f41b390 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_13_X + 0x000000003f41b3b0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_12_Y + 0x000000003f41b3d0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_12_X + 0x000000003f41b3f0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_11_Y + 0x000000003f41b410 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_11_X + 0x000000003f41b430 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_10_Y + 0x000000003f41b450 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_10_X + 0x000000003f41b470 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_9_Y + 0x000000003f41b490 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_9_X + 0x000000003f41b4b0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_8_Y + 0x000000003f41b4d0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_8_X + 0x000000003f41b4f0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_7_Y + 0x000000003f41b510 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_7_X + 0x000000003f41b530 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_6_Y + 0x000000003f41b550 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_6_X + 0x000000003f41b570 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_5_Y + 0x000000003f41b590 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_5_X + 0x000000003f41b5b0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_4_Y + 0x000000003f41b5d0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_4_X + 0x000000003f41b5f0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_3_Y + 0x000000003f41b610 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_3_X + 0x000000003f41b630 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_2_Y + 0x000000003f41b650 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_2_X + 0x000000003f41b670 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_1_Y + 0x000000003f41b690 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_1_X + 0x000000003f41b6b0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_0_Y + 0x000000003f41b6d0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_0_X + 0x000000003f41b6f0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_n + 0x000000003f41b710 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_gy + 0x000000003f41b730 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_gx + 0x000000003f41b74c 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_b + 0x000000003f41b768 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_a + 0x000000003f41b76c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_p + 0x000000003f41b770 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T + 0x000000003f41b78c 0x240 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_15_Y + 0x000000003f41b9cc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_15_X + 0x000000003f41b9e4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_14_Y + 0x000000003f41b9fc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_14_X + 0x000000003f41ba14 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_13_Y + 0x000000003f41ba2c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_13_X + 0x000000003f41ba44 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_12_Y + 0x000000003f41ba5c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_12_X + 0x000000003f41ba74 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_11_Y + 0x000000003f41ba8c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_11_X + 0x000000003f41baa4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_10_Y + 0x000000003f41babc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_10_X + 0x000000003f41bad4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_9_Y + 0x000000003f41baec 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_9_X + 0x000000003f41bb04 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_8_Y + 0x000000003f41bb1c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_8_X + 0x000000003f41bb34 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_7_Y + 0x000000003f41bb4c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_7_X + 0x000000003f41bb64 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_6_Y + 0x000000003f41bb7c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_6_X + 0x000000003f41bb94 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_5_Y + 0x000000003f41bbac 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_5_X + 0x000000003f41bbc4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_4_Y + 0x000000003f41bbdc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_4_X + 0x000000003f41bbf4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_3_Y + 0x000000003f41bc0c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_3_X + 0x000000003f41bc24 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_2_Y + 0x000000003f41bc3c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_2_X + 0x000000003f41bc54 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_1_Y + 0x000000003f41bc6c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_1_X + 0x000000003f41bc84 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_0_Y + 0x000000003f41bc9c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_0_X + 0x000000003f41bcb4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_n + 0x000000003f41bccc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_gy + 0x000000003f41bce4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_gx + 0x000000003f41bcfc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_b + 0x000000003f41bd14 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_a + 0x000000003f41bd18 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_p + 0x000000003f41bd1c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T + 0x000000003f41bd34 0x480 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_31_Y + 0x000000003f41c1b4 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_31_X + 0x000000003f41c1fc 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_30_Y + 0x000000003f41c244 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_30_X + 0x000000003f41c28c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_29_Y + 0x000000003f41c2d4 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_29_X + 0x000000003f41c31c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_28_Y + 0x000000003f41c364 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_28_X + 0x000000003f41c3ac 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_27_Y + 0x000000003f41c3f4 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_27_X + 0x000000003f41c43c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_26_Y + 0x000000003f41c484 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_26_X + 0x000000003f41c4cc 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_25_Y + 0x000000003f41c514 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_25_X + 0x000000003f41c55c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_24_Y + 0x000000003f41c5a4 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_24_X + 0x000000003f41c5ec 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_23_Y + 0x000000003f41c634 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_23_X + 0x000000003f41c67c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_22_Y + 0x000000003f41c6c4 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_22_X + 0x000000003f41c70c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_21_Y + 0x000000003f41c754 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_21_X + 0x000000003f41c79c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_20_Y + 0x000000003f41c7e4 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_20_X + 0x000000003f41c82c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_19_Y + 0x000000003f41c874 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_19_X + 0x000000003f41c8bc 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_18_Y + 0x000000003f41c904 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_18_X + 0x000000003f41c94c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_17_Y + 0x000000003f41c994 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_17_X + 0x000000003f41c9dc 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_16_Y + 0x000000003f41ca24 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_16_X + 0x000000003f41ca6c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_15_Y + 0x000000003f41cab4 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_15_X + 0x000000003f41cafc 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_14_Y + 0x000000003f41cb44 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_14_X + 0x000000003f41cb8c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_13_Y + 0x000000003f41cbd4 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_13_X + 0x000000003f41cc1c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_12_Y + 0x000000003f41cc64 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_12_X + 0x000000003f41ccac 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_11_Y + 0x000000003f41ccf4 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_11_X + 0x000000003f41cd3c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_10_Y + 0x000000003f41cd84 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_10_X + 0x000000003f41cdcc 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_9_Y + 0x000000003f41ce14 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_9_X + 0x000000003f41ce5c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_8_Y + 0x000000003f41cea4 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_8_X + 0x000000003f41ceec 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_7_Y + 0x000000003f41cf34 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_7_X + 0x000000003f41cf7c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_6_Y + 0x000000003f41cfc4 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_6_X + 0x000000003f41d00c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_5_Y + 0x000000003f41d054 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_5_X + 0x000000003f41d09c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_4_Y + 0x000000003f41d0e4 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_4_X + 0x000000003f41d12c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_3_Y + 0x000000003f41d174 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_3_X + 0x000000003f41d1bc 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_2_Y + 0x000000003f41d204 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_2_X + 0x000000003f41d24c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_1_Y + 0x000000003f41d294 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_1_X + 0x000000003f41d2dc 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_0_Y + 0x000000003f41d324 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_0_X + 0x000000003f41d36c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_n + 0x000000003f41d3b4 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_gy + 0x000000003f41d3f8 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_gx + 0x000000003f41d43c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_b + 0x000000003f41d480 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_p + 0x000000003f41d4c4 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T + 0x000000003f41d508 0x480 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_31_Y + 0x000000003f41d988 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_31_X + 0x000000003f41d9b8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_30_Y + 0x000000003f41d9e8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_30_X + 0x000000003f41da18 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_29_Y + 0x000000003f41da48 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_29_X + 0x000000003f41da78 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_28_Y + 0x000000003f41daa8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_28_X + 0x000000003f41dad8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_27_Y + 0x000000003f41db08 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_27_X + 0x000000003f41db38 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_26_Y + 0x000000003f41db68 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_26_X + 0x000000003f41db98 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_25_Y + 0x000000003f41dbc8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_25_X + 0x000000003f41dbf8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_24_Y + 0x000000003f41dc28 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_24_X + 0x000000003f41dc58 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_23_Y + 0x000000003f41dc88 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_23_X + 0x000000003f41dcb8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_22_Y + 0x000000003f41dce8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_22_X + 0x000000003f41dd18 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_21_Y + 0x000000003f41dd48 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_21_X + 0x000000003f41dd78 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_20_Y + 0x000000003f41dda8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_20_X + 0x000000003f41ddd8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_19_Y + 0x000000003f41de08 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_19_X + 0x000000003f41de38 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_18_Y + 0x000000003f41de68 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_18_X + 0x000000003f41de98 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_17_Y + 0x000000003f41dec8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_17_X + 0x000000003f41def8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_16_Y + 0x000000003f41df28 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_16_X + 0x000000003f41df58 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_15_Y + 0x000000003f41df88 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_15_X + 0x000000003f41dfb8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_14_Y + 0x000000003f41dfe8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_14_X + 0x000000003f41e018 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_13_Y + 0x000000003f41e048 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_13_X + 0x000000003f41e078 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_12_Y + 0x000000003f41e0a8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_12_X + 0x000000003f41e0d8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_11_Y + 0x000000003f41e108 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_11_X + 0x000000003f41e138 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_10_Y + 0x000000003f41e168 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_10_X + 0x000000003f41e198 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_9_Y + 0x000000003f41e1c8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_9_X + 0x000000003f41e1f8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_8_Y + 0x000000003f41e228 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_8_X + 0x000000003f41e258 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_7_Y + 0x000000003f41e288 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_7_X + 0x000000003f41e2b8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_6_Y + 0x000000003f41e2e8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_6_X + 0x000000003f41e318 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_5_Y + 0x000000003f41e348 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_5_X + 0x000000003f41e378 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_4_Y + 0x000000003f41e3a8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_4_X + 0x000000003f41e3d8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_3_Y + 0x000000003f41e408 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_3_X + 0x000000003f41e438 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_2_Y + 0x000000003f41e468 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_2_X + 0x000000003f41e498 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_1_Y + 0x000000003f41e4c8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_1_X + 0x000000003f41e4f8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_0_Y + 0x000000003f41e528 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_0_X + 0x000000003f41e558 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_n + 0x000000003f41e588 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_gy + 0x000000003f41e5b8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_gx + 0x000000003f41e5e8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_b + 0x000000003f41e618 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_p + 0x000000003f41e648 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T + 0x000000003f41e678 0x240 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_15_Y + 0x000000003f41e8b8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_15_X + 0x000000003f41e8d8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_14_Y + 0x000000003f41e8f8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_14_X + 0x000000003f41e918 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_13_Y + 0x000000003f41e938 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_13_X + 0x000000003f41e958 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_12_Y + 0x000000003f41e978 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_12_X + 0x000000003f41e998 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_11_Y + 0x000000003f41e9b8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_11_X + 0x000000003f41e9d8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_10_Y + 0x000000003f41e9f8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_10_X + 0x000000003f41ea18 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_9_Y + 0x000000003f41ea38 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_9_X + 0x000000003f41ea58 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_8_Y + 0x000000003f41ea78 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_8_X + 0x000000003f41ea98 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_7_Y + 0x000000003f41eab8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_7_X + 0x000000003f41ead8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_6_Y + 0x000000003f41eaf8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_6_X + 0x000000003f41eb18 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_5_Y + 0x000000003f41eb38 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_5_X + 0x000000003f41eb58 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_4_Y + 0x000000003f41eb78 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_4_X + 0x000000003f41eb98 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_3_Y + 0x000000003f41ebb8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_3_X + 0x000000003f41ebd8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_2_Y + 0x000000003f41ebf8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_2_X + 0x000000003f41ec18 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_1_Y + 0x000000003f41ec38 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_1_X + 0x000000003f41ec58 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_0_Y + 0x000000003f41ec78 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_0_X + 0x000000003f41ec98 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_n + 0x000000003f41ecb8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_gy + 0x000000003f41ecd8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_gx + 0x000000003f41ecf8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_b + 0x000000003f41ed18 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_p + 0x000000003f41ed38 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T + 0x000000003f41ed58 0x240 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_15_Y + 0x000000003f41ef98 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_15_X + 0x000000003f41efb8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_14_Y + 0x000000003f41efd8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_14_X + 0x000000003f41eff8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_13_Y + 0x000000003f41f018 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_13_X + 0x000000003f41f038 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_12_Y + 0x000000003f41f058 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_12_X + 0x000000003f41f078 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_11_Y + 0x000000003f41f098 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_11_X + 0x000000003f41f0b8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_10_Y + 0x000000003f41f0d8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_10_X + 0x000000003f41f0f8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_9_Y + 0x000000003f41f118 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_9_X + 0x000000003f41f138 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_8_Y + 0x000000003f41f158 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_8_X + 0x000000003f41f178 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_7_Y + 0x000000003f41f198 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_7_X + 0x000000003f41f1b8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_6_Y + 0x000000003f41f1d8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_6_X + 0x000000003f41f1f8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_5_Y + 0x000000003f41f218 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_5_X + 0x000000003f41f238 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_4_Y + 0x000000003f41f258 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_4_X + 0x000000003f41f278 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_3_Y + 0x000000003f41f298 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_3_X + 0x000000003f41f2b8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_2_Y + 0x000000003f41f2d8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_2_X + 0x000000003f41f2f8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_1_Y + 0x000000003f41f318 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_1_X + 0x000000003f41f338 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_0_Y + 0x000000003f41f358 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_0_X + 0x000000003f41f378 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_n + 0x000000003f41f398 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_gy + 0x000000003f41f3b4 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_gx + 0x000000003f41f3d0 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_b + 0x000000003f41f3ec 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_p + 0x000000003f41f408 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T + 0x000000003f41f428 0x240 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_15_Y + 0x000000003f41f668 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_15_X + 0x000000003f41f680 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_14_Y + 0x000000003f41f698 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_14_X + 0x000000003f41f6b0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_13_Y + 0x000000003f41f6c8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_13_X + 0x000000003f41f6e0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_12_Y + 0x000000003f41f6f8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_12_X + 0x000000003f41f710 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_11_Y + 0x000000003f41f728 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_11_X + 0x000000003f41f740 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_10_Y + 0x000000003f41f758 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_10_X + 0x000000003f41f770 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_9_Y + 0x000000003f41f788 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_9_X + 0x000000003f41f7a0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_8_Y + 0x000000003f41f7b8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_8_X + 0x000000003f41f7d0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_7_Y + 0x000000003f41f7e8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_7_X + 0x000000003f41f800 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_6_Y + 0x000000003f41f818 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_6_X + 0x000000003f41f830 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_5_Y + 0x000000003f41f848 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_5_X + 0x000000003f41f860 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_4_Y + 0x000000003f41f878 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_4_X + 0x000000003f41f890 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_3_Y + 0x000000003f41f8a8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_3_X + 0x000000003f41f8c0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_2_Y + 0x000000003f41f8d8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_2_X + 0x000000003f41f8f0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_1_Y + 0x000000003f41f908 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_1_X + 0x000000003f41f920 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_0_Y + 0x000000003f41f938 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_0_X + 0x000000003f41f950 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_n + 0x000000003f41f968 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_gy + 0x000000003f41f980 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_gx + 0x000000003f41f998 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_b + 0x000000003f41f9b0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_p + 0x000000003f41f9c8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.mbedtls_md_info_from_string.str1.4 + 0x000000003f41f9e0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x2f (size before relaxing) + .rodata.mbedtls_sha512_info + 0x000000003f41f9e8 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000003f41f9e8 mbedtls_sha512_info + .rodata.mbedtls_sha384_info + 0x000000003f41f9f4 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000003f41f9f4 mbedtls_sha384_info + .rodata.mbedtls_sha256_info + 0x000000003f41fa00 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000003f41fa00 mbedtls_sha256_info + .rodata.mbedtls_sha224_info + 0x000000003f41fa0c 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000003f41fa0c mbedtls_sha224_info + .rodata.mbedtls_sha1_info + 0x000000003f41fa18 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000003f41fa18 mbedtls_sha1_info + .rodata.mbedtls_md5_info + 0x000000003f41fa24 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000003f41fa24 mbedtls_md5_info + .rodata.esp_aes_crypt_cfb128.str1.4 + 0x000000003f41fa30 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + *fill* 0x000000003f41fa8e 0x2 + .rodata.esp_aes_crypt_ctr.str1.4 + 0x000000003f41fa90 0x89 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + *fill* 0x000000003f41fb19 0x3 + .rodata.mpi_mult_mpi_failover_mod_mult.str1.4 + 0x000000003f41fb1c 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + *fill* 0x000000003f41fb92 0x2 + .rodata.__func__$0 + 0x000000003f41fb94 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + *fill* 0x000000003f41fbb3 0x1 + .rodata.sha1_padding + 0x000000003f41fbb4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .rodata.sha256_padding + 0x000000003f41fbf4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .rodata.K 0x000000003f41fc34 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .rodata.sha512_padding + 0x000000003f41fd34 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + *fill* 0x000000003f41fdb4 0x4 + .rodata.K 0x000000003f41fdb8 0x280 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .rodata.esp_aes_gcm_starts.str1.4 + 0x000000003f420038 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x63 (size before relaxing) + .rodata.esp_aes_gcm_update_ad.str1.4 + 0x000000003f420074 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + *fill* 0x000000003f4200d2 0x2 + .rodata.esp_aes_gcm_update.str1.4 + 0x000000003f4200d4 0xbb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + *fill* 0x000000003f42018f 0x1 + .rodata.last4 0x000000003f420190 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .rodata 0x000000003f420210 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_is2 + 0x000000003f420240 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_is1 + 0x000000003f420340 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_sb2 + 0x000000003f420440 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_sb1 + 0x000000003f420540 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.str1.4 + 0x000000003f420640 0xbd9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0xc89 (size before relaxing) + *fill* 0x000000003f421219 0x3 + .rodata.oid_md_alg + 0x000000003f42121c 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata 0x000000003f4212a8 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x000000003f4212dd 0x3 + .rodata.oid_ecp_grp + 0x000000003f4212e0 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_pk_alg + 0x000000003f4213d0 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.sha_get_engine_state.str1.4 + 0x000000003f421420 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.esp_sha_lock_engine_common.str1.4 + 0x000000003f42146c 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.esp_sha_read_digest_state.str1.4 + 0x000000003f421480 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.__func__$0 + 0x000000003f4214c8 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x000000003f4214d6 0x2 + .rodata.__func__$1 + 0x000000003f4214d8 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x000000003f4214f2 0x2 + .rodata.__func__$2 + 0x000000003f4214f4 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x000000003f421509 0x3 + .rodata.__func__$3 + 0x000000003f42150c 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.str1.1 + 0x000000003f421527 0x16e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .rodata.coex_version_str + 0x000000003f421695 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .rodata.str1.1 + 0x000000003f42169b 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .rodata.__func__$3598 + 0x000000003f4216aa 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .rodata.str1.1 + 0x000000003f4216c0 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .rodata.str1.1 + 0x000000003f4216d0 0x25a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.str1.1 + 0x000000003f42192a 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + *fill* 0x000000003f42194a 0x2 + .rodata.wifi_mode_set + 0x000000003f42194c 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata.ieee80211_ethbroadcast + 0x000000003f421960 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x000000003f421960 ieee80211_ethbroadcast + .rodata.str1.1 + 0x000000003f421966 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata.str1.1 + 0x000000003f421979 0x82 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + 0x92 (size before relaxing) + .rodata.str1.1 + 0x000000003f4219fb 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata.str1.1 + 0x000000003f421a1a 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata 0x000000003f421a29 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata.str1.1 + 0x000000003f421a39 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .rodata.str1.1 + 0x000000003f421a39 0xac /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + *fill* 0x000000003f421ae5 0x3 + .rodata 0x000000003f421ae8 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata.CSWTCH$56 + 0x000000003f421b04 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata.str1.1 + 0x000000003f421b28 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x2b (size before relaxing) + *fill* 0x000000003f421b4b 0x1 + .rodata.wifi_set_mode_process + 0x000000003f421b4c 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.CSWTCH$220 + 0x000000003f421b60 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.CSWTCH$135 + 0x000000003f421b6b 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$12596 + 0x000000003f421b6f 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.str1.1 + 0x000000003f421b85 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata.str1.1 + 0x000000003f421b9e 0x2ac /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + *fill* 0x000000003f421e4a 0x2 + .rodata.wifi_nvs_set + 0x000000003f421e4c 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata.wifi_nvs_compare_cfg_diff + 0x000000003f421e6c 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata.wifi_nvs_load + 0x000000003f421e8c 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata.str1.1 + 0x000000003f421eac 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata 0x000000003f421ebf 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata.info$12544 + 0x000000003f421ecd 0x9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata.s_ac_param$12549 + 0x000000003f421ed6 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata.param$12550 + 0x000000003f421ef2 0x9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata.str1.1 + 0x000000003f421efb 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x2b (size before relaxing) + *fill* 0x000000003f421f1d 0x3 + .rodata.ieee80211_11g_table + 0x000000003f421f20 0xd4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .rodata.ieee80211_11b_table + 0x000000003f421ff4 0xd4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .rodata.ieee80211_is_40mhz_valid_bw + 0x000000003f4220c8 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .rodata.str1.1 + 0x000000003f4220e4 0x3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .rodata.str1.1 + 0x000000003f4220e7 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata.str1.1 + 0x000000003f4220f8 0x4a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x59 (size before relaxing) + *fill* 0x000000003f422142 0x2 + .rodata.ieee80211_sta_new_state + 0x000000003f422144 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata 0x000000003f42215c 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata.state_desc$11785 + 0x000000003f422160 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata.str1.1 + 0x000000003f422184 0x4e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + *fill* 0x000000003f4221d2 0x2 + .rodata.wifi_set_rx_policy + 0x000000003f4221d4 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata.CSWTCH$158 + 0x000000003f42220c 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata.__FUNCTION__$10851 + 0x000000003f422212 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10872 + 0x000000003f422228 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10799 + 0x000000003f422240 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10805 + 0x000000003f422258 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10811 + 0x000000003f422272 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10817 + 0x000000003f42228f 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10823 + 0x000000003f42229d 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10831 + 0x000000003f4222b2 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10839 + 0x000000003f4222c3 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10845 + 0x000000003f4222d7 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10860 + 0x000000003f4222eb 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10866 + 0x000000003f4222fa 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10878 + 0x000000003f42230a 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10884 + 0x000000003f422325 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10902 + 0x000000003f422344 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10896 + 0x000000003f422362 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10890 + 0x000000003f42237c 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.str1.1 + 0x000000003f422396 0x9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata.str1.1 + 0x000000003f42239f 0x97 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xa3 (size before relaxing) + .rodata.CSWTCH$153 + 0x000000003f422436 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata.CSWTCH$125 + 0x000000003f422440 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata.str1.1 + 0x000000003f42247c 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .rodata.str1.1 + 0x000000003f42248f 0x9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .rodata.str1.1 + 0x000000003f422498 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f42249f 0x1 + .rodata.lmacProcessTxComplete + 0x000000003f4224a0 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10591 + 0x000000003f4224b8 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10565 + 0x000000003f4224c3 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10518 + 0x000000003f4224cf 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10491 + 0x000000003f4224e2 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10472 + 0x000000003f4224f8 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10461 + 0x000000003f42250e 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10442 + 0x000000003f422524 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10410 + 0x000000003f42253d 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10392 + 0x000000003f422557 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10347 + 0x000000003f42256d 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10316 + 0x000000003f422582 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10280 + 0x000000003f42259f 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10247 + 0x000000003f4225c0 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.str1.1 + 0x000000003f4225d5 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x12 (size before relaxing) + *fill* 0x000000003f4225da 0x2 + .rodata 0x000000003f4225dc 0x6c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata.CSWTCH$290 + 0x000000003f422648 0x4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata.our_controls + 0x000000003f42264c 0x158 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .rodata.rcUpdateAMPDUParam + 0x000000003f4227a4 0x40 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.rcUpdatePhyMode + 0x000000003f4227e4 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.str1.1 + 0x000000003f422800 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + *fill* 0x000000003f422806 0x2 + .rodata.rssi_margin + 0x000000003f422808 0x80 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.TRC_AMPDU_PER_DOWN_THRESHOLD + 0x000000003f422888 0x34 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.TRC_AMPDU_PER_UP_THRESHOLD + 0x000000003f4228bc 0x34 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.CSWTCH$94 + 0x000000003f4228f0 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.CSWTCH$86 + 0x000000003f422910 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.CSWTCH$84 + 0x000000003f42293b 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.__FUNCTION__$12052 + 0x000000003f422966 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.__FUNCTION__$11964 + 0x000000003f422978 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.__FUNCTION__$11951 + 0x000000003f422982 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.str1.1 + 0x000000003f422992 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata.__FUNCTION__$10812 + 0x000000003f422999 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata.__FUNCTION__$10767 + 0x000000003f4229ad 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata.__FUNCTION__$10653 + 0x000000003f4229c1 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata.__FUNCTION__$10641 + 0x000000003f4229d9 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata 0x000000003f4229ef 0x6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + *fill* 0x000000003f4229f5 0x3 + .rodata.prvReturnItemByteBuf.str1.4 + 0x000000003f4229f8 0x7f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f422a77 0x1 + .rodata.prvCheckItemFitsByteBuffer.str1.4 + 0x000000003f422a78 0x66 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f422ade 0x2 + .rodata.prvAcquireItemNoSplit.str1.4 + 0x000000003f422ae0 0x64 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvReceiveGeneric.str1.4 + 0x000000003f422b44 0x35 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f422b79 0x3 + .rodata.xRingbufferSendAcquire.str1.4 + 0x000000003f422b7c 0x81 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f422bfd 0x3 + .rodata.xRingbufferSendComplete.str1.4 + 0x000000003f422c00 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f422c16 0x2 + .rodata.xRingbufferSend.str1.4 + 0x000000003f422c18 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferReceive.str1.4 + 0x000000003f422c40 0x1b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f422c5b 0x1 + .rodata.__func__$11 + 0x000000003f422c5c 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f422c72 0x2 + .rodata.__func__$18 + 0x000000003f422c74 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f422c86 0x2 + .rodata.__func__$19 + 0x000000003f422c88 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f422c9b 0x1 + .rodata.__func__$21 + 0x000000003f422c9c 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$28 + 0x000000003f422cac 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f422cc2 0x2 + .rodata.g_spi_lock_main_flash_dev + 0x000000003f422cc4 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + 0x000000003f422cc4 g_spi_lock_main_flash_dev + .rodata.load_partitions.str1.4 + 0x000000003f422cc8 0x79 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + *fill* 0x000000003f422d41 0x3 + .rodata.ensure_partitions_loaded.str1.4 + 0x000000003f422d44 0x36 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + *fill* 0x000000003f422d7a 0x2 + .rodata.unload_partitions.str1.4 + 0x000000003f422d7c 0x4b esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + *fill* 0x000000003f422dc7 0x1 + .rodata.esp_partition_next.str1.4 + 0x000000003f422dc8 0x3 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + *fill* 0x000000003f422dcb 0x1 + .rodata.esp_partition_get.str1.4 + 0x000000003f422dcc 0x11 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + *fill* 0x000000003f422ddd 0x3 + .rodata.__func__$2 + 0x000000003f422de0 0x12 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + *fill* 0x000000003f422df2 0x2 + .rodata.__func__$3 + 0x000000003f422df4 0x13 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + *fill* 0x000000003f422e07 0x1 + .rodata.esp_partition_write.str1.4 + 0x000000003f422e08 0x46 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + *fill* 0x000000003f422e4e 0x2 + .rodata.__func__$0 + 0x000000003f422e50 0x13 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + *fill* 0x000000003f422e63 0x1 + .rodata.__func__$1 + 0x000000003f422e64 0x1a esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + *fill* 0x000000003f422e7e 0x2 + .rodata.__func__$2 + 0x000000003f422e80 0x18 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__$3 + 0x000000003f422e98 0x17 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + *fill* 0x000000003f422eaf 0x1 + .rodata.__func__$4 + 0x000000003f422eb0 0x14 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__$5 + 0x000000003f422ec4 0x13 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + *fill* 0x000000003f422ed7 0x1 + .rodata.esp_ota_get_running_partition.str1.4 + 0x000000003f422ed8 0x5f esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x000000003f422f37 0x1 + .rodata.__func__$1 + 0x000000003f422f38 0x1e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x000000003f422f56 0x2 + .rodata.clk_hal_lp_slow_get_freq_hz.str1.4 + 0x000000003f422f58 0x29 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x31 (size before relaxing) + *fill* 0x000000003f422f81 0x3 + .rodata.clk_hal_cpu_get_freq_hz.str1.4 + 0x000000003f422f84 0x33 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + *fill* 0x000000003f422fb7 0x1 + .rodata.__func__$0 + 0x000000003f422fb8 0x1c esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .rodata.__func__$1 + 0x000000003f422fd4 0x1e esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + *fill* 0x000000003f422ff2 0x2 + .rodata.mpi_ll_read_from_mem_block.str1.4 + 0x000000003f422ff4 0x40 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .rodata.__func__$0 + 0x000000003f423034 0x1b esp-idf/hal/libhal.a(mpi_hal.c.obj) + *fill* 0x000000003f42304f 0x1 + .rodata.MPI_LL_OPERATIONS + 0x000000003f423050 0x4 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + 0x000000003f423050 MPI_LL_OPERATIONS + .rodata.MPI_LL_BLOCK_BASES + 0x000000003f423054 0x10 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + 0x000000003f423054 MPI_LL_BLOCK_BASES + .rodata.esp_deep_sleep_register_hook.str1.4 + 0x000000003f423064 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.lib_printf.str1.4 + 0x000000003f4230ba 0x1b esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.phy_printf.str1.4 + 0x000000003f4230ba 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + *fill* 0x000000003f4230ba 0x2 + .rodata.net80211_printf.str1.4 + 0x000000003f4230bc 0x9 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + *fill* 0x000000003f4230c5 0x3 + .rodata.coexist_printf.str1.4 + 0x000000003f4230c8 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.free_socket_locked.str1.4 + 0x000000003f4230d0 0x40 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.sock_inc_used_locked.str1.4 + 0x000000003f423110 0x23 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f423133 0x1 + .rodata.lwip_unlink_select_cb.str1.4 + 0x000000003f423134 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_sock_make_addr.str1.4 + 0x000000003f423164 0x34 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_selscan.str1.4 + 0x000000003f423198 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_select_dec_sockets_used.str1.4 + 0x000000003f4231a4 0x21 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f4231c5 0x3 + .rodata.lwip_pollscan.str1.4 + 0x000000003f4231c8 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f4231e1 0x3 + .rodata.lwip_recv_tcp.str1.4 + 0x000000003f4231e4 0x6c esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x78 (size before relaxing) + .rodata.lwip_recvfrom_udp_raw.str1.4 + 0x000000003f423250 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_close.str1.4 + 0x000000003f423250 0x17 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f423267 0x1 + .rodata.lwip_recvfrom.str1.4 + 0x000000003f423268 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f423276 0x2 + .rodata.__func__$6 + 0x000000003f423278 0x1d esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f423295 0x3 + .rodata.__func__$7 + 0x000000003f423298 0xd esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f4232a5 0x3 + .rodata.__func__$8 + 0x000000003f4232a8 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f4232be 0x2 + .rodata.__func__$9 + 0x000000003f4232c0 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f4232d5 0x3 + .rodata.__func__$10 + 0x000000003f4232d8 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$12 + 0x000000003f4232e4 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f4232fa 0x2 + .rodata.__func__$13 + 0x000000003f4232fc 0x14 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$14 + 0x000000003f423310 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f42331e 0x2 + .rodata.__func__$15 + 0x000000003f423320 0xb esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f42332b 0x1 + .rodata.__func__$16 + 0x000000003f42332c 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$17 + 0x000000003f423338 0x13 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f42334b 0x1 + .rodata.__func__$19 + 0x000000003f42334c 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f42335a 0x2 + .rodata.tcpip_thread_handle_msg.str1.4 + 0x000000003f42335c 0x4a esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003f4233a6 0x2 + .rodata.tcpip_inpkt.str1.4 + 0x000000003f4233a8 0xd esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003f4233b5 0x3 + .rodata.tcpip_send_msg_wait_sem.str1.4 + 0x000000003f4233b8 0x1a esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003f4233d2 0x2 + .rodata.tcpip_init.str1.4 + 0x000000003f4233d4 0x28 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$0 + 0x000000003f4233fc 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$1 + 0x000000003f423414 0xd esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003f423421 0x3 + .rodata.__func__$2 + 0x000000003f423424 0xb esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003f42342f 0x1 + .rodata.__func__$5 + 0x000000003f423430 0xf esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003f42343f 0x1 + .rodata.__func__$6 + 0x000000003f423440 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$7 + 0x000000003f423458 0x13 esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003f42346b 0x1 + .rodata.__func__$9 + 0x000000003f42346c 0xc esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.ip_addr_any_type + 0x000000003f423478 0x18 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x000000003f423478 ip_addr_any_type + .rodata.mem_malloc.str1.4 + 0x000000003f423490 0x4d esp-idf/lwip/liblwip.a(mem.c.obj) + *fill* 0x000000003f4234dd 0x3 + .rodata.mem_free.str1.4 + 0x000000003f4234e0 0x28 esp-idf/lwip/liblwip.a(mem.c.obj) + .rodata.__func__$0 + 0x000000003f423508 0x9 esp-idf/lwip/liblwip.a(mem.c.obj) + *fill* 0x000000003f423511 0x3 + .rodata.__func__$1 + 0x000000003f423514 0xb esp-idf/lwip/liblwip.a(mem.c.obj) + *fill* 0x000000003f42351f 0x1 + .rodata.do_memp_malloc_pool.str1.4 + 0x000000003f423520 0x4e esp-idf/lwip/liblwip.a(memp.c.obj) + *fill* 0x000000003f42356e 0x2 + .rodata.do_memp_free_pool.str1.4 + 0x000000003f423570 0x20 esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.__func__$0 + 0x000000003f423590 0x12 esp-idf/lwip/liblwip.a(memp.c.obj) + *fill* 0x000000003f4235a2 0x2 + .rodata.__func__$2 + 0x000000003f4235a4 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.memp_pools + 0x000000003f4235b8 0x48 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f4235b8 memp_pools + .rodata.memp_PBUF_POOL + 0x000000003f423600 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f423600 memp_PBUF_POOL + *fill* 0x000000003f423602 0x2 + .rodata.memp_PBUF + 0x000000003f423604 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f423604 memp_PBUF + *fill* 0x000000003f423606 0x2 + .rodata.memp_MLD6_GROUP + 0x000000003f423608 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f423608 memp_MLD6_GROUP + *fill* 0x000000003f42360a 0x2 + .rodata.memp_ND6_QUEUE + 0x000000003f42360c 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f42360c memp_ND6_QUEUE + *fill* 0x000000003f42360e 0x2 + .rodata.memp_NETDB + 0x000000003f423610 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f423610 memp_NETDB + *fill* 0x000000003f423612 0x2 + .rodata.memp_SYS_TIMEOUT + 0x000000003f423614 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f423614 memp_SYS_TIMEOUT + *fill* 0x000000003f423616 0x2 + .rodata.memp_IGMP_GROUP + 0x000000003f423618 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f423618 memp_IGMP_GROUP + *fill* 0x000000003f42361a 0x2 + .rodata.memp_ARP_QUEUE + 0x000000003f42361c 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f42361c memp_ARP_QUEUE + *fill* 0x000000003f42361e 0x2 + .rodata.memp_TCPIP_MSG_INPKT + 0x000000003f423620 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f423620 memp_TCPIP_MSG_INPKT + *fill* 0x000000003f423622 0x2 + .rodata.memp_TCPIP_MSG_API + 0x000000003f423624 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f423624 memp_TCPIP_MSG_API + *fill* 0x000000003f423626 0x2 + .rodata.memp_NETCONN + 0x000000003f423628 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f423628 memp_NETCONN + *fill* 0x000000003f42362a 0x2 + .rodata.memp_NETBUF + 0x000000003f42362c 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f42362c memp_NETBUF + *fill* 0x000000003f42362e 0x2 + .rodata.memp_FRAG_PBUF + 0x000000003f423630 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f423630 memp_FRAG_PBUF + *fill* 0x000000003f423632 0x2 + .rodata.memp_TCP_SEG + 0x000000003f423634 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f423634 memp_TCP_SEG + *fill* 0x000000003f423636 0x2 + .rodata.memp_TCP_PCB_LISTEN + 0x000000003f423638 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f423638 memp_TCP_PCB_LISTEN + *fill* 0x000000003f42363a 0x2 + .rodata.memp_TCP_PCB + 0x000000003f42363c 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f42363c memp_TCP_PCB + *fill* 0x000000003f42363e 0x2 + .rodata.memp_UDP_PCB + 0x000000003f423640 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f423640 memp_UDP_PCB + *fill* 0x000000003f423642 0x2 + .rodata.memp_RAW_PCB + 0x000000003f423644 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f423644 memp_RAW_PCB + *fill* 0x000000003f423646 0x2 + .rodata.netif_loopif_init.str1.4 + 0x000000003f423648 0x4f esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f423697 0x1 + .rodata.netif_do_set_netmask.str1.4 + 0x000000003f423698 0x10 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_issue_reports.str1.4 + 0x000000003f4236a8 0x23 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f4236cb 0x1 + .rodata.netif_poll.str1.4 + 0x000000003f4236cc 0x98 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_loop_output.str1.4 + 0x000000003f423764 0x70 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_get_ip6_addr_match.str1.4 + 0x000000003f4237d4 0x52 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f423826 0x2 + .rodata.netif_add_ext_callback.str1.4 + 0x000000003f423828 0x2f esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f423857 0x1 + .rodata.netif_remove_ext_callback.str1.4 + 0x000000003f423858 0xd esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f423865 0x3 + .rodata.netif_invoke_ext_callback.str1.4 + 0x000000003f423868 0x16 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f42387e 0x2 + .rodata.netif_add.str1.4 + 0x000000003f423880 0x42 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f4238c2 0x2 + .rodata.netif_ip6_addr_set_parts.str1.4 + 0x000000003f4238c4 0x1e esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f4238e2 0x2 + .rodata.netif_ip6_addr_set.str1.4 + 0x000000003f4238e4 0x46 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f42392a 0x2 + .rodata.__func__$0 + 0x000000003f42392c 0x1a esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f423946 0x2 + .rodata.__func__$1 + 0x000000003f423948 0x1a esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f423962 0x2 + .rodata.__func__$2 + 0x000000003f423964 0x17 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f42397b 0x1 + .rodata.__func__$5 + 0x000000003f42397c 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f423995 0x3 + .rodata.__func__$6 + 0x000000003f423998 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f4239b1 0x3 + .rodata.__func__$7 + 0x000000003f4239b4 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f4239cd 0x3 + .rodata.__func__$8 + 0x000000003f4239d0 0x13 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f4239e3 0x1 + .rodata.__func__$9 + 0x000000003f4239e4 0xb esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f4239ef 0x1 + .rodata.__func__$10 + 0x000000003f4239f0 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f423a02 0x2 + .rodata.__func__$11 + 0x000000003f423a04 0x10 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$12 + 0x000000003f423a14 0x15 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f423a29 0x3 + .rodata.__func__$13 + 0x000000003f423a2c 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$14 + 0x000000003f423a40 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$15 + 0x000000003f423a54 0xa esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f423a5e 0x2 + .rodata.__func__$17 + 0x000000003f423a60 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f423a72 0x2 + .rodata.pbuf_add_header_impl.str1.4 + 0x000000003f423a74 0x2a esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x36 (size before relaxing) + *fill* 0x000000003f423a9e 0x2 + .rodata.pbuf_alloc_reference.str1.4 + 0x000000003f423aa0 0x12 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f423ab2 0x2 + .rodata.pbuf_free.str1.4 + 0x000000003f423ab4 0x4e esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f423b02 0x2 + .rodata.pbuf_alloc.str1.4 + 0x000000003f423b04 0xab esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f423baf 0x1 + .rodata.pbuf_realloc.str1.4 + 0x000000003f423bb0 0x4c esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_ref.str1.4 + 0x000000003f423bfc 0x12 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f423c0e 0x2 + .rodata.pbuf_cat.str1.4 + 0x000000003f423c10 0x2d esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f423c3d 0x3 + .rodata.pbuf_copy_partial_pbuf.str1.4 + 0x000000003f423c40 0x33 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f423c73 0x1 + .rodata.pbuf_take.str1.4 + 0x000000003f423c74 0x2e esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f423ca2 0x2 + .rodata.pbuf_take_at.str1.4 + 0x000000003f423ca4 0x17 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f423cbb 0x1 + .rodata.pbuf_clone.str1.4 + 0x000000003f423cbc 0x11 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f423ccd 0x3 + .rodata.__func__$0 + 0x000000003f423cd0 0xb esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f423cdb 0x1 + .rodata.__func__$1 + 0x000000003f423cdc 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f423ce9 0x3 + .rodata.__func__$2 + 0x000000003f423cec 0xa esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f423cf6 0x2 + .rodata.__func__$3 + 0x000000003f423cf8 0x17 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f423d0f 0x1 + .rodata.__func__$5 + 0x000000003f423d10 0x9 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f423d19 0x3 + .rodata.__func__$6 + 0x000000003f423d1c 0x9 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f423d25 0x3 + .rodata.__func__$7 + 0x000000003f423d28 0xa esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f423d32 0x2 + .rodata.__func__$8 + 0x000000003f423d34 0x13 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f423d47 0x1 + .rodata.__func__$9 + 0x000000003f423d48 0x15 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f423d5d 0x3 + .rodata.__func__$10 + 0x000000003f423d60 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f423d6d 0x3 + .rodata.__func__$11 + 0x000000003f423d70 0x15 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f423d85 0x3 + .rodata.__func__$12 + 0x000000003f423d88 0xb esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f423d93 0x1 + .rodata.raw_input.str1.4 + 0x000000003f423d94 0x75 esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x000000003f423e09 0x3 + .rodata.raw_sendto_if_src.str1.4 + 0x000000003f423e0c 0x4a esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x000000003f423e56 0x2 + .rodata.__func__$0 + 0x000000003f423e58 0x12 esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x000000003f423e6a 0x2 + .rodata.__func__$1 + 0x000000003f423e6c 0xa esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x000000003f423e76 0x2 + .rodata.tcp_remove_listener.str1.4 + 0x000000003f423e78 0x51 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f423ec9 0x3 + .rodata.tcp_listen_closed.str1.4 + 0x000000003f423ecc 0x21 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f423eed 0x3 + .rodata.tcp_free_listen.str1.4 + 0x000000003f423ef0 0x19 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f423f09 0x3 + .rodata.tcp_free.str1.4 + 0x000000003f423f0c 0x11 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f423f1d 0x3 + .rodata.tcp_backlog_delayed.str1.4 + 0x000000003f423f20 0x15 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f423f35 0x3 + .rodata.tcp_update_rcv_ann_wnd.str1.4 + 0x000000003f423f38 0x3e esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f423f76 0x2 + .rodata.tcp_recved.str1.4 + 0x000000003f423f78 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f423f9e 0x2 + .rodata.tcp_seg_copy.str1.4 + 0x000000003f423fa0 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f423fba 0x2 + .rodata.tcp_recv.str1.4 + 0x000000003f423fbc 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f423fe3 0x1 + .rodata.tcp_sent.str1.4 + 0x000000003f423fe4 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f42400b 0x1 + .rodata.tcp_err.str1.4 + 0x000000003f42400c 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f424032 0x2 + .rodata.tcp_poll.str1.4 + 0x000000003f424034 0x1e esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f424052 0x2 + .rodata.tcp_next_iss.str1.4 + 0x000000003f424054 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f42406e 0x2 + .rodata.tcp_eff_send_mss_netif.str1.4 + 0x000000003f424070 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f424097 0x1 + .rodata.tcp_pcb_remove.str1.4 + 0x000000003f424098 0x87 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f42411f 0x1 + .rodata.tcp_abandon.str1.4 + 0x000000003f424120 0x31 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f424151 0x3 + .rodata.tcp_netif_ip_addr_changed_pcblist.str1.4 + 0x000000003f424154 0x34 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_kill_state.str1.4 + 0x000000003f424188 0xe esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f424196 0x2 + .rodata.tcp_close_shutdown.str1.4 + 0x000000003f424198 0x39 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f4241d1 0x3 + .rodata.tcp_slowtmr.str1.4 + 0x000000003f4241d4 0x1ca esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f42439e 0x2 + .rodata.__func__$0 + 0x000000003f4243a0 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f4243c2 0x2 + .rodata.__func__$1 + 0x000000003f4243c4 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f4243db 0x1 + .rodata.__func__$2 + 0x000000003f4243dc 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f4243e9 0x3 + .rodata.__func__$3 + 0x000000003f4243ec 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f4243fb 0x1 + .rodata.__func__$4 + 0x000000003f4243fc 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f424405 0x3 + .rodata.__func__$5 + 0x000000003f424408 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$6 + 0x000000003f424410 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f424419 0x3 + .rodata.__func__$7 + 0x000000003f42441c 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f424425 0x3 + .rodata.__func__$8 + 0x000000003f424428 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f424437 0x1 + .rodata.__func__$9 + 0x000000003f424438 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f424445 0x3 + .rodata.__func__$10 + 0x000000003f424448 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$11 + 0x000000003f424454 0xb esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f42445f 0x1 + .rodata.__func__$12 + 0x000000003f424460 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f424477 0x1 + .rodata.__func__$15 + 0x000000003f424478 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$16 + 0x000000003f424484 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f42449b 0x1 + .rodata.__func__$17 + 0x000000003f42449c 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$18 + 0x000000003f4244ac 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$19 + 0x000000003f4244c0 0x12 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f4244d2 0x2 + .rodata.__func__$20 + 0x000000003f4244d4 0x13 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f4244e7 0x1 + .rodata.__func__$21 + 0x000000003f4244e8 0x15 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f4244fd 0x3 + .rodata.__func__$23 + 0x000000003f424500 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f424509 0x3 + .rodata.tcp_pcb_lists + 0x000000003f42450c 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003f42450c tcp_pcb_lists + .rodata.tcp_persist_backoff + 0x000000003f42451c 0x7 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f424523 0x1 + .rodata.tcp_backoff + 0x000000003f424524 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f424531 0x3 + .rodata.tcp_parseopt.str1.4 + 0x000000003f424534 0x48 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_input_delayed_close.str1.4 + 0x000000003f42457c 0x25 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f4245a1 0x3 + .rodata.tcp_timewait_input.str1.4 + 0x000000003f4245a4 0x20 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_listen_input.str1.4 + 0x000000003f4245c4 0x1e esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f4245e2 0x2 + .rodata.tcp_oos_insert_segment.str1.4 + 0x000000003f4245e4 0x25 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f424609 0x3 + .rodata.tcp_free_acked_segments.str1.4 + 0x000000003f42460c 0x48 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_receive.str1.4 + 0x000000003f424654 0x131 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f424785 0x3 + .rodata.tcp_process.str1.4 + 0x000000003f424788 0x86 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f42480e 0x2 + .rodata.tcp_input.str1.4 + 0x000000003f424810 0x172 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f424982 0x2 + .rodata.__func__$0 + 0x000000003f424984 0x18 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$1 + 0x000000003f42499c 0x17 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f4249b3 0x1 + .rodata.__func__$2 + 0x000000003f4249b4 0x18 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$3 + 0x000000003f4249cc 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$4 + 0x000000003f4249d8 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$5 + 0x000000003f4249e4 0xd esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f4249f1 0x3 + .rodata.__func__$6 + 0x000000003f4249f4 0x11 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f424a05 0x3 + .rodata.__func__$7 + 0x000000003f424a08 0x13 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f424a1b 0x1 + .rodata.__func__$8 + 0x000000003f424a1c 0xa esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f424a26 0x2 + .rodata.tcp_write_checks.str1.4 + 0x000000003f424a28 0xbe esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f424ae6 0x2 + .rodata.tcp_output_segment_busy.str1.4 + 0x000000003f424ae8 0x25 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f424b0d 0x3 + .rodata.tcp_output_fill_options.str1.4 + 0x000000003f424b10 0x3b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f424b4b 0x1 + .rodata.tcp_pbuf_prealloc.str1.4 + 0x000000003f424b4c 0x58 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_create_segment.str1.4 + 0x000000003f424ba4 0x59 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f424bfd 0x3 + .rodata.tcp_output_alloc_header_common.str1.4 + 0x000000003f424c00 0x2e esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f424c2e 0x2 + .rodata.tcp_output_alloc_header.str1.4 + 0x000000003f424c30 0x25 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f424c55 0x3 + .rodata.tcp_output_segment.str1.4 + 0x000000003f424c58 0x62 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f424cba 0x2 + .rodata.tcp_output_control_segment.str1.4 + 0x000000003f424cbc 0x29 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f424ce5 0x3 + .rodata.tcp_write.str1.4 + 0x000000003f424ce8 0xfa esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f424de2 0x2 + .rodata.tcp_split_unsent_seg.str1.4 + 0x000000003f424de4 0x66 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f424e4a 0x2 + .rodata.tcp_enqueue_flags.str1.4 + 0x000000003f424e4c 0x120 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_send_fin.str1.4 + 0x000000003f424f6c 0x1a esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f424f86 0x2 + .rodata.tcp_rexmit_rto_prepare.str1.4 + 0x000000003f424f88 0x24 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_rexmit.str1.4 + 0x000000003f424fac 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_rexmit_fast.str1.4 + 0x000000003f424fc4 0x1d esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f424fe1 0x3 + .rodata.tcp_rst.str1.4 + 0x000000003f424fe4 0x37 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f42501b 0x1 + .rodata.tcp_send_empty_ack.str1.4 + 0x000000003f42501c 0x20 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_output.str1.4 + 0x000000003f42503c 0x57 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f425093 0x1 + .rodata.tcp_rexmit_rto_commit.str1.4 + 0x000000003f425094 0x23 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f4250b7 0x1 + .rodata.tcp_rexmit_rto.str1.4 + 0x000000003f4250b8 0x1c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_keepalive.str1.4 + 0x000000003f4250d4 0x1b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f4250ef 0x1 + .rodata.tcp_zero_window_probe.str1.4 + 0x000000003f4250f0 0x23 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f425113 0x1 + .rodata.__func__$0 + 0x000000003f425114 0x16 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f42512a 0x2 + .rodata.__func__$1 + 0x000000003f42512c 0xe esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f42513a 0x2 + .rodata.__func__$2 + 0x000000003f42513c 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$3 + 0x000000003f425154 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f425167 0x1 + .rodata.__func__$4 + 0x000000003f425168 0x1b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f425183 0x1 + .rodata.__func__$5 + 0x000000003f425184 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$6 + 0x000000003f42519c 0x1f esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f4251bb 0x1 + .rodata.__func__$7 + 0x000000003f4251bc 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$8 + 0x000000003f4251c4 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$9 + 0x000000003f4251d4 0xb esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f4251df 0x1 + .rodata.__func__$10 + 0x000000003f4251e0 0xf esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f4251ef 0x1 + .rodata.__func__$11 + 0x000000003f4251f0 0x16 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f425206 0x2 + .rodata.__func__$12 + 0x000000003f425208 0x17 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f42521f 0x1 + .rodata.__func__$13 + 0x000000003f425220 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$14 + 0x000000003f425238 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f42524b 0x1 + .rodata.__func__$15 + 0x000000003f42524c 0xb esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f425257 0x1 + .rodata.__func__$16 + 0x000000003f425258 0x12 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f42526a 0x2 + .rodata.__func__$17 + 0x000000003f42526c 0xd esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f425279 0x3 + .rodata.__func__$18 + 0x000000003f42527c 0x15 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f425291 0x3 + .rodata.__func__$19 + 0x000000003f425294 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f4252a7 0x1 + .rodata.__func__$20 + 0x000000003f4252a8 0x12 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f4252ba 0x2 + .rodata.__func__$21 + 0x000000003f4252bc 0x11 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f4252cd 0x3 + .rodata.__func__$22 + 0x000000003f4252d0 0xa esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f4252da 0x2 + .rodata.sys_timeout_abs.str1.4 + 0x000000003f4252dc 0x6e esp-idf/lwip/liblwip.a(timeouts.c.obj) + *fill* 0x000000003f42534a 0x2 + .rodata.sys_timeout.str1.4 + 0x000000003f42534c 0x36 esp-idf/lwip/liblwip.a(timeouts.c.obj) + *fill* 0x000000003f425382 0x2 + .rodata.sys_timeouts_sleeptime.str1.4 + 0x000000003f425384 0x12 esp-idf/lwip/liblwip.a(timeouts.c.obj) + *fill* 0x000000003f425396 0x2 + .rodata.__func__$0 + 0x000000003f425398 0x17 esp-idf/lwip/liblwip.a(timeouts.c.obj) + *fill* 0x000000003f4253af 0x1 + .rodata.__func__$1 + 0x000000003f4253b0 0xc esp-idf/lwip/liblwip.a(timeouts.c.obj) + .rodata.__func__$2 + 0x000000003f4253bc 0x10 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .rodata.lwip_cyclic_timers + 0x000000003f4253cc 0x20 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x000000003f4253cc lwip_cyclic_timers + .rodata.udp_input_local_match.str1.4 + 0x000000003f4253ec 0x75 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f425461 0x3 + .rodata.udp_input.str1.4 + 0x000000003f425464 0x4f esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f4254b3 0x1 + .rodata.udp_sendto_if_src.str1.4 + 0x000000003f4254b4 0x2e esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f4254e2 0x2 + .rodata.__func__$0 + 0x000000003f4254e4 0x12 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f4254f6 0x2 + .rodata.__func__$1 + 0x000000003f4254f8 0x16 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f42550e 0x2 + .rodata.__func__$2 + 0x000000003f425510 0xa esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f42551a 0x2 + .rodata.dhcp_option_short.str1.4 + 0x000000003f42551c 0x6b esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f425587 0x1 + .rodata.dhcp_option.str1.4 + 0x000000003f425588 0x42 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f4255ca 0x2 + .rodata.dhcp_option_byte.str1.4 + 0x000000003f4255cc 0x35 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f425601 0x3 + .rodata.dhcp_option_long.str1.4 + 0x000000003f425604 0x3a esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f42563e 0x2 + .rodata.dhcp_create_msg.str1.4 + 0x000000003f425640 0x40 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_option_hostname.str1.4 + 0x000000003f425680 0x1c esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_dec_pcb_refcount.str1.4 + 0x000000003f42569c 0x24 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_inc_pcb_refcount.str1.4 + 0x000000003f4256c0 0x25 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f4256e5 0x3 + .rodata.dhcp_parse_reply.str1.4 + 0x000000003f4256e8 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f4256f9 0x3 + .rodata.dhcp_recv.str1.4 + 0x000000003f4256fc 0x1c esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_set_struct.str1.4 + 0x000000003f425718 0x34 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x44 (size before relaxing) + .rodata.dhcp_network_changed.str1.4 + 0x000000003f42574c 0x14 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$0 + 0x000000003f425760 0x15 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f425775 0x3 + .rodata.__func__$1 + 0x000000003f425778 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f425789 0x3 + .rodata.__func__$2 + 0x000000003f42578c 0xa esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f425796 0x2 + .rodata.__func__$3 + 0x000000003f425798 0x16 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f4257ae 0x2 + .rodata.__func__$4 + 0x000000003f4257b0 0x16 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f4257c6 0x2 + .rodata.__func__$5 + 0x000000003f4257c8 0xd esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f4257d5 0x3 + .rodata.__func__$6 + 0x000000003f4257d8 0x10 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$7 + 0x000000003f4257e8 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f4257f9 0x3 + .rodata.__func__$8 + 0x000000003f4257fc 0x15 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f425811 0x3 + .rodata.__func__$9 + 0x000000003f425814 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f425825 0x3 + .rodata.__func__$10 + 0x000000003f425828 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$11 + 0x000000003f425834 0x12 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f425846 0x2 + .rodata.__func__$13 + 0x000000003f425848 0x10 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_discover_request_options + 0x000000003f425858 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.free_etharp_q.str1.4 + 0x000000003f42585c 0x4d esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f4258a9 0x3 + .rodata.etharp_find_entry.str1.4 + 0x000000003f4258ac 0x55 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f425901 0x3 + .rodata.etharp_update_arp_entry.str1.4 + 0x000000003f425904 0x24 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_raw.str1.4 + 0x000000003f425928 0x75 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x85 (size before relaxing) + *fill* 0x000000003f42599d 0x3 + .rodata.etharp_get_entry.str1.4 + 0x000000003f4259a0 0x20 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_output_to_arp_index.str1.4 + 0x000000003f4259c0 0x30 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_query.str1.4 + 0x000000003f4259f0 0x52 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f425a42 0x2 + .rodata.__func__$0 + 0x000000003f425a44 0xd esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f425a51 0x3 + .rodata.__func__$1 + 0x000000003f425a54 0x1b esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f425a6f 0x1 + .rodata.__func__$2 + 0x000000003f425a70 0xe esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f425a7e 0x2 + .rodata.__func__$3 + 0x000000003f425a80 0xb esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f425a8b 0x1 + .rodata.__func__$4 + 0x000000003f425a8c 0x18 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$6 + 0x000000003f425aa4 0x12 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f425ab6 0x2 + .rodata.__func__$8 + 0x000000003f425ab8 0xe esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f425ac6 0x2 + .rodata.icmp_send_response.str1.4 + 0x000000003f425ac8 0x5b esp-idf/lwip/liblwip.a(icmp.c.obj) + *fill* 0x000000003f425b23 0x1 + .rodata.icmp_input.str1.4 + 0x000000003f425b24 0x6a esp-idf/lwip/liblwip.a(icmp.c.obj) + *fill* 0x000000003f425b8e 0x2 + .rodata.__func__$0 + 0x000000003f425b90 0x13 esp-idf/lwip/liblwip.a(icmp.c.obj) + *fill* 0x000000003f425ba3 0x1 + .rodata.__func__$1 + 0x000000003f425ba4 0xb esp-idf/lwip/liblwip.a(icmp.c.obj) + *fill* 0x000000003f425baf 0x1 + .rodata.igmp_send.str1.4 + 0x000000003f425bb0 0x6b esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000003f425c1b 0x1 + .rodata.igmp_lookup_group.str1.4 + 0x000000003f425c1c 0x75 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000003f425c91 0x3 + .rodata.__func__$0 + 0x000000003f425c94 0xa esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000003f425c9e 0x2 + .rodata.__func__$1 + 0x000000003f425ca0 0x12 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000003f425cb2 0x2 + .rodata.ip4_output_if_opt_src.str1.4 + 0x000000003f425cb4 0x69 esp-idf/lwip/liblwip.a(ip4.c.obj) + *fill* 0x000000003f425d1d 0x3 + .rodata.__func__$1 + 0x000000003f425d20 0x16 esp-idf/lwip/liblwip.a(ip4.c.obj) + *fill* 0x000000003f425d36 0x2 + .rodata.ip_addr_broadcast + 0x000000003f425d38 0x18 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x000000003f425d38 ip_addr_broadcast + .rodata.ip_addr_any + 0x000000003f425d50 0x18 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x000000003f425d50 ip_addr_any + .rodata.ip4_frag.str1.4 + 0x000000003f425d68 0x53 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + *fill* 0x000000003f425dbb 0x1 + .rodata.__func__$0 + 0x000000003f425dbc 0x9 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + *fill* 0x000000003f425dc5 0x3 + .rodata.icmp6_send_response_with_addrs_and_netif.str1.4 + 0x000000003f425dc8 0x5c esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.icmp6_send_response.str1.4 + 0x000000003f425e24 0x24 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.__func__$1 + 0x000000003f425e48 0x29 esp-idf/lwip/liblwip.a(icmp6.c.obj) + *fill* 0x000000003f425e71 0x3 + .rodata.__func__$2 + 0x000000003f425e74 0x14 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.ip6_output_if_src.str1.4 + 0x000000003f425e88 0x5e esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x6a (size before relaxing) + *fill* 0x000000003f425ee6 0x2 + .rodata.__func__$1 + 0x000000003f425ee8 0x12 esp-idf/lwip/liblwip.a(ip6.c.obj) + *fill* 0x000000003f425efa 0x2 + .rodata.ip6_addr_any + 0x000000003f425efc 0x18 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + 0x000000003f425efc ip6_addr_any + .rodata.ip6_frag.str1.4 + 0x000000003f425f14 0x4b esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x6c (size before relaxing) + *fill* 0x000000003f425f5f 0x1 + .rodata.__func__$0 + 0x000000003f425f60 0x9 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + *fill* 0x000000003f425f69 0x3 + .rodata.nd6_process_autoconfig_prefix.str1.4 + 0x000000003f425f6c 0x42 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003f425fae 0x2 + .rodata.nd6_free_q.str1.4 + 0x000000003f425fb0 0xd esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x29 (size before relaxing) + *fill* 0x000000003f425fbd 0x3 + .rodata.nd6_send_na.str1.4 + 0x000000003f425fc0 0x1b esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.nd6_get_next_hop_entry.str1.4 + 0x000000003f425fdb 0xe esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003f425fdb 0x1 + .rodata.nd6_find_route.str1.4 + 0x000000003f425fdc 0x2b esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003f426007 0x1 + .rodata.__func__$0 + 0x000000003f426008 0x17 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003f42601f 0x1 + .rodata.__func__$2 + 0x000000003f426020 0xf esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003f42602f 0x1 + .rodata.__func__$3 + 0x000000003f426030 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.__func__$4 + 0x000000003f426038 0xb esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003f426043 0x1 + .rodata.__func__$5 + 0x000000003f426044 0x1e esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003f426062 0x2 + .rodata.__func__$6 + 0x000000003f426064 0xc esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.__func__$7 + 0x000000003f426070 0xc esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.ethernet_output.str1.4 + 0x000000003f42607c 0x63 esp-idf/lwip/liblwip.a(ethernet.c.obj) + *fill* 0x000000003f4260df 0x1 + .rodata.__func__$0 + 0x000000003f4260e0 0x10 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .rodata.ethzero + 0x000000003f4260f0 0x6 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x000000003f4260f0 ethzero + *fill* 0x000000003f4260f6 0x2 + .rodata.ethbroadcast + 0x000000003f4260f8 0x6 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x000000003f4260f8 ethbroadcast + *fill* 0x000000003f4260fe 0x2 + .rodata.sys_mutex_lock.str1.4 + 0x000000003f426100 0x4a esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f42614a 0x2 + .rodata.sys_mutex_unlock.str1.4 + 0x000000003f42614c 0x19 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f426165 0x3 + .rodata.sys_sem_new.str1.4 + 0x000000003f426168 0x49 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f4261b1 0x3 + .rodata.sys_sem_signal.str1.4 + 0x000000003f4261b4 0x22 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f4261d6 0x2 + .rodata.sys_arch_sem_wait.str1.4 + 0x000000003f4261d8 0x18 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_mbox_post.str1.4 + 0x000000003f4261f0 0x11 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f426201 0x3 + .rodata.sys_arch_mbox_fetch.str1.4 + 0x000000003f426204 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f426216 0x2 + .rodata.sys_mbox_free.str1.4 + 0x000000003f426218 0x16 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f42622e 0x2 + .rodata.sys_init.str1.4 + 0x000000003f426230 0x50 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_thread_sem_init.str1.4 + 0x000000003f426280 0x37 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f4262b7 0x1 + .rodata.sys_thread_tcpip.str1.4 + 0x000000003f4262b8 0x2d esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f4262e5 0x3 + .rodata.__func__$0 + 0x000000003f4262e8 0x11 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f4262f9 0x3 + .rodata.__func__$2 + 0x000000003f4262fc 0xe esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f42630a 0x2 + .rodata.__func__$3 + 0x000000003f42630c 0x17 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f426323 0x1 + .rodata.__func__$4 + 0x000000003f426324 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$6 + 0x000000003f426338 0xe esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f426346 0x2 + .rodata.__func__$7 + 0x000000003f426348 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f42635a 0x2 + .rodata.__func__$8 + 0x000000003f42635c 0xf esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f42636b 0x1 + .rodata.__func__$9 + 0x000000003f42636c 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$10 + 0x000000003f426378 0x11 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f426389 0x3 + .rodata.__func__$11 + 0x000000003f42638c 0xf esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f42639b 0x1 + .rodata.esp_vfs_lwip_sockets_register.str1.4 + 0x000000003f42639c 0x71 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + *fill* 0x000000003f42640d 0x3 + .rodata.__func__$0 + 0x000000003f426410 0x1e esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + *fill* 0x000000003f42642e 0x2 + .rodata.kill_oldest_dhcps_pool.str1.4 + 0x000000003f426430 0x57 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x000000003f426487 0x1 + .rodata.dhcps_start.str1.4 + 0x000000003f426488 0x40 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .rodata.__func__$0 + 0x000000003f4264c8 0x17 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x000000003f4264df 0x1 + .rodata.magic_cookie + 0x000000003f4264e0 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .rodata.netconn_new_with_proto_and_callback.str1.4 + 0x000000003f4264e4 0x89 esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f42656d 0x3 + .rodata.netconn_write_vectors_partly.str1.4 + 0x000000003f426570 0x23 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_recv_data.str1.4 + 0x000000003f426593 0xc esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f426593 0x1 + .rodata.__func__$1 + 0x000000003f426594 0x1d esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f4265b1 0x3 + .rodata.__func__$3 + 0x000000003f4265b4 0x12 esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f4265c6 0x2 + .rodata.lwip_netconn_err_to_msg.str1.4 + 0x000000003f4265c8 0x3c esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.err_tcp.str1.4 + 0x000000003f426604 0x62 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f426666 0x2 + .rodata.lwip_netconn_do_writemore.str1.4 + 0x000000003f426668 0xcb esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f426733 0x1 + .rodata.lwip_netconn_do_close_internal.str1.4 + 0x000000003f426734 0x8b esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f4267bf 0x1 + .rodata.lwip_netconn_is_err_msg.str1.4 + 0x000000003f4267c0 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_free.str1.4 + 0x000000003f4267cc 0xa8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_drain.str1.4 + 0x000000003f426874 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f42688a 0x2 + .rodata.lwip_netconn_do_delconn.str1.4 + 0x000000003f42688c 0x4f esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f4268db 0x1 + .rodata.lwip_netconn_do_write.str1.4 + 0x000000003f4268dc 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_getaddr.str1.4 + 0x000000003f4268f0 0x15 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f426905 0x3 + .rodata.lwip_netconn_do_close.str1.4 + 0x000000003f426908 0x24 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$0 + 0x000000003f42692c 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f426942 0x2 + .rodata.__func__$1 + 0x000000003f426944 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$2 + 0x000000003f42695c 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f426972 0x2 + .rodata.__func__$6 + 0x000000003f426974 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$7 + 0x000000003f42698c 0xe esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f42699a 0x2 + .rodata.__func__$8 + 0x000000003f42699c 0xd esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f4269a9 0x3 + .rodata.__func__$11 + 0x000000003f4269ac 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f4269b5 0x3 + .rodata.__func__$12 + 0x000000003f4269b8 0x1f esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f4269d7 0x1 + .rodata.__func__$13 + 0x000000003f4269d8 0x1a esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f4269f2 0x2 + .rodata.__func__$14 + 0x000000003f4269f4 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f4269fd 0x3 + .rodata.__func__$15 + 0x000000003f426a00 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$16 + 0x000000003f426a18 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$19 + 0x000000003f426a20 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_closed + 0x000000003f426a38 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003f426a38 netconn_closed + .rodata.netconn_reset + 0x000000003f426a39 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003f426a39 netconn_reset + .rodata.netconn_aborted + 0x000000003f426a3a 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003f426a3a netconn_aborted + .rodata.netconn_deleted + 0x000000003f426a3b 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003f426a3b netconn_deleted + .rodata.err_to_errno_table + 0x000000003f426a3c 0x44 esp-idf/lwip/liblwip.a(err.c.obj) + .rodata.netbuf_alloc.str1.4 + 0x000000003f426a80 0x4f esp-idf/lwip/liblwip.a(netbuf.c.obj) + *fill* 0x000000003f426acf 0x1 + .rodata.__func__$0 + 0x000000003f426ad0 0xd esp-idf/lwip/liblwip.a(netbuf.c.obj) + *fill* 0x000000003f426add 0x3 + .rodata.esp_netif_action_connected.str1.4 + 0x000000003f426ae0 0xba esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + *fill* 0x000000003f426b9a 0x2 + .rodata.esp_netif_action_got_ip.str1.4 + 0x000000003f426b9c 0x4f esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + *fill* 0x000000003f426beb 0x1 + .rodata.__FUNCTION__$0 + 0x000000003f426bec 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + *fill* 0x000000003f426c07 0x1 + .rodata.str1.4 + 0x000000003f426c08 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + 0x30 (size before relaxing) + .rodata._g_esp_netif_inherent_sta_config + 0x000000003f426c28 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + 0x000000003f426c28 _g_esp_netif_inherent_sta_config + .rodata.s_wifi_netif_config_sta + 0x000000003f426c50 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .rodata.wlanif_init.str1.4 + 0x000000003f426c58 0x3a esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x4a (size before relaxing) + *fill* 0x000000003f426c92 0x2 + .rodata.__func__$0 + 0x000000003f426c94 0xc esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .rodata 0x000000003f426ca0 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + *fill* 0x000000003f426cc1 0x3 + .rodata.wpa3_hostap_auth_init.str1.4 + 0x000000003f426cc4 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + *fill* 0x000000003f426cd9 0x3 + .rodata.wpa_group_init_gmk_and_counter.str1.4 + 0x000000003f426cdc 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000003f426ce9 0x3 + .rodata.wpa_gtk_update.str1.4 + 0x000000003f426cec 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000003f426d13 0x1 + .rodata.wpa_group_config_group_keys.str1.4 + 0x000000003f426d14 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000003f426d1b 0x1 + .rodata.wpa_derive_ptk.str1.4 + 0x000000003f426d1c 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000003f426d33 0x1 + .rodata.sae_check_big_sync.str1.4 + 0x000000003f426d34 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .rodata.sae_accept_sta.str1.4 + 0x000000003f426d4c 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + *fill* 0x000000003f426d5b 0x1 + .rodata.sae_sm_step.str1.4 + 0x000000003f426d5c 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + *fill* 0x000000003f426d75 0x3 + .rodata.handle_auth_sae.str1.4 + 0x000000003f426d78 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x70 (size before relaxing) + .rodata.sswu.str1.4 + 0x000000003f426de4 0x11c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata 0x000000003f426f00 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_test_pwd_seed_ffc.str1.4 + 0x000000003f426f20 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_derive_pt_ecc.str1.4 + 0x000000003f426f38 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x000000003f426f6e 0x2 + .rodata.sae_derive_pt_ffc.str1.4 + 0x000000003f426f70 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_derive_keys.str1.4 + 0x000000003f426f8c 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_derive_pwe_from_pt_ecc.str1.4 + 0x000000003f426fa8 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_derive_pwe_from_pt_ffc.str1.4 + 0x000000003f426fc4 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.dragonfly_get_rand_1_to_p_1.str1.4 + 0x000000003f426fcd 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x2 (size before relaxing) + *fill* 0x000000003f426fcd 0x3 + .rodata.rsn_pmkid.str1.4 + 0x000000003f426fd0 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x000000003f426fd9 0x3 + .rodata 0x000000003f426fdc 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .rodata.hmac_sha256_kdf.str1.4 + 0x000000003f426fe8 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .rodata.dh_groups + 0x000000003f426fe8 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .rodata.dh_group5_order + 0x000000003f427008 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .rodata.dh_group5_prime + 0x000000003f4270c8 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .rodata.dh_group5_generator + 0x000000003f427188 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .rodata.wpa_derive_ptk.str1.4 + 0x000000003f427189 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + *fill* 0x000000003f427189 0x3 + .rodata.owe_process_assoc_resp.str1.4 + 0x000000003f42718c 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + *fill* 0x000000003f42719f 0x1 + .rodata.wpa_gen_wpa_ie_rsn.str1.4 + 0x000000003f4271a0 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x000000003f4271fe 0x2 + .rodata.__func__$1 + 0x000000003f427200 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x000000003f427213 0x1 + .rodata.add_char.str1.4 + 0x000000003f427214 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + *fill* 0x000000003f427235 0x3 + .rodata.d_perm_table + 0x000000003f427238 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .rodata.d_mult_table + 0x000000003f427258 0x400 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .rodata.__func__$0 + 0x000000003f427658 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + *fill* 0x000000003f427666 0x2 + .rodata.__func__$1 + 0x000000003f427668 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + *fill* 0x000000003f427686 0x2 + .rodata.__func__$2 + 0x000000003f427688 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + *fill* 0x000000003f42769e 0x2 + .rodata.zero 0x000000003f4276a0 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .rodata.rsa_debug.str1.4 + 0x000000003f4276b0 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x000000003f4276be 0x2 + .rodata.eckey_debug.str1.4 + 0x000000003f4276c0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .rodata.str1.4 + 0x000000003f4276c8 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x20 (size before relaxing) + *fill* 0x000000003f4276e3 0x1 + .rodata.mbedtls_ecdsa_info + 0x000000003f4276e4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x000000003f4276e4 mbedtls_ecdsa_info + .rodata.mbedtls_eckeydh_info + 0x000000003f427724 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x000000003f427724 mbedtls_eckeydh_info + .rodata.mbedtls_eckey_info + 0x000000003f427764 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x000000003f427764 mbedtls_eckey_info + .rodata.mbedtls_rsa_info + 0x000000003f4277a4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x000000003f4277a4 mbedtls_rsa_info + .rodata.pk_group_from_specified.str1.4 + 0x000000003f4277e4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.mbedtls_pk_parse_public_key.str1.4 + 0x000000003f4277ec 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + *fill* 0x000000003f427863 0x1 + .rodata 0x000000003f427864 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + *fill* 0x000000003f427885 0x3 + .rodata.mbedtls_rsa_deduce_primes.str1.4 + 0x000000003f427888 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + *fill* 0x000000003f4278bf 0x1 + .rodata.hash_table + 0x000000003f4278c0 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .rodata.mbedtls_pem_read_buffer.str1.4 + 0x000000003f427914 0x6f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .rodata.str1.1 + 0x000000003f427983 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0xd (size before relaxing) + .rodata 0x000000003f427988 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + 0x000000003f427988 Xthal_intlevel + .rodata._ZSt7nothrow + 0x000000003f4279a8 0x1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + 0x000000003f4279a8 _ZSt7nothrow + .rodata._ZTSSt9exception + 0x000000003f4279a9 0xd /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + 0x000000003f4279a9 _ZTSSt9exception + *fill* 0x000000003f4279b6 0x2 + .rodata._ZTISt9exception + 0x000000003f4279b8 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + 0x000000003f4279b8 _ZTISt9exception + .rodata._ZTSSt9bad_alloc + 0x000000003f4279c0 0xd /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + 0x000000003f4279c0 _ZTSSt9bad_alloc + *fill* 0x000000003f4279cd 0x3 + .rodata._ZTISt9bad_alloc + 0x000000003f4279d0 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + 0x000000003f4279d0 _ZTISt9bad_alloc + .rodata._ZTVN10__cxxabiv120__si_class_type_infoE + 0x000000003f4279dc 0x2c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x000000003f4279dc _ZTVN10__cxxabiv120__si_class_type_infoE + .rodata._ZNKSt9bad_alloc4whatEv.str1.1 + 0x000000003f427a08 0xf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + *fill* 0x000000003f427a17 0x1 + .rodata._ZTVSt9bad_alloc + 0x000000003f427a18 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + 0x000000003f427a18 _ZTVSt9bad_alloc + .rodata._ZTVN10__cxxabiv117__class_type_infoE + 0x000000003f427a2c 0x2c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x000000003f427a2c _ZTVN10__cxxabiv117__class_type_infoE + .rodata._ZNK9__gnu_cxx24__concurrence_lock_error4whatEv.str1.1 + 0x000000003f427a58 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .rodata._ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv.str1.1 + 0x000000003f427a7c 0x26 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .rodata._ZTSN9__gnu_cxx24__concurrence_lock_errorE + 0x000000003f427aa2 0x27 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x000000003f427aa2 _ZTSN9__gnu_cxx24__concurrence_lock_errorE + *fill* 0x000000003f427ac9 0x3 + .rodata._ZTIN9__gnu_cxx24__concurrence_lock_errorE + 0x000000003f427acc 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x000000003f427acc _ZTIN9__gnu_cxx24__concurrence_lock_errorE + .rodata._ZTSN9__gnu_cxx26__concurrence_unlock_errorE + 0x000000003f427ad8 0x29 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x000000003f427ad8 _ZTSN9__gnu_cxx26__concurrence_unlock_errorE + *fill* 0x000000003f427b01 0x3 + .rodata._ZTIN9__gnu_cxx26__concurrence_unlock_errorE + 0x000000003f427b04 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x000000003f427b04 _ZTIN9__gnu_cxx26__concurrence_unlock_errorE + .rodata._ZTVN9__gnu_cxx24__concurrence_lock_errorE + 0x000000003f427b10 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x000000003f427b10 _ZTVN9__gnu_cxx24__concurrence_lock_errorE + .rodata._ZTVN9__gnu_cxx26__concurrence_unlock_errorE + 0x000000003f427b24 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x000000003f427b24 _ZTVN9__gnu_cxx26__concurrence_unlock_errorE + .rodata.str1.1 + 0x000000003f427b38 0x2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .rodata.str1.1 + 0x000000003f427b38 0x26 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + 0xd (size before relaxing) + .rodata 0x000000003f427b38 0x68 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .rodata 0x000000003f427ba0 0x23c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .rodata.str1.1 + 0x000000003f427ddc 0x32 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + 0x34 (size before relaxing) + .rodata.str1.1 + 0x000000003f427e0e 0x5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + 0x6 (size before relaxing) + *fill* 0x000000003f427e13 0x1 + .rodata 0x000000003f427e14 0x1f2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + *fill* 0x000000003f428006 0x2 + .rodata 0x000000003f428008 0x23c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .rodata.str1.1 + 0x000000003f428244 0x34 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .rodata.str1.1 + 0x000000003f428244 0x8b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + 0x8d (size before relaxing) + .rodata.str1.1 + 0x000000003f4282cf 0x5e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + 0x6f (size before relaxing) + .rodata.str1.1 + 0x000000003f42832d 0x2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lnumeric.o) + 0x3 (size before relaxing) + *fill* 0x000000003f42832f 0x1 + .rodata 0x000000003f428330 0xe /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lnumeric.o) + 0x000000003f428330 _C_numeric_locale + .rodata.str1.1 + 0x000000003f42833e 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + 0xb (size before relaxing) + *fill* 0x000000003f428346 0x2 + .rodata 0x000000003f428348 0x16c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + 0x000000003f428348 __default_global_locale + .rodata.str1.1 + 0x000000003f4284b4 0x1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .rodata.str1.1 + 0x000000003f4284b4 0x57 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + 0x7f (size before relaxing) + *fill* 0x000000003f42850b 0x5 + .rodata 0x000000003f428510 0x128 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + 0x000000003f428520 __mprec_tinytens + 0x000000003f428548 __mprec_bigtens + 0x000000003f428570 __mprec_tens + .rodata 0x000000003f428638 0x414 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + 0x000000003f428874 __action_table + 0x000000003f4288e0 __state_table + 0x000000003f42894c __chclass + .rodata.str1.1 + 0x000000003f428a4c 0x22 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .rodata 0x000000003f428a4c 0x13e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + *fill* 0x000000003f428b8a 0x2 + .rodata 0x000000003f428b8c 0x23c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .rodata.str1.1 + 0x000000003f428dc8 0x22 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + *(.rodata_wlog_error .rodata_wlog_error.*) + .rodata_wlog_error.39 + 0x000000003f428dc8 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.38 + 0x000000003f428deb 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.37 + 0x000000003f428e0a 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.21 + 0x000000003f428e2e 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.18 + 0x000000003f428e4f 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.16 + 0x000000003f428e70 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.11 + 0x000000003f428e8a 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.8 + 0x000000003f428eae 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.9 + 0x000000003f428ec9 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_error.12 + 0x000000003f428ee5 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.11 + 0x000000003f428f13 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.10 + 0x000000003f428f3a 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.9 + 0x000000003f428f4e 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.8 + 0x000000003f428f5b 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.7 + 0x000000003f428f89 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.6 + 0x000000003f428fb0 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.5 + 0x000000003f428fc4 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.4 + 0x000000003f428fd1 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.3 + 0x000000003f428ff8 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.2 + 0x000000003f428fff 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.40 + 0x000000003f429006 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.31 + 0x000000003f42900d 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.27 + 0x000000003f429025 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.25 + 0x000000003f42902c 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.24 + 0x000000003f429049 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.20 + 0x000000003f429066 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.18 + 0x000000003f42906d 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.16 + 0x000000003f429074 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.12 + 0x000000003f42907b 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.10 + 0x000000003f429082 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.9 + 0x000000003f429089 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.8 + 0x000000003f429090 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.67 + 0x000000003f429097 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.65 + 0x000000003f42909e 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.63 + 0x000000003f4290a5 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.62 + 0x000000003f4290ac 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.61 + 0x000000003f4290b3 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.60 + 0x000000003f4290ba 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.59 + 0x000000003f4290c1 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.58 + 0x000000003f4290c8 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.57 + 0x000000003f4290cf 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.55 + 0x000000003f4290d6 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.54 + 0x000000003f4290dd 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.51 + 0x000000003f4290e4 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.46 + 0x000000003f4290eb 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.44 + 0x000000003f4290f2 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.43 + 0x000000003f4290f9 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.42 + 0x000000003f429100 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.41 + 0x000000003f429107 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.38 + 0x000000003f42910e 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.36 + 0x000000003f429115 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.35 + 0x000000003f42911c 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.34 + 0x000000003f429132 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.32 + 0x000000003f429139 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.30 + 0x000000003f429140 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.28 + 0x000000003f429147 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.26 + 0x000000003f42914e 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.25 + 0x000000003f429165 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.22 + 0x000000003f429179 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.17 + 0x000000003f429180 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.16 + 0x000000003f4291c8 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.15 + 0x000000003f4291f3 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.14 + 0x000000003f42921b 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.13 + 0x000000003f42923f 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.12 + 0x000000003f429261 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.11 + 0x000000003f429284 0x64 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.10 + 0x000000003f4292e8 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.9 + 0x000000003f42930b 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.8 + 0x000000003f42932f 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.6 + 0x000000003f42934c 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.5 + 0x000000003f429353 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.3 + 0x000000003f42935a 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.8 + 0x000000003f429361 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_error.7 + 0x000000003f429368 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_error.3 + 0x000000003f429388 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_error.121 + 0x000000003f42938f 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.108 + 0x000000003f4293aa 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.107 + 0x000000003f4293c1 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.106 + 0x000000003f4293eb 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.101 + 0x000000003f429409 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.100 + 0x000000003f42941c 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.99 + 0x000000003f429457 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.91 + 0x000000003f42945e 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.61 + 0x000000003f42946e 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.54 + 0x000000003f42948f 0x2d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.53 + 0x000000003f4294bc 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.52 + 0x000000003f4294cf 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.51 + 0x000000003f4294e5 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.50 + 0x000000003f429514 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.49 + 0x000000003f429529 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.48 + 0x000000003f429552 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.47 + 0x000000003f42957a 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.46 + 0x000000003f4295a3 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.45 + 0x000000003f4295cb 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.44 + 0x000000003f429613 0x46 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.43 + 0x000000003f429659 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.41 + 0x000000003f42967d 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.40 + 0x000000003f429684 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.38 + 0x000000003f42968b 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.37 + 0x000000003f429692 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.36 + 0x000000003f429699 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.34 + 0x000000003f4296a0 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.24 + 0x000000003f4296a7 0x31 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.16 + 0x000000003f4296d8 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.8 + 0x000000003f4296f8 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.7 + 0x000000003f429708 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.6 + 0x000000003f429717 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.18 + 0x000000003f429725 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.11 + 0x000000003f42974c 0x35 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.8 + 0x000000003f429781 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.16 + 0x000000003f429788 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_error.5 + 0x000000003f4297a1 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_error.3 + 0x000000003f4297c2 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_error.2 + 0x000000003f4297dc 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_error.49 + 0x000000003f4297fa 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.47 + 0x000000003f429801 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.34 + 0x000000003f429808 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.32 + 0x000000003f42980f 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.31 + 0x000000003f429816 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.30 + 0x000000003f42981d 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.28 + 0x000000003f429824 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.24 + 0x000000003f42982b 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.22 + 0x000000003f429832 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.21 + 0x000000003f429839 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.19 + 0x000000003f429840 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.18 + 0x000000003f429847 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.15 + 0x000000003f42984e 0x40 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.14 + 0x000000003f42988e 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.11 + 0x000000003f429895 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.10 + 0x000000003f42989c 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.9 + 0x000000003f4298a3 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.8 + 0x000000003f4298aa 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.4 + 0x000000003f4298b1 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .rodata_wlog_error.3 + 0x000000003f4298b8 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .rodata_wlog_error.2 + 0x000000003f4298d3 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .rodata_wlog_error.68 + 0x000000003f4298da 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.54 + 0x000000003f4298e1 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.53 + 0x000000003f4298f7 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.51 + 0x000000003f42990d 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.50 + 0x000000003f429923 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.48 + 0x000000003f429955 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.42 + 0x000000003f429975 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.10 + 0x000000003f42997c 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.80 + 0x000000003f429983 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.78 + 0x000000003f4299aa 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.76 + 0x000000003f4299bd 0x5a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.75 + 0x000000003f429a17 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.59 + 0x000000003f429a1e 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.48 + 0x000000003f429a2c 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.42 + 0x000000003f429a4d 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.8 + 0x000000003f429a54 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_error.7 + 0x000000003f429a5b 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_error.4 + 0x000000003f429a62 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_error.28 + 0x000000003f429a90 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_error.27 + 0x000000003f429aad 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_error.26 + 0x000000003f429ac9 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_error.25 + 0x000000003f429aec 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_error.13 + 0x000000003f429b12 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_error.8 + 0x000000003f429b19 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_error.7 + 0x000000003f429b2e 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_error.94 + 0x000000003f429b3e 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.91 + 0x000000003f429b45 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.90 + 0x000000003f429b4c 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.88 + 0x000000003f429b53 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.62 + 0x000000003f429b5a 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.55 + 0x000000003f429b71 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.54 + 0x000000003f429b78 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.18 + 0x000000003f429b92 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.12 + 0x000000003f429bab 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.2 + 0x000000003f429bc8 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .rodata_wlog_error.5 + 0x000000003f429bcf 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .rodata_wlog_error.4 + 0x000000003f429bec 0x71 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .rodata_wlog_error.3 + 0x000000003f429c5d 0x4e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .rodata_wlog_error.2 + 0x000000003f429cab 0x57 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .rodata_wlog_error.8 + 0x000000003f429d02 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_error.6 + 0x000000003f429d1d 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_error.4 + 0x000000003f429d3c 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_error.10 + 0x000000003f429d63 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .rodata_wlog_error.56 + 0x000000003f429d7d 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.54 + 0x000000003f429d87 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.53 + 0x000000003f429d91 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.52 + 0x000000003f429d9b 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.48 + 0x000000003f429da5 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.47 + 0x000000003f429daf 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.45 + 0x000000003f429db9 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.44 + 0x000000003f429dc3 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.43 + 0x000000003f429dcd 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.42 + 0x000000003f429dd7 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.41 + 0x000000003f429de1 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.40 + 0x000000003f429deb 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.39 + 0x000000003f429df5 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.37 + 0x000000003f429dff 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.36 + 0x000000003f429e09 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.35 + 0x000000003f429e13 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.33 + 0x000000003f429e1d 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.28 + 0x000000003f429e27 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.27 + 0x000000003f429e31 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.26 + 0x000000003f429e3b 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.24 + 0x000000003f429e45 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.23 + 0x000000003f429e4f 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.22 + 0x000000003f429e59 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.21 + 0x000000003f429e63 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.20 + 0x000000003f429e6d 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.18 + 0x000000003f429e77 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.14 + 0x000000003f429e81 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.55 + 0x000000003f429e8b 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.47 + 0x000000003f429e92 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.46 + 0x000000003f429eba 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.45 + 0x000000003f429ee1 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.44 + 0x000000003f429f0a 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.39 + 0x000000003f429f33 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.37 + 0x000000003f429f3a 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.35 + 0x000000003f429f41 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.33 + 0x000000003f429f48 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.27 + 0x000000003f429f4f 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.17 + 0x000000003f429f6e 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.15 + 0x000000003f429f75 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.11 + 0x000000003f429f7c 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.9 + 0x000000003f429f8c 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.26 + 0x000000003f429f93 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.24 + 0x000000003f429fb3 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.20 + 0x000000003f429fc9 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.17 + 0x000000003f429fe4 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.16 + 0x000000003f429fee 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.15 + 0x000000003f42a013 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.14 + 0x000000003f42a01d 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.13 + 0x000000003f42a02a 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.12 + 0x000000003f42a034 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.5 + 0x000000003f42a03e 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.4 + 0x000000003f42a06a 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.3 + 0x000000003f42a096 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.51 + 0x000000003f42a0c2 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_error.50 + 0x000000003f42a0cc 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_error.49 + 0x000000003f42a0ee 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_error.40 + 0x000000003f42a0f8 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_error.36 + 0x000000003f42a124 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_error.33 + 0x000000003f42a153 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_error.32 + 0x000000003f42a15d 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_error.30 + 0x000000003f42a167 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_error.20 + 0x000000003f42a171 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + *(.rodata_wlog_info .rodata_wlog_info.*) + .rodata_wlog_info.11 + 0x000000003f42a18b 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_info.10 + 0x000000003f42a1bd 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_info.8 + 0x000000003f42a1e5 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_info.7 + 0x000000003f42a210 0x54 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_info.6 + 0x000000003f42a264 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_info.5 + 0x000000003f42a292 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_info.4 + 0x000000003f42a2bd 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_info.2 + 0x000000003f42a2c9 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .rodata_wlog_info.48 + 0x000000003f42a2ea 0x44 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.46 + 0x000000003f42a32e 0x4d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.26 + 0x000000003f42a37b 0x33 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.23 + 0x000000003f42a3ae 0x3e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.22 + 0x000000003f42a3ec 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.19 + 0x000000003f42a404 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.50 + 0x000000003f42a41c 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_info.49 + 0x000000003f42a448 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_info.47 + 0x000000003f42a483 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_info.28 + 0x000000003f42a4a5 0x35 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_info.59 + 0x000000003f42a4da 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.58 + 0x000000003f42a4f4 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.57 + 0x000000003f42a509 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.56 + 0x000000003f42a52c 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.39 + 0x000000003f42a546 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.2 + 0x000000003f42a550 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .rodata_wlog_info.58 + 0x000000003f42a573 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.57 + 0x000000003f42a590 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.13 + 0x000000003f42a5a5 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.88 + 0x000000003f42a5b2 0x43 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.86 + 0x000000003f42a5f5 0x40 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.82 + 0x000000003f42a635 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.77 + 0x000000003f42a640 0x39 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.66 + 0x000000003f42a679 0x31 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.64 + 0x000000003f42a6aa 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.63 + 0x000000003f42a6e6 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.62 + 0x000000003f42a722 0x51 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.61 + 0x000000003f42a773 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.30 + 0x000000003f42a792 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.2 + 0x000000003f42a7b2 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.22 + 0x000000003f42a7c7 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.21 + 0x000000003f42a7e9 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.20 + 0x000000003f42a80b 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.19 + 0x000000003f42a82e 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.18 + 0x000000003f42a851 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.17 + 0x000000003f42a874 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.16 + 0x000000003f42a896 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.15 + 0x000000003f42a8b9 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.14 + 0x000000003f42a8dc 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.13 + 0x000000003f42a8fe 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.12 + 0x000000003f42a921 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.11 + 0x000000003f42a944 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.10 + 0x000000003f42a961 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.9 + 0x000000003f42a984 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.8 + 0x000000003f42a9a1 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.7 + 0x000000003f42a9c4 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.6 + 0x000000003f42a9e7 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.5 + 0x000000003f42aa0a 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.4 + 0x000000003f42aa2d 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.109 + 0x000000003f42aa50 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.108 + 0x000000003f42aa70 0x53 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.105 + 0x000000003f42aac3 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.103 + 0x000000003f42aae1 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.97 + 0x000000003f42aaff 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.96 + 0x000000003f42ab3b 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.93 + 0x000000003f42ab4b 0x59 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.92 + 0x000000003f42aba4 0x50 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.80 + 0x000000003f42abf4 0x33 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.79 + 0x000000003f42ac27 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.53 + 0x000000003f42ac47 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.51 + 0x000000003f42ac76 0x35 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.46 + 0x000000003f42acab 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.41 + 0x000000003f42acc0 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.40 + 0x000000003f42accf 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.13 + 0x000000003f42acef 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.16 + 0x000000003f42ad1f 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.15 + 0x000000003f42ad3c 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.14 + 0x000000003f42ad5b 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.13 + 0x000000003f42ad79 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.12 + 0x000000003f42ad9e 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.11 + 0x000000003f42adce 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.12 + 0x000000003f42adf8 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .rodata_wlog_info.57 + 0x000000003f42ae04 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_info.38 + 0x000000003f42ae15 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_info.32 + 0x000000003f42ae22 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_info.47 + 0x000000003f42ae35 0x56 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.46 + 0x000000003f42ae8b 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.45 + 0x000000003f42aeb9 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.42 + 0x000000003f42aecd 0x3f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.15 + 0x000000003f42af0c 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.14 + 0x000000003f42af3b 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.13 + 0x000000003f42af69 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.12 + 0x000000003f42afb1 0x3a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.11 + 0x000000003f42afeb 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.10 + 0x000000003f42b00f 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.9 + 0x000000003f42b03d 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.8 + 0x000000003f42b085 0x3a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.7 + 0x000000003f42b0bf 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.48 + 0x000000003f42b0e8 0x31 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_info.23 + 0x000000003f42b119 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_info.19 + 0x000000003f42b12b 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_info.41 + 0x000000003f42b13c 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_info.39 + 0x000000003f42b157 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_info.38 + 0x000000003f42b176 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_info.37 + 0x000000003f42b194 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_info.22 + 0x000000003f42b1b3 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_info.21 + 0x000000003f42b1c6 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_info.12 + 0x000000003f42b1d8 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_info.4 + 0x000000003f42b208 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .rodata_wlog_info.3 + 0x000000003f42b21f 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .rodata_wlog_info.2 + 0x000000003f42b24a 0x53 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + *(.rodata_wlog_warning .rodata_wlog_warning.*) + .rodata_wlog_warning.22 + 0x000000003f42b29d 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.20 + 0x000000003f42b2ac 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.19 + 0x000000003f42b2bc 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.13 + 0x000000003f42b2dd 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.12 + 0x000000003f42b2fb 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.10 + 0x000000003f42b317 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.9 + 0x000000003f42b333 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.7 + 0x000000003f42b34d 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.12 + 0x000000003f42b36d 0x5a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_warning.3 + 0x000000003f42b3c7 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .rodata_wlog_warning.47 + 0x000000003f42b3e5 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.45 + 0x000000003f42b40a 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.43 + 0x000000003f42b42f 0x3d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.42 + 0x000000003f42b46c 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.41 + 0x000000003f42b487 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.37 + 0x000000003f42b4c3 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.36 + 0x000000003f42b4e4 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.35 + 0x000000003f42b505 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.14 + 0x000000003f42b523 0x5b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.13 + 0x000000003f42b57e 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.11 + 0x000000003f42b5a1 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.7 + 0x000000003f42b5a8 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.6 + 0x000000003f42b5c8 0x9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.4 + 0x000000003f42b5d1 0x9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.3 + 0x000000003f42b5da 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.68 + 0x000000003f42b604 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.66 + 0x000000003f42b62c 0x9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.64 + 0x000000003f42b635 0x9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.56 + 0x000000003f42b63e 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.48 + 0x000000003f42b650 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.40 + 0x000000003f42b679 0x36 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.39 + 0x000000003f42b6af 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.23 + 0x000000003f42b6c7 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.20 + 0x000000003f42b6d6 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.19 + 0x000000003f42b702 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.18 + 0x000000003f42b71b 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.7 + 0x000000003f42b728 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.4 + 0x000000003f42b737 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.34 + 0x000000003f42b750 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_warning.29 + 0x000000003f42b779 0x52 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_warning.27 + 0x000000003f42b7cb 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_warning.2 + 0x000000003f42b7ec 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_warning.124 + 0x000000003f42b80f 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.123 + 0x000000003f42b832 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.122 + 0x000000003f42b857 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.103 + 0x000000003f42b893 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.93 + 0x000000003f42b8ad 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.92 + 0x000000003f42b8b8 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.75 + 0x000000003f42b8c3 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.73 + 0x000000003f42b8ec 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.60 + 0x000000003f42b8f4 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.55 + 0x000000003f42b90e 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.30 + 0x000000003f42b93e 0x44 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.29 + 0x000000003f42b982 0x56 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.28 + 0x000000003f42b9d8 0x46 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.27 + 0x000000003f42ba1e 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.26 + 0x000000003f42ba3d 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.25 + 0x000000003f42ba54 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.11 + 0x000000003f42ba6a 0x39 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.15 + 0x000000003f42baa3 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.14 + 0x000000003f42bac2 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.13 + 0x000000003f42baf0 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.12 + 0x000000003f42bb06 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.11 + 0x000000003f42bb2a 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.10 + 0x000000003f42bb51 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.9 + 0x000000003f42bb6c 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.8 + 0x000000003f42bb87 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.4 + 0x000000003f42bba2 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.51 + 0x000000003f42bbbc 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.50 + 0x000000003f42bbc6 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.48 + 0x000000003f42bbdb 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.36 + 0x000000003f42bbec 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.35 + 0x000000003f42bbf7 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.33 + 0x000000003f42bc08 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.27 + 0x000000003f42bc1e 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.26 + 0x000000003f42bc2c 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.25 + 0x000000003f42bc42 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.23 + 0x000000003f42bc4c 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.20 + 0x000000003f42bc60 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.17 + 0x000000003f42bc74 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.12 + 0x000000003f42bc88 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.6 + 0x000000003f42bc92 0x47 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.5 + 0x000000003f42bcd9 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.2 + 0x000000003f42bce6 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .rodata_wlog_warning.49 + 0x000000003f42bcfb 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.7 + 0x000000003f42bd0f 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.6 + 0x000000003f42bd21 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.3 + 0x000000003f42bd3e 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.87 + 0x000000003f42bd6c 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_warning.85 + 0x000000003f42bd91 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_warning.79 + 0x000000003f42bdb6 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_warning.60 + 0x000000003f42bdd3 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_warning.24 + 0x000000003f42bdef 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_warning.23 + 0x000000003f42be00 0x9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_warning.107 + 0x000000003f42be09 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.70 + 0x000000003f42be2f 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.25 + 0x000000003f42be50 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.24 + 0x000000003f42be5d 0x65 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.23 + 0x000000003f42bec2 0x64 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.17 + 0x000000003f42bf26 0x33 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.2 + 0x000000003f42bf59 0x3d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .rodata_wlog_warning.10 + 0x000000003f42bf96 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_warning.58 + 0x000000003f42bfbe 0x33 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_warning.46 + 0x000000003f42bff1 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_warning.31 + 0x000000003f42c004 0x8e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_warning.29 + 0x000000003f42c092 0x44 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_warning.53 + 0x000000003f42c0d6 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_warning.43 + 0x000000003f42c0f1 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_warning.42 + 0x000000003f42c112 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_warning.28 + 0x000000003f42c132 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_warning.25 + 0x000000003f42c13f 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_warning.16 + 0x000000003f42c159 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_warning.14 + 0x000000003f42c163 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_warning.6 + 0x000000003f42c182 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .rodata_wlog_warning.5 + 0x000000003f42c193 0x9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .rodata_wlog_warning.22 + 0x000000003f42c19c 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_warning.21 + 0x000000003f42c1a3 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_warning.7 + 0x000000003f42c1b1 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_warning.6 + 0x000000003f42c1df 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_warning.35 + 0x000000003f42c211 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_warning.24 + 0x000000003f42c224 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_warning.17 + 0x000000003f42c239 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_warning.11 + 0x000000003f42c24a 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_warning.3 + 0x000000003f42c26c 0x9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .rodata_wlog_warning.2 + 0x000000003f42c275 0x9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .rodata_wlog_warning.4 + 0x000000003f42c27e 0x9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .rodata_wlog_warning.3 + 0x000000003f42c287 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .rodata_wlog_warning.3 + 0x000000003f42c2b6 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .rodata_wlog_warning.2 + 0x000000003f42c2d5 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + *(.irom1.text) + *(.gnu.linkonce.r.*) + *(.rodata1) + 0x000000003f42c2e1 __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) + *(.xt_except_table) + *(.gcc_except_table .gcc_except_table.*) + *fill* 0x000000003f42c2e1 0x3 + .gcc_except_table._ZnajRKSt9nothrow_t + 0x000000003f42c2e4 0x10 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .gcc_except_table.__cxa_get_globals_fast + 0x000000003f42c2f4 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .gcc_except_table.__cxa_get_globals + 0x000000003f42c2f8 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .gcc_except_table._GLOBAL__sub_D__ZN17__eh_globals_init7_S_initE + 0x000000003f42c2fc 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .gcc_except_table._ZN10__cxxabiv111__terminateEPFvvE + 0x000000003f42c300 0x10 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .gcc_except_table._ZN12_GLOBAL__N_14pool4freeEPv$constprop$0 + 0x000000003f42c310 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .gcc_except_table._ZN12_GLOBAL__N_14pool8allocateEj$constprop$0 + 0x000000003f42c318 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .gcc_except_table.__cxa_allocate_exception + 0x000000003f42c320 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .gcc_except_table.__cxa_free_exception + 0x000000003f42c324 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .gcc_except_table._GLOBAL__sub_I__ZN9__gnu_cxx9__freeresEv + 0x000000003f42c328 0x10 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .gcc_except_table._GLOBAL__sub_D__ZN9__gnu_cxx9__freeresEv + 0x000000003f42c338 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + *(.gnu.linkonce.e.*) + *(.gnu.version_r) + 0x000000003f42c33c . = ((. + 0x3) & 0xfffffffffffffffc) + 0x000000003f42c33c __eh_frame = ABSOLUTE (.) + *(.eh_frame) + .eh_frame 0x000000003f42c33c 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtbegin.o + .eh_frame 0x000000003f42c33c 0x38 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .eh_frame 0x000000003f42c374 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + .eh_frame 0x000000003f42c39c 0x8c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .eh_frame 0x000000003f42c428 0x70 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .eh_frame 0x000000003f42c498 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opv.o) + .eh_frame 0x000000003f42c4c0 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + .eh_frame 0x000000003f42c4e8 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .eh_frame 0x000000003f42c540 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .eh_frame 0x000000003f42c580 0x134 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .eh_frame 0x000000003f42c6b4 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + .eh_frame 0x000000003f42c70c 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdi3.o) + .eh_frame 0x000000003f42c734 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_moddi3.o) + .eh_frame 0x000000003f42c75c 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_udivdi3.o) + .eh_frame 0x000000003f42c784 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_umoddi3.o) + .eh_frame 0x000000003f42c7ac 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtend.o + 0x000000003f42c7b4 . = ((. + 0x7) & 0xfffffffffffffffc) + *fill* 0x000000003f42c7b0 0x4 + 0x000000003f42c7b4 __init_array_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*crtbegin.* *crtend.*) .ctors SORT_BY_NAME(.ctors.*)) + .ctors 0x000000003f42c7b4 0x4 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .ctors 0x000000003f42c7b8 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .ctors 0x000000003f42c7bc 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .ctors 0x000000003f42c7c0 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .ctors 0x000000003f42c7c4 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x000000003f42c7c8 __init_array_end = ABSOLUTE (.) + *crtbegin.*(.dtors) + .dtors 0x000000003f42c7c8 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtbegin.o + *(EXCLUDE_FILE(*crtend.*) .dtors) + .dtors 0x000000003f42c7cc 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .dtors 0x000000003f42c7d0 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + *(SORT_BY_NAME(.dtors.*)) + *(.dtors) + .dtors 0x000000003f42c7d4 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtend.o + 0x000000003f42c7d4 __DTOR_END__ + 0x000000003f42c7d8 __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + 0x000000003f42c7d8 __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) + *(.xt_except_desc_end) + *(.dynamic) + *(.gnu.version_d) + 0x000000003f42c7d8 soc_reserved_memory_region_start = ABSOLUTE (.) + *(.reserved_memory_address) + .reserved_memory_address + 0x000000003f42c7d8 0x48 esp-idf/heap/libheap.a(memory_layout.c.obj) + .reserved_memory_address + 0x000000003f42c820 0x20 esp-idf/bt/libbt.a(bt.c.obj) + 0x000000003f42c840 soc_reserved_memory_region_end = ABSOLUTE (.) + 0x000000003f42c840 _esp_system_init_fn_array_start = ABSOLUTE (.) + *(SORT_BY_INIT_PRIORITY(.esp_system_init_fn.*)) + .esp_system_init_fn.100 + 0x000000003f42c840 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .esp_system_init_fn.200 + 0x000000003f42c848 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x000000003f42c850 _esp_system_init_fn_array_end = ABSOLUTE (.) + 0x000000003f42c850 _rodata_end = ABSOLUTE (.) + 0x000000003f42c850 _lit4_start = ABSOLUTE (.) + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + 0x000000003f42c850 _lit4_end = ABSOLUTE (.) + 0x000000003f42c850 . = ALIGN (0x4) + 0x000000003f42c850 _thread_local_start = ABSOLUTE (.) + *(.tdata) + *(.tdata.*) + *(.tbss) + *(.tbss.*) + 0x000000003f42c850 _thread_local_end = ABSOLUTE (.) + 0x000000003f42c850 . = ALIGN (0x4) + 0x0000000000000010 _flash_rodata_align = ALIGNOF (.flash.rodata) + +.flash.rodata_noload + 0x000000003f42c850 0x23b8 + 0x000000003f42c850 _rodata_reserved_end = ABSOLUTE (.) + 0x000000003f42c850 . = ALIGN (0x4) + *(.rodata_wlog_debug .rodata_wlog_debug.*) + .rodata_wlog_debug.38 + 0x000000003f42c850 0x4a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.34 + 0x000000003f42c89a 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.33 + 0x000000003f42c8d6 0x4e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.32 + 0x000000003f42c924 0x5b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.30 + 0x000000003f42c97f 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.29 + 0x000000003f42c99d 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.28 + 0x000000003f42c9c3 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.21 + 0x000000003f42c9e3 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.15 + 0x000000003f42ca11 0x31 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.33 + 0x000000003f42ca42 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.32 + 0x000000003f42ca68 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.31 + 0x000000003f42ca8c 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.30 + 0x000000003f42caa9 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.26 + 0x000000003f42cab5 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.25 + 0x000000003f42cac7 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.24 + 0x000000003f42cad9 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.23 + 0x000000003f42caeb 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.22 + 0x000000003f42cafd 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.21 + 0x000000003f42cb0f 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.20 + 0x000000003f42cb28 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.19 + 0x000000003f42cb3a 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.18 + 0x000000003f42cb4b 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.17 + 0x000000003f42cb5b 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.16 + 0x000000003f42cb6d 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.15 + 0x000000003f42cb86 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.14 + 0x000000003f42cb98 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.13 + 0x000000003f42cba9 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.12 + 0x000000003f42cbbb 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.11 + 0x000000003f42cbcc 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.10 + 0x000000003f42cbe1 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.9 + 0x000000003f42cbf3 0x36 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.6 + 0x000000003f42cc29 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.5 + 0x000000003f42cc34 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.4 + 0x000000003f42cc6f 0x49 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.120 + 0x000000003f42ccb8 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.119 + 0x000000003f42cce8 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.118 + 0x000000003f42cd23 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.117 + 0x000000003f42cd53 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.102 + 0x000000003f42cd8b 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.67 + 0x000000003f42cdb7 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.65 + 0x000000003f42cdc7 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.64 + 0x000000003f42cddd 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.63 + 0x000000003f42cdf8 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.62 + 0x000000003f42ce0b 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.32 + 0x000000003f42ce26 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.31 + 0x000000003f42ce3f 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.21 + 0x000000003f42ce58 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.20 + 0x000000003f42ce71 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.19 + 0x000000003f42ce89 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.18 + 0x000000003f42ceb1 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.17 + 0x000000003f42cecb 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.15 + 0x000000003f42cee3 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.4 + 0x000000003f42ceef 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .rodata_wlog_debug.3 + 0x000000003f42cf03 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .rodata_wlog_debug.84 + 0x000000003f42cf26 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.83 + 0x000000003f42cf43 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.82 + 0x000000003f42cf5e 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.81 + 0x000000003f42cf8e 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.80 + 0x000000003f42cfca 0x37 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.79 + 0x000000003f42d001 0x36 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.78 + 0x000000003f42d037 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.77 + 0x000000003f42d060 0x2d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.69 + 0x000000003f42d08d 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.67 + 0x000000003f42d0b0 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.66 + 0x000000003f42d0c8 0x36 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.65 + 0x000000003f42d0fe 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.64 + 0x000000003f42d12a 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.63 + 0x000000003f42d150 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.62 + 0x000000003f42d15e 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.61 + 0x000000003f42d16d 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.60 + 0x000000003f42d17c 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.59 + 0x000000003f42d18b 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.52 + 0x000000003f42d1b5 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.47 + 0x000000003f42d1c8 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.41 + 0x000000003f42d1f1 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.40 + 0x000000003f42d1ff 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.25 + 0x000000003f42d20d 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.21 + 0x000000003f42d237 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.20 + 0x000000003f42d250 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.19 + 0x000000003f42d25c 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.16 + 0x000000003f42d28e 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.15 + 0x000000003f42d2b6 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.14 + 0x000000003f42d2da 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.8 + 0x000000003f42d305 0x35 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.5 + 0x000000003f42d33a 0x54 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.4 + 0x000000003f42d38e 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.84 + 0x000000003f42d3a7 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.83 + 0x000000003f42d3bf 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.81 + 0x000000003f42d3d7 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.74 + 0x000000003f42d3f0 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.73 + 0x000000003f42d407 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.72 + 0x000000003f42d431 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.71 + 0x000000003f42d44a 0x2d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.70 + 0x000000003f42d477 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.69 + 0x000000003f42d490 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.68 + 0x000000003f42d4a6 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.67 + 0x000000003f42d4c6 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.65 + 0x000000003f42d4e3 0x33 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.58 + 0x000000003f42d516 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.57 + 0x000000003f42d539 0x3e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.56 + 0x000000003f42d577 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.55 + 0x000000003f42d59a 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.54 + 0x000000003f42d5bd 0x37 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.53 + 0x000000003f42d5f4 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.52 + 0x000000003f42d603 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.51 + 0x000000003f42d61a 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.50 + 0x000000003f42d63d 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.49 + 0x000000003f42d659 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.37 + 0x000000003f42d670 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.36 + 0x000000003f42d686 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.35 + 0x000000003f42d69f 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.34 + 0x000000003f42d6b7 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.33 + 0x000000003f42d6d8 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.32 + 0x000000003f42d714 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.31 + 0x000000003f42d72c 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.29 + 0x000000003f42d75b 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.28 + 0x000000003f42d771 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.27 + 0x000000003f42d78c 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.26 + 0x000000003f42d7a4 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.25 + 0x000000003f42d7be 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.24 + 0x000000003f42d7d6 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.23 + 0x000000003f42d7f2 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.22 + 0x000000003f42d806 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.21 + 0x000000003f42d821 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.20 + 0x000000003f42d83a 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.19 + 0x000000003f42d85a 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.18 + 0x000000003f42d883 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.17 + 0x000000003f42d89d 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.16 + 0x000000003f42d8b8 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.15 + 0x000000003f42d8d2 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.14 + 0x000000003f42d8ea 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.13 + 0x000000003f42d8f4 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.12 + 0x000000003f42d920 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.11 + 0x000000003f42d938 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.10 + 0x000000003f42d950 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.9 + 0x000000003f42d968 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.8 + 0x000000003f42d98c 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.7 + 0x000000003f42d9a4 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.6 + 0x000000003f42d9ec 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.5 + 0x000000003f42da04 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.4 + 0x000000003f42da1c 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.3 + 0x000000003f42da34 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.9 + 0x000000003f42da64 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_debug.6 + 0x000000003f42da76 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_debug.5 + 0x000000003f42da99 0x4b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_debug.112 + 0x000000003f42dae4 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.111 + 0x000000003f42dafc 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.110 + 0x000000003f42db15 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.106 + 0x000000003f42db2e 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.104 + 0x000000003f42db54 0x36 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.102 + 0x000000003f42db8a 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.101 + 0x000000003f42dbb0 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.100 + 0x000000003f42dbd5 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.99 + 0x000000003f42dbf3 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.98 + 0x000000003f42dc18 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.95 + 0x000000003f42dc3e 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.86 + 0x000000003f42dc53 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.85 + 0x000000003f42dc7f 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.84 + 0x000000003f42dcab 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.83 + 0x000000003f42dcd6 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.82 + 0x000000003f42dcee 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.81 + 0x000000003f42dd06 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.78 + 0x000000003f42dd1e 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.76 + 0x000000003f42dd37 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.75 + 0x000000003f42dd46 0x3d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.74 + 0x000000003f42dd83 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.73 + 0x000000003f42ddb5 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.72 + 0x000000003f42ddc3 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.71 + 0x000000003f42ddd3 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.69 + 0x000000003f42dde8 0x3d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.68 + 0x000000003f42de25 0x42 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.67 + 0x000000003f42de67 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.66 + 0x000000003f42de8c 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.65 + 0x000000003f42deb8 0x36 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.64 + 0x000000003f42deee 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.59 + 0x000000003f42df36 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.58 + 0x000000003f42df4c 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.57 + 0x000000003f42df77 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.56 + 0x000000003f42df8d 0x35 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.52 + 0x000000003f42dfc2 0x35 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.50 + 0x000000003f42dff7 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.49 + 0x000000003f42e010 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.48 + 0x000000003f42e028 0x36 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.47 + 0x000000003f42e05e 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.44 + 0x000000003f42e079 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.43 + 0x000000003f42e091 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.42 + 0x000000003f42e0bd 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.39 + 0x000000003f42e0d3 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.38 + 0x000000003f42e0eb 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.37 + 0x000000003f42e108 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.36 + 0x000000003f42e11b 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.35 + 0x000000003f42e13c 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.34 + 0x000000003f42e15d 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.33 + 0x000000003f42e173 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.32 + 0x000000003f42e18a 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.31 + 0x000000003f42e198 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.30 + 0x000000003f42e1a2 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.29 + 0x000000003f42e1af 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.28 + 0x000000003f42e1c0 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.27 + 0x000000003f42e1d0 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.26 + 0x000000003f42e1f4 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.22 + 0x000000003f42e20c 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.21 + 0x000000003f42e23e 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.20 + 0x000000003f42e259 0x44 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.19 + 0x000000003f42e29d 0x40 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.16 + 0x000000003f42e2dd 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.15 + 0x000000003f42e2fb 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.14 + 0x000000003f42e31e 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.11 + 0x000000003f42e33e 0x36 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.10 + 0x000000003f42e374 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.9 + 0x000000003f42e39e 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.8 + 0x000000003f42e3bd 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.7 + 0x000000003f42e3e3 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.6 + 0x000000003f42e408 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.5 + 0x000000003f42e426 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.4 + 0x000000003f42e43c 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.3 + 0x000000003f42e44c 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.9 + 0x000000003f42e464 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .rodata_wlog_debug.8 + 0x000000003f42e47d 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .rodata_wlog_debug.7 + 0x000000003f42e496 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .rodata_wlog_debug.6 + 0x000000003f42e4af 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .rodata_wlog_debug.5 + 0x000000003f42e4c8 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .rodata_wlog_debug.4 + 0x000000003f42e4e1 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + *(.rodata_wlog_verbose .rodata_wlog_verbose.*) + .rodata_wlog_verbose.24 + 0x000000003f42e4fa 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_verbose.23 + 0x000000003f42e508 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_verbose.53 + 0x000000003f42e51e 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_verbose.52 + 0x000000003f42e53e 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_verbose.74 + 0x000000003f42e54d 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_verbose.72 + 0x000000003f42e578 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_verbose.71 + 0x000000003f42e586 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_verbose.66 + 0x000000003f42e5af 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_verbose.76 + 0x000000003f42e5cd 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.75 + 0x000000003f42e5e0 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.74 + 0x000000003f42e5f3 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.73 + 0x000000003f42e606 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.72 + 0x000000003f42e619 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.71 + 0x000000003f42e631 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.70 + 0x000000003f42e644 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.56 + 0x000000003f42e662 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.55 + 0x000000003f42e671 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.46 + 0x000000003f42e680 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.45 + 0x000000003f42e68d 0x2d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.43 + 0x000000003f42e6ba 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.39 + 0x000000003f42e6d7 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.38 + 0x000000003f42e6fc 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.37 + 0x000000003f42e724 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.36 + 0x000000003f42e74c 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.35 + 0x000000003f42e77c 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.34 + 0x000000003f42e79e 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.33 + 0x000000003f42e7bf 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.32 + 0x000000003f42e7db 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.31 + 0x000000003f42e800 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.30 + 0x000000003f42e820 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.29 + 0x000000003f42e84c 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.28 + 0x000000003f42e85c 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.27 + 0x000000003f42e879 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.26 + 0x000000003f42e88f 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.24 + 0x000000003f42e89d 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.23 + 0x000000003f42e8b7 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.22 + 0x000000003f42e8d1 0x45 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.18 + 0x000000003f42e916 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.17 + 0x000000003f42e92b 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.12 + 0x000000003f42e93c 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.11 + 0x000000003f42e94f 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.9 + 0x000000003f42e969 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.2 + 0x000000003f42e9a4 0x3f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.45 + 0x000000003f42e9e3 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.44 + 0x000000003f42e9f8 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.43 + 0x000000003f42ea1c 0x3e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.40 + 0x000000003f42ea5a 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.39 + 0x000000003f42ea71 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.38 + 0x000000003f42ea85 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.11 + 0x000000003f42ea93 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.10 + 0x000000003f42eaa9 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.9 + 0x000000003f42eac0 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.6 + 0x000000003f42ead7 0x2d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.5 + 0x000000003f42eb04 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.4 + 0x000000003f42eb14 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.3 + 0x000000003f42eb24 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.2 + 0x000000003f42eb3b 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.77 + 0x000000003f42eb5b 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_verbose.63 + 0x000000003f42eb77 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_verbose.61 + 0x000000003f42eb98 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_verbose.60 + 0x000000003f42ebaa 0x33 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_verbose.45 + 0x000000003f42ebdd 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + +.flash.text 0x00000000400d0020 0xb7edf + 0x00000000400d0020 _stext = . + 0x00000000400d0020 _instruction_reserved_start = ABSOLUTE (.) + 0x00000000400d0020 _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: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_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_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.* *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: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_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_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.* *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: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_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_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.* *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: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_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_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.* *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 + 0x00000000400d0020 0x4 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .literal.esp_app_format_init_elf_sha256 + 0x00000000400d0024 0x8 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .literal.esp_app_get_elf_sha256 + 0x00000000400d002c 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 + 0x00000000400d0030 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x4 (size before relaxing) + .literal.pthread_mutex_lock_internal + 0x00000000400d0030 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x10 (size before relaxing) + .literal.esp_pthread_init + 0x00000000400d0030 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x18 (size before relaxing) + .literal.pthread_mutex_init + 0x00000000400d003c 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x14 (size before relaxing) + .literal.pthread_mutex_init_if_static + 0x00000000400d0040 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x10 (size before relaxing) + .literal.pthread_mutex_destroy + 0x00000000400d0044 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x24 (size before relaxing) + .literal.pthread_mutex_lock + 0x00000000400d0050 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x8 (size before relaxing) + .literal.pthread_mutex_unlock + 0x00000000400d0050 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x20 (size before relaxing) + .literal.find_key + 0x00000000400d0058 0x8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x10 (size before relaxing) + .literal.pthread_cleanup_thread_specific_data_callback + 0x00000000400d0060 0xc esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x1c (size before relaxing) + .literal.pthread_key_create + 0x00000000400d006c 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x14 (size before relaxing) + .literal.pthread_key_delete + 0x00000000400d006c 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x18 (size before relaxing) + .literal.pthread_getspecific + 0x00000000400d006c 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x8 (size before relaxing) + .literal.pthread_setspecific + 0x00000000400d0070 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x20 (size before relaxing) + .literal.core_intr_matrix_clear + 0x00000000400d0074 0x4 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .literal.start_other_core + 0x00000000400d0078 0x3c esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x80 (size before relaxing) + .literal.startup_resume_other_cores + 0x00000000400d00b4 0x4 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .literal.select_rtc_slow_clk + 0x00000000400d00b8 0x8 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x30 (size before relaxing) + .literal.esp_clk_init + 0x00000000400d00c0 0x20 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x80 (size before relaxing) + .literal.esp_perip_clk_init + 0x00000000400d00e0 0x34 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x64 (size before relaxing) + .literal.esp_cache_err_int_init + 0x00000000400d0114 0x8 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x1c (size before relaxing) + .literal.esp_cache_err_get_cpuid + 0x00000000400d011c 0xc esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x14 (size before relaxing) + .literal.esp_ipc_isr_init + 0x00000000400d0128 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x10 (size before relaxing) + .literal.esp_int_wdt_init + 0x00000000400d012c 0xc esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x28 (size before relaxing) + .literal.esp_int_wdt_cpu_init + 0x00000000400d0138 0x4 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x14 (size before relaxing) + .literal.panic_print_char_uart + 0x00000000400d013c 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.disable_all_wdts + 0x00000000400d0140 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x20 (size before relaxing) + .literal.panic_print_char + 0x00000000400d0148 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x4 (size before relaxing) + .literal.panic_print_str + 0x00000000400d0148 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x4 (size before relaxing) + .literal.print_abort_details + 0x00000000400d0148 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panic_print_hex + 0x00000000400d014c 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panic_print_dec + 0x00000000400d014c 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x10 (size before relaxing) + .literal.esp_panic_handler_reconfigure_wdts + 0x00000000400d0150 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x30 (size before relaxing) + .literal.esp_panic_handler + 0x00000000400d0154 0x38 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0xd0 (size before relaxing) + .literal.esp_register_shutdown_handler + 0x00000000400d018c 0x4 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .literal.esp_unregister_shutdown_handler + 0x00000000400d0190 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x4 (size before relaxing) + .literal.esp_restart + 0x00000000400d0190 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0xc (size before relaxing) + .literal.do_global_ctors + 0x00000000400d0190 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .literal.do_core_init + 0x00000000400d0198 0x2c esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x74 (size before relaxing) + .literal.do_system_init_fn + 0x00000000400d01c4 0x14 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x20 (size before relaxing) + .literal.do_secondary_init + 0x00000000400d01d8 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x10 (size before relaxing) + .literal.start_cpu0_default + 0x00000000400d01d8 0x40 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0xd0 (size before relaxing) + .literal.__esp_system_init_fn_init_components0 + 0x00000000400d0218 0x4 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0xc (size before relaxing) + .literal.frame_to_panic_info + 0x00000000400d021c 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x10 (size before relaxing) + .literal.panic_handler + 0x00000000400d0224 0x40 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x80 (size before relaxing) + .literal.print_state_for_core + 0x00000000400d0264 0x4 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x14 (size before relaxing) + .literal.print_state + 0x00000000400d0268 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x18 (size before relaxing) + .literal.panic_restart + 0x00000000400d0268 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0xc (size before relaxing) + .literal.esp_brownout_init + 0x00000000400d0268 0x8 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x14 (size before relaxing) + .literal.print_debug_exception_details + 0x00000000400d0270 0x20 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x40 (size before relaxing) + .literal.print_illegal_instruction_details + 0x00000000400d0290 0x14 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x34 (size before relaxing) + .literal.panic_print_registers + 0x00000000400d02a4 0x2c esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x84 (size before relaxing) + .literal.panic_arch_fill_info + 0x00000000400d02d0 0x10 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .literal.panic_soc_fill_info + 0x00000000400d02e0 0xc esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x10 (size before relaxing) + .literal.panic_print_backtrace + 0x00000000400d02ec 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x4 (size before relaxing) + .literal.esp_vApplicationIdleHook + 0x00000000400d02ec 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x8 (size before relaxing) + .literal.esp_register_freertos_idle_hook_for_cpu + 0x00000000400d02f0 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x14 (size before relaxing) + .literal.esp_register_freertos_tick_hook_for_cpu + 0x00000000400d02f4 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x14 (size before relaxing) + .literal.esp_deregister_freertos_idle_hook_for_cpu + 0x00000000400d02f8 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x10 (size before relaxing) + .literal.uart_hal_rxfifo_rst + 0x00000000400d02f8 0x28 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x2c (size before relaxing) + .literal.uart_hal_write_txfifo + 0x00000000400d0320 0x14 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x2c (size before relaxing) + .literal.brownout_hal_config + 0x00000000400d0334 0x18 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x1c (size before relaxing) + .literal.heap_caps_get_free_size + 0x00000000400d034c 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_info + 0x00000000400d0358 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x10 (size before relaxing) + .literal.heap_caps_get_largest_free_block + 0x00000000400d0360 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x4 (size before relaxing) + .literal.register_heap + 0x00000000400d0360 0x14 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x18 (size before relaxing) + .literal.heap_caps_enable_nonos_stack_heaps + 0x00000000400d0374 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0xc (size before relaxing) + .literal.heap_caps_init + 0x00000000400d0374 0x38 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x88 (size before relaxing) + .literal.heap_caps_add_region_with_caps + 0x00000000400d03ac 0x8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x40 (size before relaxing) + .literal.heap_caps_add_region + 0x00000000400d03b4 0x8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x10 (size before relaxing) + .literal.s_get_num_reserved_regions + 0x00000000400d03bc 0x8 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .literal.s_prepare_reserved_regions + 0x00000000400d03c4 0x20 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x40 (size before relaxing) + .literal.soc_get_available_memory_region_max_count + 0x00000000400d03e4 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x8 (size before relaxing) + .literal.soc_get_available_memory_regions + 0x00000000400d03e4 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x14 (size before relaxing) + .literal.calc_checksum + 0x00000000400d03e4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_clk_slowclk_cal_get + 0x00000000400d03e8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_rtc_get_time_us + 0x00000000400d03ec 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x34 (size before relaxing) + .literal.esp_clk_slowclk_cal_set + 0x00000000400d03f4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x8 (size before relaxing) + .literal.insert_vector_desc + 0x00000000400d03f4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.find_desc_for_int + 0x00000000400d03f8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.get_desc_for_int + 0x00000000400d03f8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x18 (size before relaxing) + .literal.find_desc_for_source + 0x00000000400d0400 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x14 (size before relaxing) + .literal.is_vect_desc_usable + 0x00000000400d040c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x18 (size before relaxing) + .literal.get_available_int + 0x00000000400d041c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x24 (size before relaxing) + .literal.esp_intr_alloc_intrstatus + 0x00000000400d0420 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xa4 (size before relaxing) + .literal.esp_intr_alloc + 0x00000000400d0450 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.s_rtc_isr_noniram_hook + 0x00000000400d0450 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .literal.s_rtc_isr_noniram_hook_relieve + 0x00000000400d0454 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x4 (size before relaxing) + .literal.rtc_isr_ensure_installed + 0x00000000400d0454 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x28 (size before relaxing) + .literal.rtc_isr_register + 0x00000000400d0470 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x24 (size before relaxing) + .literal.rtcio_ll_force_hold_disable + 0x00000000400d0478 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x20 (size before relaxing) + .literal.esp_deep_sleep_wakeup_io_reset + 0x00000000400d048c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x14 (size before relaxing) + .literal.rtc_init + 0x00000000400d049c 0xb0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0xf0 (size before relaxing) + .literal.esp_chip_info + 0x00000000400d054c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0x8 (size before relaxing) + .literal.esp_newlib_locks_init + 0x00000000400d0550 0x28 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x38 (size before relaxing) + .literal.raise_r_stub + 0x00000000400d0578 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x4 (size before relaxing) + .literal.esp_newlib_init + 0x00000000400d0578 0x14 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x24 (size before relaxing) + .literal.syscall_not_implemented_aborts + 0x00000000400d058c 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x4 (size before relaxing) + .literal.adjust_boot_time + 0x00000000400d058c 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x18 (size before relaxing) + .literal.get_adjusted_boot_time + 0x00000000400d0594 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x10 (size before relaxing) + .literal.adjtime_corr_stop + 0x00000000400d0598 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x14 (size before relaxing) + .literal.settimeofday + 0x00000000400d0598 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x10 (size before relaxing) + .literal.esp_newlib_time_init + 0x00000000400d059c 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x4 (size before relaxing) + .literal.esp_time_impl_get_time_since_boot + 0x00000000400d059c 0x4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x8 (size before relaxing) + .literal.esp_time_impl_set_boot_time + 0x00000000400d05a0 0xc esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x14 (size before relaxing) + .literal.esp_time_impl_get_boot_time + 0x00000000400d05ac 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x14 (size before relaxing) + .literal.esp_set_time_from_rtc + 0x00000000400d05ac 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0xc (size before relaxing) + .literal.esp_sync_timekeeping_timers + 0x00000000400d05ac 0x4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x1c (size before relaxing) + .literal.esp_time_impl_init + 0x00000000400d05b0 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x4 (size before relaxing) + .literal.init_timer_task + 0x00000000400d05b0 0x18 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x30 (size before relaxing) + .literal.timer_process_alarm + 0x00000000400d05c8 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x34 (size before relaxing) + .literal.timer_task + 0x00000000400d05d0 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x8 (size before relaxing) + .literal.deinit_timer_task + 0x00000000400d05d0 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x8 (size before relaxing) + .literal.esp_timer_create + 0x00000000400d05d0 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xc (size before relaxing) + .literal.esp_timer_delete + 0x00000000400d05d0 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x1c (size before relaxing) + .literal.esp_timer_early_init + 0x00000000400d05d4 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x8 (size before relaxing) + .literal.esp_timer_init + 0x00000000400d05d4 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x24 (size before relaxing) + .literal.__esp_system_init_fn_esp_timer_startup_init + 0x00000000400d05dc 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x4 (size before relaxing) + .literal.esp_timer_impl_init_system_time + 0x00000000400d05dc 0x14 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x28 (size before relaxing) + .literal.esp_timer_impl_early_init + 0x00000000400d05f0 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x2c (size before relaxing) + .literal.esp_timer_impl_init + 0x00000000400d0618 0x2c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x5c (size before relaxing) + .literal.set_xpd_sar + 0x00000000400d0644 0xc esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .literal.translate_path + 0x00000000400d0650 0x18 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1c (size before relaxing) + .literal.esp_vfs_register_common + 0x00000000400d0668 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1c (size before relaxing) + .literal.esp_vfs_register + 0x00000000400d0674 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_register_fd_range + 0x00000000400d0674 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x24 (size before relaxing) + .literal.get_vfs_for_index + 0x00000000400d0680 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.get_vfs_for_fd + 0x00000000400d0680 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.get_vfs_for_path + 0x00000000400d0680 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.esp_vfs_open + 0x00000000400d0684 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x20 (size before relaxing) + .literal.esp_vfs_write + 0x00000000400d0688 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_lseek + 0x00000000400d0688 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_read + 0x00000000400d0688 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_close + 0x00000000400d0688 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x14 (size before relaxing) + .literal.esp_vfs_fstat + 0x00000000400d0688 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_stat + 0x00000000400d0688 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_link + 0x00000000400d0688 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.esp_vfs_unlink + 0x00000000400d0688 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_rename + 0x00000000400d0688 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.esp_vfs_select_triggered + 0x00000000400d0688 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_select_triggered_isr + 0x00000000400d0688 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc (size before relaxing) + .literal.console_open + 0x00000000400d0688 0xc esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x10 (size before relaxing) + .literal.console_write + 0x00000000400d0694 0x4 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_fstat + 0x00000000400d0698 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x8 (size before relaxing) + .literal.console_close + 0x00000000400d0698 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_read + 0x00000000400d0698 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_fcntl + 0x00000000400d0698 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_fsync + 0x00000000400d0698 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_access + 0x00000000400d0698 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_end_select + 0x00000000400d0698 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x8 (size before relaxing) + .literal.console_tcsetattr + 0x00000000400d0698 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_tcgetattr + 0x00000000400d0698 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_tcdrain + 0x00000000400d0698 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_tcflush + 0x00000000400d0698 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_start_select + 0x00000000400d0698 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_dev_console_register + 0x00000000400d0698 0x8 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_console_register + 0x00000000400d06a0 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x14 (size before relaxing) + .literal.uart_read_char + 0x00000000400d06a0 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.unregister_select + 0x00000000400d06a4 0xc esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x18 (size before relaxing) + .literal.uart_end_select + 0x00000000400d06b0 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1c (size before relaxing) + .literal.register_select + 0x00000000400d06b0 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x18 (size before relaxing) + .literal.uart_start_select + 0x00000000400d06b0 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x38 (size before relaxing) + .literal.select_notif_callback_isr + 0x00000000400d06b4 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_tcflush + 0x00000000400d06b4 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x10 (size before relaxing) + .literal.uart_tcdrain + 0x00000000400d06b4 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0xc (size before relaxing) + .literal.uart_tcgetattr + 0x00000000400d06b4 0x4c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x8c (size before relaxing) + .literal.uart_tx_char + 0x00000000400d0700 0xc esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x30 (size before relaxing) + .literal.uart_rx_char + 0x00000000400d070c 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x30 (size before relaxing) + .literal.uart_fcntl + 0x00000000400d0714 0x10 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_fstat + 0x00000000400d0724 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x18 (size before relaxing) + .literal.uart_close + 0x00000000400d072c 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x10 (size before relaxing) + .literal.uart_return_char + 0x00000000400d0730 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x14 (size before relaxing) + .literal.uart_tcsetattr + 0x00000000400d0738 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x9c (size before relaxing) + .literal.uart_access + 0x00000000400d0738 0x10 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_open + 0x00000000400d0748 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x14 (size before relaxing) + .literal.uart_fsync + 0x00000000400d074c 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_read + 0x00000000400d0754 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x30 (size before relaxing) + .literal.uart_write + 0x00000000400d0758 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1c (size before relaxing) + .literal.esp_vfs_uart_get_vfs + 0x00000000400d075c 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_coex_common_spin_lock_create_wrapper + 0x00000000400d0760 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x10 (size before relaxing) + .literal.esp_coex_internal_semphr_take_wrapper + 0x00000000400d0760 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x8 (size before relaxing) + .literal.esp_coex_internal_semphr_give_wrapper + 0x00000000400d0760 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .literal.esp_coex_common_timer_done_wrapper + 0x00000000400d0760 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .literal.esp_coex_common_timer_setfn_wrapper + 0x00000000400d0760 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .literal.esp_coex_internal_semphr_delete_wrapper + 0x00000000400d0760 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x8 (size before relaxing) + .literal.esp_coex_internal_semphr_create_wrapper + 0x00000000400d0760 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0xc (size before relaxing) + .literal.esp_coex_common_semphr_create_wrapper + 0x00000000400d0760 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .literal.esp_coex_common_semphr_delete_wrapper + 0x00000000400d0760 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .literal.esp_coex_common_semphr_take_wrapper + 0x00000000400d0760 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x8 (size before relaxing) + .literal.esp_coex_common_semphr_give_wrapper + 0x00000000400d0760 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .literal.hli_intr_register + 0x00000000400d0760 0x8 esp-idf/bt/libbt.a(hli_api.c.obj) + .literal.hli_queue_create + 0x00000000400d0768 0x4 esp-idf/bt/libbt.a(hli_api.c.obj) + 0xc (size before relaxing) + .literal.hli_queue_setup + 0x00000000400d076c 0x1c esp-idf/bt/libbt.a(hli_api.c.obj) + 0x2c (size before relaxing) + .literal.hli_customer_queue_create + 0x00000000400d0788 0x0 esp-idf/bt/libbt.a(hli_api.c.obj) + 0x4 (size before relaxing) + .literal.hli_semaphore_create + 0x00000000400d0788 0x0 esp-idf/bt/libbt.a(hli_api.c.obj) + 0x4 (size before relaxing) + .literal.hli_queue_delete + 0x00000000400d0788 0x0 esp-idf/bt/libbt.a(hli_api.c.obj) + 0x4 (size before relaxing) + .literal.example_get_sec2_salt + 0x00000000400d0788 0xc esp-idf/main/libmain.a(app_main.c.obj) + 0x14 (size before relaxing) + .literal.example_get_sec2_verifier + 0x00000000400d0794 0x8 esp-idf/main/libmain.a(app_main.c.obj) + 0x14 (size before relaxing) + .literal.custom_prov_data_handler + 0x00000000400d079c 0x10 esp-idf/main/libmain.a(app_main.c.obj) + 0x28 (size before relaxing) + .literal.event_handler + 0x00000000400d07ac 0x54 esp-idf/main/libmain.a(app_main.c.obj) + 0xcc (size before relaxing) + .literal.get_device_service_name + 0x00000000400d0800 0xc esp-idf/main/libmain.a(app_main.c.obj) + 0x10 (size before relaxing) + .literal.wifi_prov_print_qr + 0x00000000400d080c 0x20 esp-idf/main/libmain.a(app_main.c.obj) + 0x4c (size before relaxing) + .literal.wifi_init_sta + 0x00000000400d082c 0x10 esp-idf/main/libmain.a(app_main.c.obj) + 0x20 (size before relaxing) + .literal.app_main + 0x00000000400d083c 0x90 esp-idf/main/libmain.a(app_main.c.obj) + 0x180 (size before relaxing) + .literal.debug_print_wifi_credentials + 0x00000000400d08cc 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x8 (size before relaxing) + .literal.execute_event_cb + 0x00000000400d08cc 0x28 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x40 (size before relaxing) + .literal.wifi_connect_timer_cb + 0x00000000400d08f4 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x14 (size before relaxing) + .literal.update_wifi_scan_results + 0x00000000400d08f8 0x14 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x54 (size before relaxing) + .literal.prov_stop_and_notify + 0x00000000400d090c 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x60 (size before relaxing) + .literal.wifi_prov_mgr_stop_service + 0x00000000400d0924 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x84 (size before relaxing) + .literal.wifi_prov_mgr_event_handler_internal + 0x00000000400d0928 0x24 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0xb8 (size before relaxing) + .literal.cleanup_delay_timer_cb + 0x00000000400d094c 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x1c (size before relaxing) + .literal.wifi_prov_get_info_json + 0x00000000400d0950 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x5c (size before relaxing) + .literal.wifi_prov_mgr_start_service + 0x00000000400d0970 0x68 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x1c4 (size before relaxing) + .literal.wifi_prov_mgr_endpoint_create + 0x00000000400d09d8 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x44 (size before relaxing) + .literal.wifi_prov_mgr_endpoint_register + 0x00000000400d09e0 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x48 (size before relaxing) + .literal.wifi_prov_mgr_wifi_scan_start + 0x00000000400d09e8 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x7c (size before relaxing) + .literal.wifi_prov_mgr_wifi_scan_finished + 0x00000000400d09ec 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x48 (size before relaxing) + .literal.wifi_prov_mgr_wifi_scan_result_count + 0x00000000400d09f0 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x48 (size before relaxing) + .literal.wifi_prov_mgr_wifi_scan_result + 0x00000000400d09f4 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x48 (size before relaxing) + .literal.wifi_prov_mgr_get_wifi_state + 0x00000000400d09f8 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x40 (size before relaxing) + .literal.wifi_prov_mgr_get_wifi_disconnect_reason + 0x00000000400d09fc 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x48 (size before relaxing) + .literal.wifi_prov_mgr_is_provisioned + 0x00000000400d0a00 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x10 (size before relaxing) + .literal.wifi_prov_mgr_configure_sta + 0x00000000400d0a04 0x20 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0xd4 (size before relaxing) + .literal.wifi_prov_mgr_init + 0x00000000400d0a24 0x40 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0xe8 (size before relaxing) + .literal.wifi_prov_mgr_deinit + 0x00000000400d0a64 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x78 (size before relaxing) + .literal.wifi_prov_mgr_start_provisioning + 0x00000000400d0a6c 0x48 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x14c (size before relaxing) + .literal.wifi_prov_mgr_stop_provisioning + 0x00000000400d0ab4 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x38 (size before relaxing) + .literal.wifi_prov_mgr_done + 0x00000000400d0ab8 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x3c (size before relaxing) + .literal.stop_prov_timer_cb + 0x00000000400d0abc 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x4 (size before relaxing) + .literal.wifi_prov_mgr_reset_sm_state_on_failure + 0x00000000400d0abc 0xc esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x58 (size before relaxing) + .literal.wifi_prov_mgr_reset_sm_state_for_reprovision + 0x00000000400d0ac8 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x80 (size before relaxing) + .literal.free_config + 0x00000000400d0ad8 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + 0x4 (size before relaxing) + .literal.apply_config_handler + 0x00000000400d0ad8 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + 0x28 (size before relaxing) + .literal.new_config + 0x00000000400d0ae8 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + 0xc (size before relaxing) + .literal.set_config_handler + 0x00000000400d0ae8 0xc esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + 0x2c (size before relaxing) + .literal.get_status_handler + 0x00000000400d0af4 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + 0x3c (size before relaxing) + .literal.scan_result + 0x00000000400d0afc 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + 0xc (size before relaxing) + .literal.scan_status + 0x00000000400d0afc 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + 0x8 (size before relaxing) + .literal.scan_start + 0x00000000400d0afc 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + 0x4 (size before relaxing) + .literal.ctrl_reprov + 0x00000000400d0afc 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + 0x4 (size before relaxing) + .literal.ctrl_reset + 0x00000000400d0afc 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + 0x4 (size before relaxing) + .literal.get_wifi_prov_handlers + 0x00000000400d0afc 0xc esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + .literal.get_wifi_scan_handlers + 0x00000000400d0b08 0xc esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + .literal.get_wifi_ctrl_handlers + 0x00000000400d0b14 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + .literal.set_config_endpoint + 0x00000000400d0b1c 0x14 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + 0x3c (size before relaxing) + .literal.set_config_service + 0x00000000400d0b30 0x14 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + 0x3c (size before relaxing) + .literal.delete_config + 0x00000000400d0b44 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + 0x1c (size before relaxing) + .literal.new_config + 0x00000000400d0b48 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + 0x1c (size before relaxing) + .literal.prov_start + 0x00000000400d0b50 0xc esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + 0x2c (size before relaxing) + .literal.wifi_prov_scheme_ble_set_service_uuid + 0x00000000400d0b5c 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + 0x4 (size before relaxing) + .literal.wifi_prov_scheme_ble_event_cb_free_btdm + 0x00000000400d0b5c 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + 0x3c (size before relaxing) + .literal.lookup_cmd_handler + 0x00000000400d0b6c 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + .literal.wifi_prov_config_command_dispatcher + 0x00000000400d0b70 0xc esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + 0x24 (size before relaxing) + .literal.cmd_apply_config_handler + 0x00000000400d0b7c 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + 0x24 (size before relaxing) + .literal.cmd_set_config_handler + 0x00000000400d0b84 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + 0x34 (size before relaxing) + .literal.wifi_prov_config_command_cleanup + 0x00000000400d0b84 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + 0x2c (size before relaxing) + .literal.cmd_get_status_handler + 0x00000000400d0b88 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + 0x60 (size before relaxing) + .literal.wifi_prov_config_data_handler + 0x00000000400d0b8c 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + 0x54 (size before relaxing) + .literal.lookup_cmd_handler + 0x00000000400d0b9c 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + .literal.wifi_prov_scan_cmd_dispatcher + 0x00000000400d0ba0 0xc esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + 0x24 (size before relaxing) + .literal.cmd_scan_result_handler + 0x00000000400d0bac 0x1c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + 0x78 (size before relaxing) + .literal.cmd_scan_status_handler + 0x00000000400d0bc8 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + 0x24 (size before relaxing) + .literal.cmd_scan_start_handler + 0x00000000400d0bc8 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + 0x24 (size before relaxing) + .literal.wifi_prov_scan_cmd_cleanup + 0x00000000400d0bc8 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + 0x2c (size before relaxing) + .literal.wifi_prov_scan_handler + 0x00000000400d0bcc 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + 0x54 (size before relaxing) + .literal.lookup_cmd_handler + 0x00000000400d0bdc 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + .literal.wifi_ctrl_cmd_dispatcher + 0x00000000400d0be0 0xc esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + 0x24 (size before relaxing) + .literal.cmd_ctrl_reprov_handler + 0x00000000400d0bec 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + 0x24 (size before relaxing) + .literal.cmd_ctrl_reset_handler + 0x00000000400d0bf4 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + 0x24 (size before relaxing) + .literal.wifi_ctrl_cmd_cleanup + 0x00000000400d0bf4 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + 0x18 (size before relaxing) + .literal.wifi_ctrl_handler + 0x00000000400d0bf8 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + 0x54 (size before relaxing) + .literal.cmd_get_status__init + 0x00000000400d0c08 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.resp_get_status__init + 0x00000000400d0c0c 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.cmd_set_config__init + 0x00000000400d0c10 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.resp_set_config__init + 0x00000000400d0c14 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.cmd_apply_config__init + 0x00000000400d0c18 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.resp_apply_config__init + 0x00000000400d0c1c 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.wi_fi_config_payload__init + 0x00000000400d0c20 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .literal.wi_fi_config_payload__get_packed_size + 0x00000000400d0c24 0xc esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x18 (size before relaxing) + .literal.wi_fi_config_payload__pack + 0x00000000400d0c30 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x18 (size before relaxing) + .literal.wi_fi_config_payload__unpack + 0x00000000400d0c34 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x8 (size before relaxing) + .literal.wi_fi_config_payload__free_unpacked + 0x00000000400d0c34 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x18 (size before relaxing) + .literal.cmd_scan_start__init + 0x00000000400d0c38 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.resp_scan_start__init + 0x00000000400d0c3c 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.cmd_scan_status__init + 0x00000000400d0c40 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.resp_scan_status__init + 0x00000000400d0c44 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.cmd_scan_result__init + 0x00000000400d0c48 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.wi_fi_scan_result__init + 0x00000000400d0c4c 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.resp_scan_result__init + 0x00000000400d0c50 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.wi_fi_scan_payload__init + 0x00000000400d0c54 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .literal.wi_fi_scan_payload__get_packed_size + 0x00000000400d0c58 0xc esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x18 (size before relaxing) + .literal.wi_fi_scan_payload__pack + 0x00000000400d0c64 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x18 (size before relaxing) + .literal.wi_fi_scan_payload__unpack + 0x00000000400d0c68 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x8 (size before relaxing) + .literal.wi_fi_scan_payload__free_unpacked + 0x00000000400d0c68 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x18 (size before relaxing) + .literal.cmd_ctrl_reset__init + 0x00000000400d0c6c 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.resp_ctrl_reset__init + 0x00000000400d0c70 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.cmd_ctrl_reprov__init + 0x00000000400d0c74 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.resp_ctrl_reprov__init + 0x00000000400d0c78 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.wi_fi_ctrl_payload__init + 0x00000000400d0c7c 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .literal.wi_fi_ctrl_payload__get_packed_size + 0x00000000400d0c80 0xc esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + 0x18 (size before relaxing) + .literal.wi_fi_ctrl_payload__pack + 0x00000000400d0c8c 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + 0x18 (size before relaxing) + .literal.wi_fi_ctrl_payload__unpack + 0x00000000400d0c90 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + 0x8 (size before relaxing) + .literal.wi_fi_ctrl_payload__free_unpacked + 0x00000000400d0c90 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + 0x18 (size before relaxing) + .literal.wifi_connected_state__init + 0x00000000400d0c94 0x4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + 0x8 (size before relaxing) + .literal.search_endpoint + 0x00000000400d0c98 0x0 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + 0x4 (size before relaxing) + .literal.protocomm_add_endpoint_internal + 0x00000000400d0c98 0x10 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + 0x30 (size before relaxing) + .literal.protocomm_version_handler + 0x00000000400d0ca8 0x4 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + 0x1c (size before relaxing) + .literal.protocomm_new + 0x00000000400d0cac 0x4 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + 0x14 (size before relaxing) + .literal.protocomm_delete + 0x00000000400d0cb0 0x0 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + 0x10 (size before relaxing) + .literal.protocomm_add_endpoint + 0x00000000400d0cb0 0x0 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + 0x4 (size before relaxing) + .literal.protocomm_remove_endpoint + 0x00000000400d0cb0 0x0 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + 0x8 (size before relaxing) + .literal.protocomm_req_handle + 0x00000000400d0cb0 0x14 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + 0x60 (size before relaxing) + .literal.protocomm_set_security + 0x00000000400d0cc4 0x18 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + 0x60 (size before relaxing) + .literal.protocomm_set_version + 0x00000000400d0cdc 0xc esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + 0x28 (size before relaxing) + .literal.sec0_session_setup_cleanup + 0x00000000400d0ce8 0x0 esp-idf/protocomm/libprotocomm.a(security0.c.obj) + 0x8 (size before relaxing) + .literal.sec0_session_setup + 0x00000000400d0ce8 0x8 esp-idf/protocomm/libprotocomm.a(security0.c.obj) + 0x28 (size before relaxing) + .literal.sec0_req_handler + 0x00000000400d0cf0 0x10 esp-idf/protocomm/libprotocomm.a(security0.c.obj) + 0x5c (size before relaxing) + .literal.sec1_decrypt + 0x00000000400d0d00 0x14 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0x3c (size before relaxing) + .literal.sec1_session_setup_cleanup + 0x00000000400d0d14 0x0 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0x10 (size before relaxing) + .literal.sec1_close_session + 0x00000000400d0d14 0x4 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0x18 (size before relaxing) + .literal.sec1_new_session + 0x00000000400d0d18 0x4 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0x14 (size before relaxing) + .literal.handle_session_command0 + 0x00000000400d0d1c 0x44 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0x15c (size before relaxing) + .literal.sec1_cleanup + 0x00000000400d0d60 0x0 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0x8 (size before relaxing) + .literal.handle_session_command1 + 0x00000000400d0d60 0x24 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0xd8 (size before relaxing) + .literal.sec1_session_setup + 0x00000000400d0d84 0x8 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0x24 (size before relaxing) + .literal.sec1_req_handler + 0x00000000400d0d8c 0x18 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0x74 (size before relaxing) + .literal.sec1_init + 0x00000000400d0da4 0x4 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0x14 (size before relaxing) + .literal.sec2_decrypt + 0x00000000400d0da8 0x14 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x3c (size before relaxing) + .literal.sec2_encrypt + 0x00000000400d0dbc 0x8 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x40 (size before relaxing) + .literal.sec2_init + 0x00000000400d0dc4 0x4 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x14 (size before relaxing) + .literal.sec2_session_setup_cleanup + 0x00000000400d0dc8 0x0 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x10 (size before relaxing) + .literal.handle_session_command1 + 0x00000000400d0dc8 0x28 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0xb4 (size before relaxing) + .literal.sec2_close_session + 0x00000000400d0df0 0x4 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x24 (size before relaxing) + .literal.sec2_new_session + 0x00000000400d0df4 0x4 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x14 (size before relaxing) + .literal.handle_session_command0 + 0x00000000400d0df8 0x30 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x104 (size before relaxing) + .literal.sec2_session_setup + 0x00000000400d0e28 0x8 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x24 (size before relaxing) + .literal.sec2_req_handler + 0x00000000400d0e30 0x18 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x74 (size before relaxing) + .literal.sec2_cleanup + 0x00000000400d0e48 0x0 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x8 (size before relaxing) + .literal.hexdump_mpi + 0x00000000400d0e48 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x8 (size before relaxing) + .literal.calculate_padded_hash + 0x00000000400d0e48 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x30 (size before relaxing) + .literal.calculate_k + 0x00000000400d0e48 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x4 (size before relaxing) + .literal.calculate_u + 0x00000000400d0e48 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x4 (size before relaxing) + .literal.esp_srp_free + 0x00000000400d0e48 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x34 (size before relaxing) + .literal.esp_srp_init + 0x00000000400d0e48 0x8 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x20 (size before relaxing) + .literal.__esp_srp_srv_pubkey + 0x00000000400d0e50 0x8 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x58 (size before relaxing) + .literal.esp_srp_srv_pubkey_from_salt_verifier + 0x00000000400d0e58 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x4 (size before relaxing) + .literal.esp_srp_set_salt_verifier + 0x00000000400d0e58 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x1c (size before relaxing) + .literal.esp_srp_get_session_key + 0x00000000400d0e58 0x8 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x78 (size before relaxing) + .literal.esp_srp_exchange_proofs + 0x00000000400d0e60 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x74 (size before relaxing) + .literal.esp_get_random + 0x00000000400d0e60 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x4 (size before relaxing) + .literal.esp_mpi_new + 0x00000000400d0e60 0x4 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x8 (size before relaxing) + .literal.esp_mpi_free + 0x00000000400d0e64 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x8 (size before relaxing) + .literal.esp_mpi_new_from_bin + 0x00000000400d0e64 0x8 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x14 (size before relaxing) + .literal.esp_mpi_ctx_new + 0x00000000400d0e6c 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x4 (size before relaxing) + .literal.esp_mpi_ctx_free + 0x00000000400d0e6c 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x4 (size before relaxing) + .literal.esp_mpi_sizeof + 0x00000000400d0e6c 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x4 (size before relaxing) + .literal.esp_mpi_to_bin + 0x00000000400d0e6c 0x4 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x18 (size before relaxing) + .literal.esp_mpi_get_rand + 0x00000000400d0e70 0x4 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x8 (size before relaxing) + .literal.esp_mpi_a_exp_b_mod_c + 0x00000000400d0e74 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x4 (size before relaxing) + .literal.esp_mpi_a_mul_b_mod_c + 0x00000000400d0e74 0x8 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x20 (size before relaxing) + .literal.esp_mpi_a_add_b_mod_c + 0x00000000400d0e7c 0x8 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x20 (size before relaxing) + .literal.find_attr_with_handle + 0x00000000400d0e84 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .literal.uuid128_to_handler + 0x00000000400d0e88 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .literal.transport_simple_ble_set_mtu + 0x00000000400d0e8c 0x0 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x4 (size before relaxing) + .literal.gatt_svr_register_cb + 0x00000000400d0e8c 0xc esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x10 (size before relaxing) + .literal.simple_ble_gatts_get_attr_value + 0x00000000400d0e98 0x8 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x14 (size before relaxing) + .literal.simple_ble_on_reset + 0x00000000400d0ea0 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x10 (size before relaxing) + .literal.nimble_host_task + 0x00000000400d0ea4 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x18 (size before relaxing) + .literal.ble_gatt_add_primary_svcs + 0x00000000400d0ea8 0x8 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x18 (size before relaxing) + .literal.ble_gatt_add_characteristics + 0x00000000400d0eb0 0x10 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x2c (size before relaxing) + .literal.ble_gatt_add_char_dsc + 0x00000000400d0ec0 0x8 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x28 (size before relaxing) + .literal.populate_gatt_db + 0x00000000400d0ec8 0x18 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x60 (size before relaxing) + .literal.transport_simple_ble_disconnect + 0x00000000400d0ee0 0xc esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x28 (size before relaxing) + .literal.transport_simple_ble_connect + 0x00000000400d0eec 0x8 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x28 (size before relaxing) + .literal.simple_ble_gatts_set_attr_value + 0x00000000400d0ef4 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x20 (size before relaxing) + .literal.free_gatt_ble_misc_memory + 0x00000000400d0ef8 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x38 (size before relaxing) + .literal.protocomm_ble_cleanup + 0x00000000400d0efc 0xc esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x24 (size before relaxing) + .literal.gatt_svr_chr_access + 0x00000000400d0f08 0x1c esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x9c (size before relaxing) + .literal.gatt_svr_dsc_access + 0x00000000400d0f24 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x18 (size before relaxing) + .literal.simple_ble_advertise + 0x00000000400d0f28 0x20 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x4c (size before relaxing) + .literal.simple_ble_on_sync + 0x00000000400d0f48 0x8 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x2c (size before relaxing) + .literal.simple_ble_gap_event + 0x00000000400d0f50 0x10 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x50 (size before relaxing) + .literal.gatt_svr_init + 0x00000000400d0f60 0x0 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x8 (size before relaxing) + .literal.simple_ble_start + 0x00000000400d0f60 0x28 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x70 (size before relaxing) + .literal.protocomm_ble_start + 0x00000000400d0f88 0x40 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x110 (size before relaxing) + .literal.protocomm_ble_stop + 0x00000000400d0fc8 0x0 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x1c (size before relaxing) + .literal.s0_session_cmd__init + 0x00000000400d0fc8 0x4 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .literal.s0_session_resp__init + 0x00000000400d0fcc 0x4 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .literal.sec0_payload__init + 0x00000000400d0fd0 0x4 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .literal.session_cmd1__init + 0x00000000400d0fd4 0x4 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.session_resp1__init + 0x00000000400d0fd8 0x4 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.session_cmd0__init + 0x00000000400d0fdc 0x4 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.session_resp0__init + 0x00000000400d0fe0 0x4 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.sec1_payload__init + 0x00000000400d0fe4 0x4 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .literal.s2_session_cmd0__init + 0x00000000400d0fe8 0x4 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.s2_session_resp0__init + 0x00000000400d0fec 0x4 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.s2_session_cmd1__init + 0x00000000400d0ff0 0x4 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.s2_session_resp1__init + 0x00000000400d0ff4 0x4 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.sec2_payload__init + 0x00000000400d0ff8 0x4 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .literal.session_data__init + 0x00000000400d0ffc 0x4 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + .literal.session_data__get_packed_size + 0x00000000400d1000 0xc esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + 0x18 (size before relaxing) + .literal.session_data__pack + 0x00000000400d100c 0x4 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + 0x18 (size before relaxing) + .literal.session_data__unpack + 0x00000000400d1010 0x0 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + 0x8 (size before relaxing) + .literal.session_data__free_unpacked + 0x00000000400d1010 0x4 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + 0x18 (size before relaxing) + .literal.async_wakeup_request_end + 0x00000000400d1014 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .literal.coex_bt_wakeup_request_end + 0x00000000400d1014 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .literal.semphr_give_wrapper + 0x00000000400d1014 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .literal.btdm_wakeup_request_callback + 0x00000000400d1014 0x4 esp-idf/bt/libbt.a(bt.c.obj) + 0xc (size before relaxing) + .literal.queue_send_hlevel_wrapper + 0x00000000400d1018 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0xc (size before relaxing) + .literal.mutex_unlock_wrapper + 0x00000000400d1018 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .literal.semphr_take_wrapper + 0x00000000400d1018 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0xc (size before relaxing) + .literal.async_wakeup_request + 0x00000000400d1018 0x4 esp-idf/bt/libbt.a(bt.c.obj) + 0x20 (size before relaxing) + .literal.coex_bt_wakeup_request + 0x00000000400d101c 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .literal.mutex_lock_wrapper + 0x00000000400d101c 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .literal.try_heap_caps_add_region + 0x00000000400d101c 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .literal.coex_version_get_wrapper + 0x00000000400d101c 0x8 esp-idf/bt/libbt.a(bt.c.obj) + 0xc (size before relaxing) + .literal.malloc_internal_wrapper + 0x00000000400d1024 0x4 esp-idf/bt/libbt.a(bt.c.obj) + 0x8 (size before relaxing) + .literal.queue_create_wrapper + 0x00000000400d1028 0x10 esp-idf/bt/libbt.a(bt.c.obj) + 0x24 (size before relaxing) + .literal.customer_queue_create_hlevel_wrapper + 0x00000000400d1038 0xc esp-idf/bt/libbt.a(bt.c.obj) + 0x28 (size before relaxing) + .literal.coex_register_wifi_channel_change_callback_wrapper + 0x00000000400d1044 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .literal.coex_wifi_channel_get_wrapper + 0x00000000400d1044 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .literal.coex_schm_curr_phase_get_wrapper + 0x00000000400d1044 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .literal.coex_schm_curr_period_get_wrapper + 0x00000000400d1044 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .literal.coex_schm_interval_get_wrapper + 0x00000000400d1044 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .literal.coex_schm_status_bit_set_wrapper + 0x00000000400d1044 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .literal.coex_schm_status_bit_clear_wrapper + 0x00000000400d1044 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .literal.coex_schm_register_btdm_callback_wrapper + 0x00000000400d1044 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .literal.coex_register_bt_cb_wrapper + 0x00000000400d1044 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .literal.btdm_check_and_init_bb + 0x00000000400d1044 0x4 esp-idf/bt/libbt.a(bt.c.obj) + 0xc (size before relaxing) + .literal.btdm_sleep_exit_phase3_wrapper + 0x00000000400d1048 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x18 (size before relaxing) + .literal.btdm_sleep_enter_phase2_wrapper + 0x00000000400d1048 0x4 esp-idf/bt/libbt.a(bt.c.obj) + 0x14 (size before relaxing) + .literal.task_delete_wrapper + 0x00000000400d104c 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .literal.task_create_wrapper + 0x00000000400d104c 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x8 (size before relaxing) + .literal.queue_recv_hlevel_wrapper + 0x00000000400d104c 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0xc (size before relaxing) + .literal.queue_delete_wrapper + 0x00000000400d104c 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x8 (size before relaxing) + .literal.queue_delete_hlevel_wrapper + 0x00000000400d104c 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x8 (size before relaxing) + .literal.mutex_delete_wrapper + 0x00000000400d104c 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .literal.semphr_delete_wrapper + 0x00000000400d104c 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0xc (size before relaxing) + .literal.queue_create_hlevel_wrapper + 0x00000000400d104c 0x4 esp-idf/bt/libbt.a(bt.c.obj) + 0x28 (size before relaxing) + .literal.mutex_create_wrapper + 0x00000000400d1050 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .literal.set_isr_hlevel_wrapper + 0x00000000400d1050 0x4 esp-idf/bt/libbt.a(bt.c.obj) + 0x8 (size before relaxing) + .literal.hli_queue_setup_cb + 0x00000000400d1054 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .literal.hli_queue_setup_pinned_to_core + 0x00000000400d1054 0x4 esp-idf/bt/libbt.a(bt.c.obj) + 0xc (size before relaxing) + .literal.semphr_create_wrapper + 0x00000000400d1058 0x10 esp-idf/bt/libbt.a(bt.c.obj) + 0x30 (size before relaxing) + .literal.btdm_controller_mem_init + 0x00000000400d1068 0x10 esp-idf/bt/libbt.a(bt.c.obj) + 0x18 (size before relaxing) + .literal.bt_controller_deinit_internal + 0x00000000400d1078 0x10 esp-idf/bt/libbt.a(bt.c.obj) + 0x28 (size before relaxing) + .literal.bt_shutdown + 0x00000000400d1088 0x4 esp-idf/bt/libbt.a(bt.c.obj) + 0x10 (size before relaxing) + .literal.bt_controller_shutdown + 0x00000000400d108c 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .literal.esp_vhci_host_check_send_available + 0x00000000400d108c 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .literal.esp_vhci_host_send_packet + 0x00000000400d108c 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0xc (size before relaxing) + .literal.esp_vhci_host_register_callback + 0x00000000400d108c 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x4 (size before relaxing) + .literal.esp_bt_controller_mem_release + 0x00000000400d108c 0x1c esp-idf/bt/libbt.a(bt.c.obj) + 0x44 (size before relaxing) + .literal.esp_bt_mem_release + 0x00000000400d10a8 0x24 esp-idf/bt/libbt.a(bt.c.obj) + 0x50 (size before relaxing) + .literal.esp_bt_controller_init + 0x00000000400d10cc 0x2c esp-idf/bt/libbt.a(bt.c.obj) + 0x98 (size before relaxing) + .literal.esp_bt_controller_deinit + 0x00000000400d10f8 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0xc (size before relaxing) + .literal.esp_bt_controller_enable + 0x00000000400d10f8 0x8 esp-idf/bt/libbt.a(bt.c.obj) + 0x40 (size before relaxing) + .literal.esp_bt_controller_disable + 0x00000000400d1100 0x0 esp-idf/bt/libbt.a(bt.c.obj) + 0x2c (size before relaxing) + .literal.ble_hs_util_ensure_rand_addr + 0x00000000400d1100 0x4 esp-idf/bt/libbt.a(addr.c.obj) + 0x10 (size before relaxing) + .literal.ble_hs_util_ensure_addr + 0x00000000400d1104 0x0 esp-idf/bt/libbt.a(addr.c.obj) + 0x10 (size before relaxing) + .literal.ble_svc_gap_device_name + 0x00000000400d1104 0x4 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .literal.ble_svc_gap_device_name_set + 0x00000000400d1108 0x0 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + 0xc (size before relaxing) + .literal.ble_addr_cmp + 0x00000000400d1108 0x0 esp-idf/bt/libbt.a(ble_store_util.c.obj) + 0x4 (size before relaxing) + .literal.ble_store_util_iter_unique_peer + 0x00000000400d1108 0x0 esp-idf/bt/libbt.a(ble_store_util.c.obj) + 0x8 (size before relaxing) + .literal.ble_store_util_bonded_peers + 0x00000000400d1108 0x4 esp-idf/bt/libbt.a(ble_store_util.c.obj) + 0x8 (size before relaxing) + .literal.ble_store_util_delete_all + 0x00000000400d110c 0x0 esp-idf/bt/libbt.a(ble_store_util.c.obj) + 0x4 (size before relaxing) + .literal.ble_store_util_delete_peer + 0x00000000400d110c 0x0 esp-idf/bt/libbt.a(ble_store_util.c.obj) + 0x20 (size before relaxing) + .literal.ble_store_util_count + 0x00000000400d110c 0x4 esp-idf/bt/libbt.a(ble_store_util.c.obj) + 0x8 (size before relaxing) + .literal.ble_store_util_status_rr + 0x00000000400d1110 0x0 esp-idf/bt/libbt.a(ble_store_util.c.obj) + 0x8 (size before relaxing) + .literal.ble_hs_id_set_pub + 0x00000000400d1110 0x4 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0x10 (size before relaxing) + .literal.ble_hs_id_gen_rnd + 0x00000000400d1114 0x0 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_id_set_nrpa_rnd + 0x00000000400d1114 0x4 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0x18 (size before relaxing) + .literal.ble_hs_id_set_pseudo_rnd + 0x00000000400d1118 0x0 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0x14 (size before relaxing) + .literal.ble_hs_id_set_rnd + 0x00000000400d1118 0x4 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0x2c (size before relaxing) + .literal.ble_hs_id_addr + 0x00000000400d111c 0x4 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0x10 (size before relaxing) + .literal.ble_hs_id_addr_type_usable + 0x00000000400d1120 0x4 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_id_copy_addr + 0x00000000400d1124 0x0 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0x10 (size before relaxing) + .literal.ble_hs_id_use_addr + 0x00000000400d1124 0x0 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0x8 (size before relaxing) + .literal.ble_hs_id_infer_auto + 0x00000000400d1124 0x8 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0x14 (size before relaxing) + .literal.ble_hs_id_reset + 0x00000000400d112c 0x0 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0x8 (size before relaxing) + .literal.ble_hs_wakeup_tx_conn + 0x00000000400d112c 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_event_rx_hci_ev + 0x00000000400d112c 0x8 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x10 (size before relaxing) + .literal.ble_hs_clear_rx_queue + 0x00000000400d1134 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_event_tx_notify + 0x00000000400d1138 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_rx_data + 0x00000000400d1138 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x14 (size before relaxing) + .literal.ble_hs_evq_get + 0x00000000400d113c 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_sched_start_stage2 + 0x00000000400d113c 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_event_start_stage1 + 0x00000000400d1140 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_evq_set + 0x00000000400d1140 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_is_parent_task + 0x00000000400d1140 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x8 (size before relaxing) + .literal.ble_hs_lock_nested + 0x00000000400d1144 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x8 (size before relaxing) + .literal.ble_hs_unlock_nested + 0x00000000400d1148 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x8 (size before relaxing) + .literal.ble_hs_lock + 0x00000000400d1148 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_unlock + 0x00000000400d1148 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_process_rx_data_queue + 0x00000000400d1148 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_event_rx_data + 0x00000000400d1148 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_wakeup_tx + 0x00000000400d1148 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x18 (size before relaxing) + .literal.ble_hs_is_enabled + 0x00000000400d1148 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) + .literal.ble_hs_timer_reset + 0x00000000400d114c 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_timer_sched + 0x00000000400d1150 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x14 (size before relaxing) + .literal.ble_hs_sync + 0x00000000400d1150 0xc esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x28 (size before relaxing) + .literal.ble_hs_reset + 0x00000000400d115c 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x1c (size before relaxing) + .literal.ble_hs_event_reset + 0x00000000400d1160 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_timer_exp + 0x00000000400d1160 0xc esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x40 (size before relaxing) + .literal.ble_hs_timer_resched + 0x00000000400d116c 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_enqueue_hci_event + 0x00000000400d116c 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x18 (size before relaxing) + .literal.ble_hs_sched_reset + 0x00000000400d1170 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x10 (size before relaxing) + .literal.ble_hs_hw_error + 0x00000000400d1174 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_start + 0x00000000400d1174 0x8 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x40 (size before relaxing) + .literal.ble_hs_event_start_stage2 + 0x00000000400d117c 0x8 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x14 (size before relaxing) + .literal.ble_hs_tx_data + 0x00000000400d1184 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_init + 0x00000000400d1184 0x28 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0xb0 (size before relaxing) + .literal.ble_transport_to_hs_evt_impl + 0x00000000400d11ac 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x4 (size before relaxing) + .literal.ble_transport_to_hs_acl_impl + 0x00000000400d11ac 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x4 (size before relaxing) + .literal.ble_transport_hs_init + 0x00000000400d11ac 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_deinit + 0x00000000400d11ac 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x3c (size before relaxing) + .literal.ble_hs_hci_evt_dispatch_find + 0x00000000400d11ac 0x4 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + .literal.ble_hs_hci_evt_le_dispatch_find + 0x00000000400d11b0 0x4 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + .literal.ble_hs_hci_evt_le_meta + 0x00000000400d11b4 0x0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_hci_evt_hw_error + 0x00000000400d11b4 0x0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_hci_evt_enc_key_refresh + 0x00000000400d11b4 0x0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_hci_evt_encrypt_change + 0x00000000400d11b4 0x0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_hci_evt_disconn_complete + 0x00000000400d11b4 0x0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x18 (size before relaxing) + .literal.ble_hs_hci_evt_num_completed_pkts + 0x00000000400d11b4 0x0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x18 (size before relaxing) + .literal.ble_hs_hci_evt_le_phy_update_complete + 0x00000000400d11b4 0x0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_hci_evt_le_dir_adv_rpt + 0x00000000400d11b4 0x0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_hci_evt_le_adv_rpt + 0x00000000400d11b4 0x4 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_hci_evt_le_enh_conn_complete + 0x00000000400d11b8 0x0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x20 (size before relaxing) + .literal.ble_hs_hci_evt_le_conn_complete + 0x00000000400d11b8 0x0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x18 (size before relaxing) + .literal.ble_hs_hci_evt_le_conn_parm_req + 0x00000000400d11b8 0x0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_hci_evt_le_lt_key_req + 0x00000000400d11b8 0x0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_hci_evt_le_rd_rem_used_feat_complete + 0x00000000400d11b8 0x0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_hci_evt_le_conn_upd_complete + 0x00000000400d11b8 0x0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_hci_evt_process + 0x00000000400d11b8 0x0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x8 (size before relaxing) + .literal.ble_hs_hci_evt_acl_process + 0x00000000400d11b8 0x0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x24 (size before relaxing) + .literal.ble_mqueue_init + 0x00000000400d11b8 0x0 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + 0x4 (size before relaxing) + .literal.ble_mqueue_deinit + 0x00000000400d11b8 0x0 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + 0x4 (size before relaxing) + .literal.ble_mqueue_get + 0x00000000400d11b8 0x0 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + 0x4 (size before relaxing) + .literal.ble_mqueue_put + 0x00000000400d11b8 0x0 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + 0x4 (size before relaxing) + .literal.ble_att_rx_dispatch_entry_find + 0x00000000400d11b8 0x4 esp-idf/bt/libbt.a(ble_att.c.obj) + .literal.ble_att_rx_handle_unknown_request + 0x00000000400d11bc 0x0 esp-idf/bt/libbt.a(ble_att.c.obj) + 0x8 (size before relaxing) + .literal.ble_att_rx + 0x00000000400d11bc 0x4 esp-idf/bt/libbt.a(ble_att.c.obj) + 0x1c (size before relaxing) + .literal.ble_att_conn_chan_find + 0x00000000400d11c0 0x0 esp-idf/bt/libbt.a(ble_att.c.obj) + 0x4 (size before relaxing) + .literal.ble_att_chan_mtu + 0x00000000400d11c0 0x4 esp-idf/bt/libbt.a(ble_att.c.obj) + .literal.ble_att_truncate_to_mtu + 0x00000000400d11c4 0x0 esp-idf/bt/libbt.a(ble_att.c.obj) + 0x8 (size before relaxing) + .literal.ble_att_mtu + 0x00000000400d11c4 0x0 esp-idf/bt/libbt.a(ble_att.c.obj) + 0x10 (size before relaxing) + .literal.ble_att_create_chan + 0x00000000400d11c4 0x8 esp-idf/bt/libbt.a(ble_att.c.obj) + 0xc (size before relaxing) + .literal.ble_att_init + 0x00000000400d11cc 0x0 esp-idf/bt/libbt.a(ble_att.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_proc_set_exp_timer + 0x00000000400d11cc 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x8 (size before relaxing) + .literal.ble_gattc_proc_set_resume_timer + 0x00000000400d11d0 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x8 (size before relaxing) + .literal.ble_gattc_process_resume_status + 0x00000000400d11d4 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_err_dispatch_get + 0x00000000400d11d4 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_resume_dispatch_get + 0x00000000400d11d8 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_tmo_dispatch_get + 0x00000000400d11dc 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_proc_matches_conn_rx_entry + 0x00000000400d11e0 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x8 (size before relaxing) + .literal.ble_gattc_ticks_until_resume + 0x00000000400d11e4 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_proc_timeout + 0x00000000400d11e4 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_error + 0x00000000400d11e4 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .literal.ble_gattc_mtu_cb + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_mtu_tmo + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_mtu_err + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_disc_all_svcs_cb + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_disc_all_svcs_tmo + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_disc_all_svcs_err + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_disc_svc_uuid_cb + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_disc_svc_uuid_tmo + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_disc_svc_uuid_err + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_disc_svc_uuid_rx_hinfo + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x8 (size before relaxing) + .literal.ble_gattc_find_inc_svcs_cb + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_find_inc_svcs_tmo + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_find_inc_svcs_err + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_disc_all_chrs_cb + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_disc_all_chrs_tmo + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_disc_all_chrs_err + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_disc_chr_uuid_cb + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_disc_chr_uuid_tmo + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_disc_chr_uuid_err + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_disc_all_dscs_cb + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_disc_all_dscs_tmo + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_disc_all_dscs_err + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_disc_all_dscs_rx_idata + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x8 (size before relaxing) + .literal.ble_gattc_read_cb + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_read_tmo + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_read_err + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_read_rx_read_rsp + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_read_uuid_cb + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_read_uuid_tmo + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_read_uuid_err + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_read_uuid_rx_complete + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x8 (size before relaxing) + .literal.ble_gattc_read_long_cb + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_read_long_tmo + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_read_long_err + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_read_mult_cb + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_read_mult_tmo + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_read_mult_err + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_write_long_cb + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_write_long_tmo + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_write_long_rx_exec + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_write_reliable_cb + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_write_reliable_tmo + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_write_reliable_rx_exec + 0x00000000400d11e8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_extract + 0x00000000400d11e8 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_extract_expired + 0x00000000400d11ec 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x10 (size before relaxing) + .literal.ble_gattc_extract_stalled + 0x00000000400d11f0 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x8 (size before relaxing) + .literal.ble_gattc_extract_by_conn_op + 0x00000000400d11f4 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x8 (size before relaxing) + .literal.ble_gattc_extract_first_by_conn_op + 0x00000000400d11f8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_extract_one + 0x00000000400d11f8 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_extract_with_rx_entry + 0x00000000400d11f8 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x8 (size before relaxing) + .literal.ble_gattc_proc_insert + 0x00000000400d11fc 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gatts_indicate_tmo + 0x00000000400d11fc 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_write_cb + 0x00000000400d11fc 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_write_tmo + 0x00000000400d11fc 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_write_err + 0x00000000400d11fc 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_proc_free + 0x00000000400d11fc 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x10 (size before relaxing) + .literal.ble_gattc_fail_procs + 0x00000000400d1200 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_write_reliable_err + 0x00000000400d1200 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x8 (size before relaxing) + .literal.ble_gattc_write_long_err + 0x00000000400d1200 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x8 (size before relaxing) + .literal.ble_gattc_write_reliable_tx + 0x00000000400d1200 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x18 (size before relaxing) + .literal.ble_gattc_write_reliable_resume + 0x00000000400d1200 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_write_long_tx + 0x00000000400d1200 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x18 (size before relaxing) + .literal.ble_gattc_write_long_resume + 0x00000000400d1200 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_read_long_tx + 0x00000000400d1200 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x8 (size before relaxing) + .literal.ble_gattc_read_long_resume + 0x00000000400d1200 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_read_long_rx_read_rsp + 0x00000000400d1200 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x10 (size before relaxing) + .literal.ble_gattc_disc_all_dscs_tx + 0x00000000400d1200 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_disc_all_dscs_resume + 0x00000000400d1200 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_disc_all_dscs_rx_complete + 0x00000000400d1200 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_disc_chr_uuid_tx + 0x00000000400d1200 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x8 (size before relaxing) + .literal.ble_gattc_disc_chr_uuid_resume + 0x00000000400d1204 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_disc_chr_uuid_rx_complete + 0x00000000400d1204 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_disc_all_chrs_tx + 0x00000000400d1204 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x8 (size before relaxing) + .literal.ble_gattc_disc_all_chrs_resume + 0x00000000400d1204 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_disc_all_chrs_rx_complete + 0x00000000400d1204 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_find_inc_svcs_tx + 0x00000000400d1204 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_find_inc_svcs_resume + 0x00000000400d1208 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_find_inc_svcs_rx_complete + 0x00000000400d1208 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x10 (size before relaxing) + .literal.ble_gattc_disc_svc_uuid_tx + 0x00000000400d1208 0x8 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x14 (size before relaxing) + .literal.ble_gattc_disc_svc_uuid_resume + 0x00000000400d1210 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_disc_svc_uuid_rx_complete + 0x00000000400d1210 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x10 (size before relaxing) + .literal.ble_gattc_disc_all_svcs_tx + 0x00000000400d1210 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_disc_all_svcs_resume + 0x00000000400d1214 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_disc_all_svcs_rx_complete + 0x00000000400d1214 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x10 (size before relaxing) + .literal.ble_gattc_process_status + 0x00000000400d1214 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x10 (size before relaxing) + .literal.ble_gattc_resume_procs + 0x00000000400d1214 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x10 (size before relaxing) + .literal.ble_gattc_proc_alloc + 0x00000000400d1214 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_log_proc_init + 0x00000000400d1214 0x8 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x10 (size before relaxing) + .literal.ble_gattc_log_notify + 0x00000000400d121c 0x8 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x18 (size before relaxing) + .literal.ble_gattc_log_indicate + 0x00000000400d1224 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x18 (size before relaxing) + .literal.ble_gattc_read_uuid_rx_adata + 0x00000000400d1228 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gatts_indicate_err + 0x00000000400d1228 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gatts_indicate_rx_rsp + 0x00000000400d1228 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_disc_all_svcs_rx_adata + 0x00000000400d1228 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x8 (size before relaxing) + .literal.ble_gattc_disc_all_chrs_rx_adata + 0x00000000400d1228 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_find_inc_svcs_rx_adata + 0x00000000400d122c 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x18 (size before relaxing) + .literal.ble_gattc_disc_chr_uuid_rx_adata + 0x00000000400d122c 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x14 (size before relaxing) + .literal.ble_gattc_find_inc_svcs_rx_read_rsp + 0x00000000400d122c 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x14 (size before relaxing) + .literal.ble_gattc_write_reliable_rx_prep + 0x00000000400d122c 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_write_long_rx_prep + 0x00000000400d122c 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x10 (size before relaxing) + .literal.ble_gattc_timer + 0x00000000400d122c 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x1c (size before relaxing) + .literal.ble_gatts_notify_custom + 0x00000000400d122c 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x1c (size before relaxing) + .literal.ble_gatts_notify + 0x00000000400d122c 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gatts_indicate_fail_notconn + 0x00000000400d122c 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gatts_indicate_custom + 0x00000000400d122c 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x30 (size before relaxing) + .literal.ble_gatts_indicate + 0x00000000400d122c 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_rx_err + 0x00000000400d122c 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_rx_mtu + 0x00000000400d122c 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_rx_find_info_idata + 0x00000000400d122c 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_rx_find_info_complete + 0x00000000400d122c 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_rx_find_type_value_hinfo + 0x00000000400d122c 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_rx_find_type_value_complete + 0x00000000400d122c 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_rx_read_type_adata + 0x00000000400d122c 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_rx_read_type_complete + 0x00000000400d1230 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_rx_read_group_type_adata + 0x00000000400d1234 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_rx_read_group_type_complete + 0x00000000400d1234 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_rx_read_rsp + 0x00000000400d1234 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_rx_read_blob_rsp + 0x00000000400d1238 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_rx_read_mult_rsp + 0x00000000400d1238 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_rx_write_rsp + 0x00000000400d1238 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_rx_prep_write_rsp + 0x00000000400d1238 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_rx_exec_write_rsp + 0x00000000400d123c 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gatts_rx_indicate_rsp + 0x00000000400d1240 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xc (size before relaxing) + .literal.ble_gattc_connection_broken + 0x00000000400d1240 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x4 (size before relaxing) + .literal.ble_gattc_init + 0x00000000400d1240 0x8 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x14 (size before relaxing) + .literal.ble_store_status + 0x00000000400d1248 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x4 (size before relaxing) + .literal.ble_addr_cmp + 0x00000000400d1248 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x4 (size before relaxing) + .literal.ble_store_read + 0x00000000400d1248 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) + 0xc (size before relaxing) + .literal.ble_store_delete + 0x00000000400d1248 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) + 0xc (size before relaxing) + .literal.ble_store_overflow_event + 0x00000000400d1248 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x4 (size before relaxing) + .literal.ble_store_write + 0x00000000400d1248 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x10 (size before relaxing) + .literal.ble_store_persist_sec + 0x00000000400d1248 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x4 (size before relaxing) + .literal.ble_store_full_event + 0x00000000400d1248 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x4 (size before relaxing) + .literal.ble_store_read_our_sec + 0x00000000400d1248 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x4 (size before relaxing) + .literal.ble_store_write_our_sec + 0x00000000400d1248 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x4 (size before relaxing) + .literal.ble_store_read_peer_sec + 0x00000000400d1248 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x4 (size before relaxing) + .literal.ble_store_write_peer_sec + 0x00000000400d1248 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) + 0xc (size before relaxing) + .literal.ble_store_read_cccd + 0x00000000400d1248 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x4 (size before relaxing) + .literal.ble_store_write_cccd + 0x00000000400d1248 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x4 (size before relaxing) + .literal.ble_store_delete_cccd + 0x00000000400d1248 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x4 (size before relaxing) + .literal.ble_store_iterate + 0x00000000400d1248 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x8 (size before relaxing) + .literal.ble_att_clt_parse_find_type_value_hinfo + 0x00000000400d1248 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x8 (size before relaxing) + .literal.ble_att_clt_parse_read_group_type_adata + 0x00000000400d1248 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0xc (size before relaxing) + .literal.ble_att_clt_parse_find_info_entry + 0x00000000400d1248 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x14 (size before relaxing) + .literal.ble_att_clt_rx_error + 0x00000000400d1248 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x8 (size before relaxing) + .literal.ble_att_clt_rx_mtu + 0x00000000400d1248 0x4 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x20 (size before relaxing) + .literal.ble_att_clt_tx_find_info + 0x00000000400d124c 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x8 (size before relaxing) + .literal.ble_att_clt_rx_find_info + 0x00000000400d124c 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x14 (size before relaxing) + .literal.ble_att_clt_tx_find_type_value + 0x00000000400d124c 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0xc (size before relaxing) + .literal.ble_att_clt_rx_find_type_value + 0x00000000400d124c 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0xc (size before relaxing) + .literal.ble_att_clt_tx_read_type + 0x00000000400d124c 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x10 (size before relaxing) + .literal.ble_att_clt_rx_read_type + 0x00000000400d124c 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x18 (size before relaxing) + .literal.ble_att_clt_tx_read + 0x00000000400d124c 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x8 (size before relaxing) + .literal.ble_att_clt_rx_read + 0x00000000400d124c 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x4 (size before relaxing) + .literal.ble_att_clt_tx_read_blob + 0x00000000400d124c 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x8 (size before relaxing) + .literal.ble_att_clt_rx_read_blob + 0x00000000400d124c 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x4 (size before relaxing) + .literal.ble_att_clt_rx_read_mult + 0x00000000400d124c 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x4 (size before relaxing) + .literal.ble_att_clt_tx_read_group_type + 0x00000000400d124c 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x10 (size before relaxing) + .literal.ble_att_clt_rx_read_group_type + 0x00000000400d124c 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x18 (size before relaxing) + .literal.ble_att_clt_rx_write + 0x00000000400d124c 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x4 (size before relaxing) + .literal.ble_att_clt_tx_prep_write + 0x00000000400d124c 0x4 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x14 (size before relaxing) + .literal.ble_att_clt_rx_prep_write + 0x00000000400d1250 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0xc (size before relaxing) + .literal.ble_att_clt_tx_exec_write + 0x00000000400d1250 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x8 (size before relaxing) + .literal.ble_att_clt_rx_exec_write + 0x00000000400d1250 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x4 (size before relaxing) + .literal.ble_att_clt_tx_notify + 0x00000000400d1250 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x10 (size before relaxing) + .literal.ble_att_clt_tx_indicate + 0x00000000400d1250 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x10 (size before relaxing) + .literal.ble_att_clt_rx_indicate + 0x00000000400d1250 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_mbuf_gen_pkt + 0x00000000400d1250 0x0 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + 0x8 (size before relaxing) + .literal.ble_hs_mbuf_acl_pkt + 0x00000000400d1250 0x0 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_mbuf_l2cap_pkt + 0x00000000400d1250 0x0 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_mbuf_att_pkt + 0x00000000400d1250 0x0 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_mbuf_from_flat + 0x00000000400d1250 0x0 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_mbuf_to_flat + 0x00000000400d1250 0x0 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_mbuf_pullup_base + 0x00000000400d1250 0x0 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + 0x4 (size before relaxing) + .literal.ble_att_cmd_prepare + 0x00000000400d1250 0x0 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + 0x8 (size before relaxing) + .literal.ble_att_cmd_get + 0x00000000400d1250 0x0 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + 0x8 (size before relaxing) + .literal.ble_att_tx + 0x00000000400d1250 0x4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + 0x1c (size before relaxing) + .literal.ble_hs_log_mbuf + 0x00000000400d1254 0x0 esp-idf/bt/libbt.a(ble_hs_log.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_startup_reset_tx + 0x00000000400d1254 0x4 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + 0x8 (size before relaxing) + .literal.ble_hs_startup_read_sup_f_tx + 0x00000000400d1258 0xc esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + 0x18 (size before relaxing) + .literal.ble_hs_startup_set_evmask_tx + 0x00000000400d1264 0x14 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + 0x24 (size before relaxing) + .literal.ble_hs_startup_le_set_evmask_tx + 0x00000000400d1278 0x8 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + 0x10 (size before relaxing) + .literal.ble_hs_startup_le_read_buf_sz_tx + 0x00000000400d1280 0x4 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + 0x8 (size before relaxing) + .literal.ble_hs_startup_read_buf_sz_tx + 0x00000000400d1284 0x4 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + 0x8 (size before relaxing) + .literal.ble_hs_startup_read_local_ver_tx + 0x00000000400d1288 0x4 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_startup_read_buf_sz + 0x00000000400d128c 0x0 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_startup_le_read_sup_f_tx + 0x00000000400d128c 0x4 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_startup_read_bd_addr + 0x00000000400d1290 0x4 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_startup_go + 0x00000000400d1294 0x4 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + 0x3c (size before relaxing) + .literal.ble_l2cap_sig_next_id + 0x00000000400d1298 0x4 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + .literal.ble_l2cap_sig_dispatch_get + 0x00000000400d129c 0x4 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + .literal.ble_l2cap_sig_check_conn_params + 0x00000000400d12a0 0x8 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + .literal.ble_l2cap_sig_proc_insert + 0x00000000400d12a8 0x4 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0xc (size before relaxing) + .literal.ble_l2cap_sig_proc_extract + 0x00000000400d12ac 0x4 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x10 (size before relaxing) + .literal.ble_l2cap_sig_extract_expired + 0x00000000400d12b0 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x14 (size before relaxing) + .literal.ble_l2cap_sig_proc_alloc + 0x00000000400d12b0 0x4 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0xc (size before relaxing) + .literal.ble_l2cap_sig_proc_set_timer + 0x00000000400d12b4 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0xc (size before relaxing) + .literal.ble_l2cap_sig_proc_free + 0x00000000400d12b4 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x8 (size before relaxing) + .literal.ble_l2cap_sig_process_status + 0x00000000400d12b4 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0xc (size before relaxing) + .literal.ble_l2cap_sig_rx_reject + 0x00000000400d12b4 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x8 (size before relaxing) + .literal.ble_l2cap_sig_update_rsp_rx + 0x00000000400d12b4 0x4 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x10 (size before relaxing) + .literal.ble_l2cap_sig_rx + 0x00000000400d12b8 0x4 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x18 (size before relaxing) + .literal.ble_l2cap_sig_update_req_rx + 0x00000000400d12bc 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x1c (size before relaxing) + .literal.ble_l2cap_sig_update + 0x00000000400d12bc 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x24 (size before relaxing) + .literal.ble_l2cap_sig_create_chan + 0x00000000400d12bc 0x4 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x8 (size before relaxing) + .literal.ble_l2cap_sig_conn_broken + 0x00000000400d12c0 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0xc (size before relaxing) + .literal.ble_l2cap_sig_timer + 0x00000000400d12c0 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0xc (size before relaxing) + .literal.ble_l2cap_sig_init + 0x00000000400d12c0 0x8 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x14 (size before relaxing) + .literal.ble_gap_call_event_cb + 0x00000000400d12c8 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x4 (size before relaxing) + .literal.ble_gap_is_preempted + 0x00000000400d12c8 0x8 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_master_ticks_until_exp + 0x00000000400d12d0 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0xc (size before relaxing) + .literal.ble_gap_slave_ticks_until_exp + 0x00000000400d12d0 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0xc (size before relaxing) + .literal.ble_gap_update_next_exp + 0x00000000400d12d0 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x10 (size before relaxing) + .literal.ble_gap_adv_active_instance + 0x00000000400d12d4 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x4 (size before relaxing) + .literal.ble_gap_accept_master_conn + 0x00000000400d12d4 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x4 (size before relaxing) + .literal.ble_gap_accept_slave_conn + 0x00000000400d12d4 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x8 (size before relaxing) + .literal.ble_gap_update_entry_find + 0x00000000400d12d4 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x4 (size before relaxing) + .literal.ble_gap_validate_conn_params + 0x00000000400d12d4 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_event_listener_call + 0x00000000400d12d8 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + .literal.ble_gap_extract_conn_cb + 0x00000000400d12dc 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x10 (size before relaxing) + .literal.ble_gap_call_conn_event_cb + 0x00000000400d12dc 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x8 (size before relaxing) + .literal.ble_gap_fill_conn_desc + 0x00000000400d12dc 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x1c (size before relaxing) + .literal.ble_gap_conn_to_snapshot + 0x00000000400d12dc 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x4 (size before relaxing) + .literal.ble_gap_find_snapshot + 0x00000000400d12dc 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x14 (size before relaxing) + .literal.ble_gap_rd_rem_sup_feat_tx + 0x00000000400d12dc 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x8 (size before relaxing) + .literal.ble_gap_conn_cancel_tx + 0x00000000400d12e0 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x8 (size before relaxing) + .literal.ble_gap_disc_enable_tx + 0x00000000400d12e4 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x8 (size before relaxing) + .literal.ble_gap_disc_disable_tx + 0x00000000400d12e8 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x4 (size before relaxing) + .literal.ble_gap_adv_enable_tx + 0x00000000400d12e8 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x8 (size before relaxing) + .literal.ble_gap_adv_params_tx + 0x00000000400d12ec 0xc esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x14 (size before relaxing) + .literal.ble_gap_tx_param_pos_reply + 0x00000000400d12f8 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x8 (size before relaxing) + .literal.ble_gap_tx_param_neg_reply + 0x00000000400d12fc 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x8 (size before relaxing) + .literal.ble_gap_update_tx + 0x00000000400d1300 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x8 (size before relaxing) + .literal.ble_gap_update_entry_remove + 0x00000000400d1304 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0xc (size before relaxing) + .literal.ble_gap_slave_reset_state + 0x00000000400d1304 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x8 (size before relaxing) + .literal.ble_gap_slave_extract_cb + 0x00000000400d1304 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x10 (size before relaxing) + .literal.ble_gap_adv_finished + 0x00000000400d1304 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x8 (size before relaxing) + .literal.ble_gap_slave_timer + 0x00000000400d1304 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x14 (size before relaxing) + .literal.ble_gap_master_reset_state + 0x00000000400d1304 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x8 (size before relaxing) + .literal.ble_gap_master_extract_state + 0x00000000400d1304 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x14 (size before relaxing) + .literal.ble_gap_master_connect_failure + 0x00000000400d1304 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x8 (size before relaxing) + .literal.ble_gap_disc_complete + 0x00000000400d1308 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x10 (size before relaxing) + .literal.ble_gap_master_timer + 0x00000000400d1308 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x1c (size before relaxing) + .literal.ble_gap_disc_report + 0x00000000400d1308 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x10 (size before relaxing) + .literal.ble_gap_master_connect_cancelled + 0x00000000400d1308 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x4 (size before relaxing) + .literal.ble_gap_master_failed + 0x00000000400d1308 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x10 (size before relaxing) + .literal.ble_gap_slave_set_timer + 0x00000000400d1308 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0xc (size before relaxing) + .literal.ble_gap_update_entry_free + 0x00000000400d1308 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x8 (size before relaxing) + .literal.ble_gap_update_timer + 0x00000000400d130c 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x18 (size before relaxing) + .literal.ble_gap_rx_adv_report_sanity_check + 0x00000000400d130c 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x8 (size before relaxing) + .literal.ble_gap_log_adv + 0x00000000400d130c 0x14 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x34 (size before relaxing) + .literal.ble_gap_log_update + 0x00000000400d1320 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x10 (size before relaxing) + .literal.ble_addr_cmp + 0x00000000400d1324 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x4 (size before relaxing) + .literal.ble_gap_adv_validate + 0x00000000400d1324 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0xc (size before relaxing) + .literal.ble_gap_update_entry_alloc + 0x00000000400d1324 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0xc (size before relaxing) + .literal.ble_gap_conn_find + 0x00000000400d1324 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x10 (size before relaxing) + .literal.ble_gap_master_in_progress + 0x00000000400d1324 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x4 (size before relaxing) + .literal.ble_gap_rx_adv_report + 0x00000000400d1324 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x8 (size before relaxing) + .literal.ble_gap_rx_rd_rem_sup_feat_complete + 0x00000000400d1324 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x10 (size before relaxing) + .literal.ble_gap_rx_l2cap_update_req + 0x00000000400d1328 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x4 (size before relaxing) + .literal.ble_gap_rx_phy_update_complete + 0x00000000400d1328 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x8 (size before relaxing) + .literal.ble_gap_timer + 0x00000000400d1328 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x10 (size before relaxing) + .literal.ble_gap_adv_start + 0x00000000400d1328 0x8 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x54 (size before relaxing) + .literal.ble_gap_adv_set_data + 0x00000000400d1330 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x10 (size before relaxing) + .literal.ble_gap_adv_rsp_set_data + 0x00000000400d1334 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x10 (size before relaxing) + .literal.ble_gap_adv_set_fields + 0x00000000400d1338 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0xc (size before relaxing) + .literal.ble_gap_adv_rsp_set_fields + 0x00000000400d1338 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x8 (size before relaxing) + .literal.ble_gap_adv_active + 0x00000000400d1338 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x4 (size before relaxing) + .literal.ble_gap_rx_conn_complete + 0x00000000400d1338 0x10 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x80 (size before relaxing) + .literal.ble_gap_adv_stop_no_lock + 0x00000000400d1348 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x1c (size before relaxing) + .literal.ble_gap_adv_stop + 0x00000000400d134c 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x10 (size before relaxing) + .literal.ble_gap_disc_active + 0x00000000400d134c 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x4 (size before relaxing) + .literal.ble_gap_disc_cancel_no_lock + 0x00000000400d134c 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0xc (size before relaxing) + .literal.ble_gap_conn_active + 0x00000000400d134c 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x4 (size before relaxing) + .literal.ble_gap_conn_cancel_no_lock + 0x00000000400d134c 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x1c (size before relaxing) + .literal.ble_gap_terminate_with_conn + 0x00000000400d1350 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x14 (size before relaxing) + .literal.ble_gap_terminate + 0x00000000400d1354 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x14 (size before relaxing) + .literal.ble_gap_update_notify + 0x00000000400d1354 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0xc (size before relaxing) + .literal.ble_gap_conn_broken + 0x00000000400d1354 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x38 (size before relaxing) + .literal.ble_gap_rx_disconn_complete + 0x00000000400d1354 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0xc (size before relaxing) + .literal.ble_gap_reset_state + 0x00000000400d1354 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x18 (size before relaxing) + .literal.ble_gap_rx_update_complete + 0x00000000400d1354 0x8 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x30 (size before relaxing) + .literal.ble_gap_update_l2cap_cb + 0x00000000400d135c 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x14 (size before relaxing) + .literal.ble_gap_update_failed + 0x00000000400d135c 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x14 (size before relaxing) + .literal.ble_gap_rx_param_req + 0x00000000400d135c 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x10 (size before relaxing) + .literal.ble_gap_update_params + 0x00000000400d135c 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x6c (size before relaxing) + .literal.ble_gap_unpair + 0x00000000400d1360 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x20 (size before relaxing) + .literal.ble_gap_unpair_oldest_peer + 0x00000000400d1360 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0xc (size before relaxing) + .literal.ble_gap_unpair_oldest_except + 0x00000000400d1360 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x10 (size before relaxing) + .literal.ble_gap_passkey_event + 0x00000000400d1360 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x4 (size before relaxing) + .literal.ble_gap_enc_event + 0x00000000400d1360 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x10 (size before relaxing) + .literal.ble_gap_identity_event + 0x00000000400d1360 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x4 (size before relaxing) + .literal.ble_gap_repeat_pairing_event + 0x00000000400d1360 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x4 (size before relaxing) + .literal.ble_gap_notify_rx_event + 0x00000000400d1360 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0xc (size before relaxing) + .literal.ble_gap_notify_tx_event + 0x00000000400d1360 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x8 (size before relaxing) + .literal.ble_gap_subscribe_event + 0x00000000400d1360 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x8 (size before relaxing) + .literal.ble_gap_mtu_event + 0x00000000400d1360 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x8 (size before relaxing) + .literal.ble_gap_preempt_no_lock + 0x00000000400d1360 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x14 (size before relaxing) + .literal.ble_gap_preempt + 0x00000000400d1360 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x10 (size before relaxing) + .literal.ble_gap_preempt_done + 0x00000000400d1360 0x8 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x24 (size before relaxing) + .literal.ble_gap_event_listener_register + 0x00000000400d1368 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x4 (size before relaxing) + .literal.ble_gap_event_listener_unregister + 0x00000000400d1368 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x4 (size before relaxing) + .literal.ble_gap_init + 0x00000000400d1368 0xc esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x38 (size before relaxing) + .literal.ble_gap_deinit + 0x00000000400d1374 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x8 (size before relaxing) + .literal.ble_uuid_init_from_buf + 0x00000000400d1374 0x0 esp-idf/bt/libbt.a(ble_uuid.c.obj) + 0xc (size before relaxing) + .literal.ble_uuid_cmp + 0x00000000400d1374 0x0 esp-idf/bt/libbt.a(ble_uuid.c.obj) + 0x4 (size before relaxing) + .literal.ble_uuid_init_from_att_buf + 0x00000000400d1374 0x0 esp-idf/bt/libbt.a(ble_uuid.c.obj) + 0x8 (size before relaxing) + .literal.ble_uuid_init_from_att_mbuf + 0x00000000400d1374 0x0 esp-idf/bt/libbt.a(ble_uuid.c.obj) + 0x8 (size before relaxing) + .literal.ble_uuid_flat + 0x00000000400d1374 0xc esp-idf/bt/libbt.a(ble_uuid.c.obj) + 0x14 (size before relaxing) + .literal.ble_uuid_to_mbuf + 0x00000000400d1380 0x0 esp-idf/bt/libbt.a(ble_uuid.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_pvcy_add_entry_hci + 0x00000000400d1380 0x4 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + 0x14 (size before relaxing) + .literal.ble_hs_pvcy_set_addr_timeout + 0x00000000400d1384 0x0 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_pvcy_remove_entry + 0x00000000400d1384 0x0 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + 0x8 (size before relaxing) + .literal.ble_hs_pvcy_add_entry + 0x00000000400d1384 0x0 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_pvcy_ensure_started + 0x00000000400d1384 0x4 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_pvcy_set_our_irk + 0x00000000400d1388 0x4 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + 0x30 (size before relaxing) + .literal.ble_hs_pvcy_our_irk + 0x00000000400d138c 0x0 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_pvcy_enabled + 0x00000000400d138c 0x0 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_flow_tx_num_comp_pkts + 0x00000000400d138c 0x4 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_flow_event_cb + 0x00000000400d1390 0x4 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + 0x14 (size before relaxing) + .literal.ble_hs_flow_inc_completed_pkts + 0x00000000400d1394 0x8 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + 0x18 (size before relaxing) + .literal.ble_hs_flow_acl_free + 0x00000000400d139c 0x4 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + 0x18 (size before relaxing) + .literal.ble_hs_flow_connection_broken + 0x00000000400d13a0 0x0 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_flow_track_data_mbuf + 0x00000000400d13a0 0x0 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_flow_startup + 0x00000000400d13a0 0x10 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + 0x38 (size before relaxing) + .literal.ble_hs_flow_init + 0x00000000400d13b0 0x0 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + 0x14 (size before relaxing) + .literal.ble_hs_flow_deinit + 0x00000000400d13b0 0x0 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + 0xc (size before relaxing) + .literal.ble_l2cap_get_mtu + 0x00000000400d13b0 0x0 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x4 (size before relaxing) + .literal.ble_l2cap_append_rx + 0x00000000400d13b0 0xc esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x14 (size before relaxing) + .literal.ble_l2cap_chan_alloc + 0x00000000400d13bc 0x4 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0xc (size before relaxing) + .literal.ble_l2cap_chan_free + 0x00000000400d13c0 0x0 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0xc (size before relaxing) + .literal.ble_l2cap_parse_hdr + 0x00000000400d13c0 0x0 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0xc (size before relaxing) + .literal.ble_l2cap_prepend_hdr + 0x00000000400d13c0 0x0 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0xc (size before relaxing) + .literal.ble_l2cap_get_conn_handle + 0x00000000400d13c0 0x0 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x4 (size before relaxing) + .literal.ble_l2cap_remove_rx + 0x00000000400d13c0 0x0 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x4 (size before relaxing) + .literal.ble_l2cap_rx_payload + 0x00000000400d13c0 0x0 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x14 (size before relaxing) + .literal.ble_l2cap_rx + 0x00000000400d13c0 0xc esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x30 (size before relaxing) + .literal.ble_l2cap_tx + 0x00000000400d13cc 0x0 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x8 (size before relaxing) + .literal.ble_l2cap_init + 0x00000000400d13cc 0x8 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x18 (size before relaxing) + .literal.ble_hs_misc_restore_one_irk + 0x00000000400d13d4 0x8 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + 0x14 (size before relaxing) + .literal.ble_hs_misc_conn_chan_find + 0x00000000400d13dc 0x0 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + 0x8 (size before relaxing) + .literal.ble_hs_misc_conn_chan_find_reqd + 0x00000000400d13dc 0x0 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_misc_restore_irks + 0x00000000400d13dc 0x4 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + 0x8 (size before relaxing) + .literal.ble_gatts_find_svc_entry_idx + 0x00000000400d13e0 0x8 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .literal.ble_gatts_svc_incs_satisfied + 0x00000000400d13e8 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x8 (size before relaxing) + .literal.ble_gatts_clt_cfg_find_idx + 0x00000000400d13e8 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .literal.ble_gatts_clt_cfg_find + 0x00000000400d13ec 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x4 (size before relaxing) + .literal.ble_gatts_svc_type_to_uuid + 0x00000000400d13ec 0x8 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .literal.ble_gatts_clt_cfg_size + 0x00000000400d13f4 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x4 (size before relaxing) + .literal.ble_gatts_count_resources + 0x00000000400d13f4 0xc esp-idf/bt/libbt.a(ble_gatts.c.obj) + .literal.ble_gatts_clt_cfg_access_locked + 0x00000000400d1400 0x8 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x20 (size before relaxing) + .literal.ble_gatts_subscribe_event + 0x00000000400d1408 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x4 (size before relaxing) + .literal.ble_gatts_clt_cfg_access + 0x00000000400d1408 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x24 (size before relaxing) + .literal.ble_gatts_register_inc + 0x00000000400d140c 0x8 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0xc (size before relaxing) + .literal.ble_gatts_register_clt_cfg_dsc + 0x00000000400d1414 0x8 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0xc (size before relaxing) + .literal.ble_gatts_register_dsc + 0x00000000400d141c 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0xc (size before relaxing) + .literal.ble_gatts_register_chr + 0x00000000400d1420 0x18 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x34 (size before relaxing) + .literal.ble_gatts_register_svc + 0x00000000400d1438 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x24 (size before relaxing) + .literal.ble_gatts_register_round + 0x00000000400d143c 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x10 (size before relaxing) + .literal.ble_gatts_svc_access + 0x00000000400d143c 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0xc (size before relaxing) + .literal.ble_gatts_chr_def_access + 0x00000000400d143c 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x18 (size before relaxing) + .literal.ble_gatts_inc_access + 0x00000000400d1440 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x18 (size before relaxing) + .literal.ble_gatts_val_access + 0x00000000400d1444 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0xc (size before relaxing) + .literal.ble_gatts_chr_val_access + 0x00000000400d1444 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x8 (size before relaxing) + .literal.ble_gatts_dsc_access + 0x00000000400d1448 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x8 (size before relaxing) + .literal.ble_gatts_free_mem + 0x00000000400d1448 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x10 (size before relaxing) + .literal.ble_gatts_free_svc_defs + 0x00000000400d144c 0x8 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0xc (size before relaxing) + .literal.ble_gatts_mutable + 0x00000000400d1454 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x10 (size before relaxing) + .literal.ble_gatts_tx_notifications_one_chr + 0x00000000400d1454 0x8 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x24 (size before relaxing) + .literal.ble_gatts_register_svcs + 0x00000000400d145c 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x10 (size before relaxing) + .literal.ble_gatts_connection_broken + 0x00000000400d1460 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x1c (size before relaxing) + .literal.ble_gatts_stop + 0x00000000400d1464 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x18 (size before relaxing) + .literal.ble_gatts_start + 0x00000000400d1468 0x8 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x78 (size before relaxing) + .literal.ble_gatts_conn_can_alloc + 0x00000000400d1470 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x8 (size before relaxing) + .literal.ble_gatts_conn_init + 0x00000000400d1470 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x18 (size before relaxing) + .literal.ble_gatts_send_next_indicate + 0x00000000400d1470 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x10 (size before relaxing) + .literal.ble_gatts_rx_indicate_ack + 0x00000000400d1470 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x20 (size before relaxing) + .literal.ble_gatts_tx_notifications + 0x00000000400d1470 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0xc (size before relaxing) + .literal.ble_gatts_bonding_established + 0x00000000400d1470 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x24 (size before relaxing) + .literal.ble_gatts_bonding_restored + 0x00000000400d1470 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x3c (size before relaxing) + .literal.ble_gatts_add_svcs + 0x00000000400d1470 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x18 (size before relaxing) + .literal.ble_gatts_count_cfg + 0x00000000400d1470 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x10 (size before relaxing) + .literal.ble_gatts_init + 0x00000000400d1470 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x8 (size before relaxing) + .literal.ble_hs_adv_set_hdr + 0x00000000400d1470 0x0 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + 0x8 (size before relaxing) + .literal.ble_hs_adv_set_flat_mbuf + 0x00000000400d1470 0x0 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_adv_set_array_uuid16 + 0x00000000400d1470 0x0 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_adv_set_array_uuid128 + 0x00000000400d1470 0x0 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_adv_set_array_uuid32 + 0x00000000400d1470 0x0 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_adv_set_array16 + 0x00000000400d1470 0x0 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + 0xc (size before relaxing) + .literal.adv_set_fields + 0x00000000400d1470 0x0 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + 0x40 (size before relaxing) + .literal.ble_hs_adv_set_fields + 0x00000000400d1470 0x0 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_adv_find_field + 0x00000000400d1470 0x8 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .literal.ble_hs_hci_lock + 0x00000000400d1478 0x4 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x8 (size before relaxing) + .literal.ble_hs_hci_unlock + 0x00000000400d147c 0x0 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x8 (size before relaxing) + .literal.ble_hs_hci_wait_for_ack + 0x00000000400d147c 0x4 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x8 (size before relaxing) + .literal.ble_hs_hci_max_acl_payload_sz + 0x00000000400d1480 0x4 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .literal.ble_hs_hci_rx_ack + 0x00000000400d1484 0x4 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x10 (size before relaxing) + .literal.ble_hs_hci_process_ack + 0x00000000400d1488 0x8 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x14 (size before relaxing) + .literal.ble_hs_hci_frag_alloc + 0x00000000400d1490 0x4 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_hci_acl_hdr_prepend + 0x00000000400d1494 0x4 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x18 (size before relaxing) + .literal.ble_hs_hci_set_buf_sz + 0x00000000400d1498 0x8 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_hci_add_avail_pkts + 0x00000000400d14a0 0x0 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_hci_cmd_tx_no_rsp + 0x00000000400d14a0 0x0 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_hci_cmd_tx + 0x00000000400d14a0 0x0 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x28 (size before relaxing) + .literal.ble_hs_hci_rx_evt + 0x00000000400d14a0 0x0 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x8 (size before relaxing) + .literal.ble_hs_hci_acl_tx_now + 0x00000000400d14a0 0x4 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x20 (size before relaxing) + .literal.ble_hs_hci_acl_tx + 0x00000000400d14a4 0x0 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_hci_set_le_supported_feat + 0x00000000400d14a4 0x4 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .literal.ble_hs_hci_set_hci_version + 0x00000000400d14a8 0x4 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .literal.ble_hs_hci_get_hci_version + 0x00000000400d14ac 0x0 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_hci_init + 0x00000000400d14ac 0xc esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x20 (size before relaxing) + .literal.ble_hs_hci_deinit + 0x00000000400d14b8 0x0 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_hci_util_read_adv_tx_pwr + 0x00000000400d14b8 0xc esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + 0x18 (size before relaxing) + .literal.ble_hs_hci_util_rand + 0x00000000400d14c4 0x4 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_hci_util_set_random_addr + 0x00000000400d14c8 0x4 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_hci_util_data_hdr_strip + 0x00000000400d14cc 0x0 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + 0x10 (size before relaxing) + .literal.is_ble_hs_resolv_enabled + 0x00000000400d14cc 0x4 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .literal.ble_hs_is_on_resolv_list + 0x00000000400d14d0 0x4 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0xc (size before relaxing) + .literal.ble_rpa_find_peer_dev_by_irk + 0x00000000400d14d4 0x8 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0xc (size before relaxing) + .literal.ble_rpa_peer_dev_rec_clear_all + 0x00000000400d14dc 0x8 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x14 (size before relaxing) + .literal.ble_hs_rand_prand_get + 0x00000000400d14e4 0x0 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_resolv_gen_priv_addr + 0x00000000400d14e4 0x4 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x18 (size before relaxing) + .literal.ble_rpa_remove_peer_dev_rec + 0x00000000400d14e8 0x0 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x18 (size before relaxing) + .literal.ble_rpa_find_peer_dev_rec + 0x00000000400d14e8 0x0 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x14 (size before relaxing) + .literal.ble_rpa_replace_id_with_rand_addr + 0x00000000400d14e8 0x0 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x20 (size before relaxing) + .literal.ble_rpa_resolv_add_peer_rec + 0x00000000400d14e8 0x0 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x14 (size before relaxing) + .literal.ble_host_rpa_enabled + 0x00000000400d14e8 0x4 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_gen_own_private_rnd + 0x00000000400d14ec 0x8 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x18 (size before relaxing) + .literal.ble_hs_resolv_rpa_timer_cb + 0x00000000400d14f4 0x4 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x20 (size before relaxing) + .literal.ble_hs_get_rpa_local + 0x00000000400d14f8 0x0 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_resolv_list_find + 0x00000000400d14f8 0x0 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x14 (size before relaxing) + .literal.ble_hs_resolv_list_add + 0x00000000400d14f8 0x8 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x34 (size before relaxing) + .literal.ble_hs_resolv_list_rmv + 0x00000000400d1500 0x0 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x14 (size before relaxing) + .literal.ble_hs_resolv_list_clear_all + 0x00000000400d1500 0x0 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x10 (size before relaxing) + .literal.ble_hs_resolv_enable + 0x00000000400d1500 0x0 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_resolv_set_rpa_tmo + 0x00000000400d1500 0x4 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x14 (size before relaxing) + .literal.ble_hs_resolv_rpa + 0x00000000400d1504 0x0 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x14 (size before relaxing) + .literal.is_rpa_resolvable_by_peer_rec + 0x00000000400d1504 0x0 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x4 (size before relaxing) + .literal.ble_rpa_find_rl_from_peer_records + 0x00000000400d1504 0x8 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x4c (size before relaxing) + .literal.ble_rpa_replace_peer_params_with_rl + 0x00000000400d150c 0x8 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_resolv_init + 0x00000000400d1514 0x8 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x18 (size before relaxing) + .literal.ble_hs_resolv_deinit + 0x00000000400d151c 0x0 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x8 (size before relaxing) + .literal.ble_addr_cmp + 0x00000000400d151c 0x0 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x4 (size before relaxing) + .literal.ble_store_config_find_sec + 0x00000000400d151c 0x0 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x8 (size before relaxing) + .literal.ble_store_config_read_peer_sec + 0x00000000400d151c 0x8 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x10 (size before relaxing) + .literal.ble_store_config_read_our_sec + 0x00000000400d1524 0x8 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x10 (size before relaxing) + .literal.ble_store_config_find_cccd + 0x00000000400d152c 0x8 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x10 (size before relaxing) + .literal.ble_store_config_read_cccd + 0x00000000400d1534 0x0 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x8 (size before relaxing) + .literal.ble_store_config_print_key_sec + 0x00000000400d1534 0x0 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x8 (size before relaxing) + .literal.ble_store_config_read + 0x00000000400d1534 0x0 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x14 (size before relaxing) + .literal.ble_store_config_print_value_sec + 0x00000000400d1534 0x0 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0xc (size before relaxing) + .literal.ble_store_config_write_peer_sec + 0x00000000400d1534 0x4 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x18 (size before relaxing) + .literal.ble_store_config_write_our_sec + 0x00000000400d1538 0x0 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x18 (size before relaxing) + .literal.ble_store_config_write_cccd + 0x00000000400d1538 0x0 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x10 (size before relaxing) + .literal.ble_store_config_write + 0x00000000400d1538 0x0 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0xc (size before relaxing) + .literal.ble_store_config_delete_obj + 0x00000000400d1538 0x0 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x4 (size before relaxing) + .literal.ble_store_config_delete_sec + 0x00000000400d1538 0x0 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x8 (size before relaxing) + .literal.ble_store_config_delete_peer_sec + 0x00000000400d1538 0x0 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0xc (size before relaxing) + .literal.ble_store_config_delete_our_sec + 0x00000000400d1538 0x0 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0xc (size before relaxing) + .literal.ble_store_config_delete_cccd + 0x00000000400d1538 0x0 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x10 (size before relaxing) + .literal.ble_store_config_delete + 0x00000000400d1538 0x0 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0xc (size before relaxing) + .literal.ble_store_config_init + 0x00000000400d1538 0xc esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x1c (size before relaxing) + .literal.ble_hs_stop_cb + 0x00000000400d1544 0x4 esp-idf/bt/libbt.a(nimble_port.c.obj) + 0x8 (size before relaxing) + .literal.nimble_port_stop_cb + 0x00000000400d1548 0x0 esp-idf/bt/libbt.a(nimble_port.c.obj) + 0x8 (size before relaxing) + .literal.esp_nimble_init + 0x00000000400d1548 0xc esp-idf/bt/libbt.a(nimble_port.c.obj) + 0x30 (size before relaxing) + .literal.esp_nimble_deinit + 0x00000000400d1554 0x4 esp-idf/bt/libbt.a(nimble_port.c.obj) + 0x24 (size before relaxing) + .literal.nimble_port_init + 0x00000000400d1558 0x10 esp-idf/bt/libbt.a(nimble_port.c.obj) + 0x40 (size before relaxing) + .literal.nimble_port_deinit + 0x00000000400d1568 0xc esp-idf/bt/libbt.a(nimble_port.c.obj) + 0x34 (size before relaxing) + .literal.nimble_port_stop + 0x00000000400d1574 0x14 esp-idf/bt/libbt.a(nimble_port.c.obj) + 0x30 (size before relaxing) + .literal.esp_nimble_enable + 0x00000000400d1588 0x8 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + 0x10 (size before relaxing) + .literal.esp_nimble_disable + 0x00000000400d1590 0x0 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + 0x8 (size before relaxing) + .literal.nimble_port_freertos_init + 0x00000000400d1590 0x0 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + 0x4 (size before relaxing) + .literal.nimble_port_freertos_deinit + 0x00000000400d1590 0x0 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + 0x4 (size before relaxing) + .literal.os_mempool_init_internal + 0x00000000400d1590 0x4 esp-idf/bt/libbt.a(os_mempool.c.obj) + .literal.os_mempool_init + 0x00000000400d1594 0x0 esp-idf/bt/libbt.a(os_mempool.c.obj) + 0x4 (size before relaxing) + .literal.os_mempool_ext_init + 0x00000000400d1594 0x0 esp-idf/bt/libbt.a(os_mempool.c.obj) + 0x4 (size before relaxing) + .literal.os_mempool_ext_clear + 0x00000000400d1594 0x4 esp-idf/bt/libbt.a(os_mempool.c.obj) + .literal.os_memblock_get + 0x00000000400d1598 0x0 esp-idf/bt/libbt.a(os_mempool.c.obj) + 0x4 (size before relaxing) + .literal.os_memblock_put_from_cb + 0x00000000400d1598 0x0 esp-idf/bt/libbt.a(os_mempool.c.obj) + 0x4 (size before relaxing) + .literal.os_memblock_put + 0x00000000400d1598 0x0 esp-idf/bt/libbt.a(os_mempool.c.obj) + 0x4 (size before relaxing) + .literal.os_mempool_module_init + 0x00000000400d1598 0x0 esp-idf/bt/libbt.a(os_mempool.c.obj) + 0x4 (size before relaxing) + .literal.mem_init_mbuf_pool + 0x00000000400d1598 0x4 esp-idf/bt/libbt.a(mem.c.obj) + 0x8 (size before relaxing) + .literal.mem_split_frag + 0x00000000400d159c 0x0 esp-idf/bt/libbt.a(mem.c.obj) + 0x10 (size before relaxing) + .literal._os_msys_find_pool + 0x00000000400d159c 0x4 esp-idf/bt/libbt.a(os_mbuf.c.obj) + .literal._os_mbuf_copypkthdr + 0x00000000400d15a0 0xc esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x14 (size before relaxing) + .literal.os_msys_register + 0x00000000400d15ac 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x4 (size before relaxing) + .literal.os_msys_reset + 0x00000000400d15ac 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x4 (size before relaxing) + .literal.os_mbuf_get + 0x00000000400d15ac 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x4 (size before relaxing) + .literal.os_mbuf_get_pkthdr + 0x00000000400d15ac 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x4 (size before relaxing) + .literal.os_msys_get_pkthdr + 0x00000000400d15ac 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x8 (size before relaxing) + .literal.os_mbuf_free + 0x00000000400d15ac 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x4 (size before relaxing) + .literal.os_mbuf_free_chain + 0x00000000400d15ac 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x4 (size before relaxing) + .literal.os_mbuf_append + 0x00000000400d15ac 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0xc (size before relaxing) + .literal.os_mbuf_appendfrom + 0x00000000400d15ac 0x4 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x8 (size before relaxing) + .literal.os_mbuf_copydata + 0x00000000400d15b0 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x4 (size before relaxing) + .literal.os_mbuf_adj + 0x00000000400d15b0 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x4 (size before relaxing) + .literal.os_mbuf_cmpf + 0x00000000400d15b0 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0xc (size before relaxing) + .literal.os_mbuf_cmpm + 0x00000000400d15b0 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x10 (size before relaxing) + .literal.os_mbuf_prepend + 0x00000000400d15b0 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x10 (size before relaxing) + .literal.os_mbuf_copyinto + 0x00000000400d15b0 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0xc (size before relaxing) + .literal.os_mbuf_extend + 0x00000000400d15b0 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x4 (size before relaxing) + .literal.os_mbuf_pullup + 0x00000000400d15b0 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x18 (size before relaxing) + .literal.os_mbuf_prepend_pullup + 0x00000000400d15b0 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x8 (size before relaxing) + .literal.os_mbuf_trim_front + 0x00000000400d15b0 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0xc (size before relaxing) + .literal.os_mbuf_pack_chains + 0x00000000400d15b0 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x10 (size before relaxing) + .literal.os_msys_init_once + 0x00000000400d15b0 0xc esp-idf/bt/libbt.a(os_msys_init.c.obj) + 0x1c (size before relaxing) + .literal.os_msys_buf_alloc + 0x00000000400d15bc 0x10 esp-idf/bt/libbt.a(os_msys_init.c.obj) + 0x1c (size before relaxing) + .literal.os_msys_buf_free + 0x00000000400d15cc 0x0 esp-idf/bt/libbt.a(os_msys_init.c.obj) + 0x10 (size before relaxing) + .literal.os_msys_init + 0x00000000400d15cc 0x18 esp-idf/bt/libbt.a(os_msys_init.c.obj) + 0x2c (size before relaxing) + .literal.npl_freertos_funcs_init + 0x00000000400d15e4 0x18 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x28 (size before relaxing) + .literal.npl_freertos_mempool_init + 0x00000000400d15fc 0x50 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x74 (size before relaxing) + .literal.npl_freertos_funcs_deinit + 0x00000000400d164c 0x0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x8 (size before relaxing) + .literal.controller_rcv_pkt_ready + 0x00000000400d164c 0x4 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + 0x8 (size before relaxing) + .literal.ble_hci_rx_acl + 0x00000000400d1650 0xc esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + 0x2c (size before relaxing) + .literal.ble_hci_trans_hs_cmd_tx + 0x00000000400d165c 0xc esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + 0x24 (size before relaxing) + .literal.ble_hci_trans_ll_evt_tx + 0x00000000400d1668 0x0 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + 0x4 (size before relaxing) + .literal.host_rcv_pkt + 0x00000000400d1668 0x1c esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + 0x60 (size before relaxing) + .literal.ble_hci_trans_hs_acl_tx + 0x00000000400d1684 0x0 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + 0x1c (size before relaxing) + .literal.esp_nimble_hci_init + 0x00000000400d1684 0x4 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + 0x20 (size before relaxing) + .literal.esp_nimble_hci_deinit + 0x00000000400d1688 0x0 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + 0x18 (size before relaxing) + .literal.ble_transport_acl_put + 0x00000000400d1688 0x4 esp-idf/bt/libbt.a(transport.c.obj) + .literal.ble_transport_alloc_cmd + 0x00000000400d168c 0x4 esp-idf/bt/libbt.a(transport.c.obj) + 0x8 (size before relaxing) + .literal.ble_transport_alloc_evt + 0x00000000400d1690 0x8 esp-idf/bt/libbt.a(transport.c.obj) + 0x14 (size before relaxing) + .literal.ble_transport_alloc_acl_from_ll + 0x00000000400d1698 0x4 esp-idf/bt/libbt.a(transport.c.obj) + 0x8 (size before relaxing) + .literal.ble_transport_free + 0x00000000400d169c 0x10 esp-idf/bt/libbt.a(transport.c.obj) + 0x34 (size before relaxing) + .literal.ble_buf_free + 0x00000000400d16ac 0x10 esp-idf/bt/libbt.a(transport.c.obj) + 0x24 (size before relaxing) + .literal.ble_buf_alloc + 0x00000000400d16bc 0x8 esp-idf/bt/libbt.a(transport.c.obj) + 0x30 (size before relaxing) + .literal.ble_transport_init + 0x00000000400d16c4 0x20 esp-idf/bt/libbt.a(transport.c.obj) + 0x6c (size before relaxing) + .literal.ble_transport_deinit + 0x00000000400d16e4 0x4 esp-idf/bt/libbt.a(transport.c.obj) + 0x3c (size before relaxing) + .literal.ble_transport_register_put_acl_from_ll_cb + 0x00000000400d16e8 0x0 esp-idf/bt/libbt.a(transport.c.obj) + 0x4 (size before relaxing) + .literal.ble_addr_cmp + 0x00000000400d16e8 0x0 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_conn_can_alloc + 0x00000000400d16e8 0x4 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_conn_delete_chan + 0x00000000400d16ec 0x0 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_conn_foreach + 0x00000000400d16ec 0x4 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + .literal.ble_hs_conn_free + 0x00000000400d16f0 0x0 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x14 (size before relaxing) + .literal.ble_hs_conn_alloc + 0x00000000400d16f0 0x4 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x2c (size before relaxing) + .literal.ble_hs_conn_remove + 0x00000000400d16f4 0x0 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_conn_find + 0x00000000400d16f4 0x0 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_conn_insert + 0x00000000400d16f4 0x0 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x8 (size before relaxing) + .literal.ble_hs_conn_find_assert + 0x00000000400d16f4 0x0 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_conn_find_by_idx + 0x00000000400d16f4 0x0 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_conn_exists + 0x00000000400d16f4 0x0 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_conn_first + 0x00000000400d16f4 0x0 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_conn_addrs + 0x00000000400d16f4 0x10 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x58 (size before relaxing) + .literal.ble_hs_conn_find_by_addr + 0x00000000400d1704 0x0 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x14 (size before relaxing) + .literal.ble_hs_conn_timer + 0x00000000400d1704 0x0 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x20 (size before relaxing) + .literal.ble_hs_conn_init + 0x00000000400d1704 0x8 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x14 (size before relaxing) + .literal.ble_sm_dispatch_get + 0x00000000400d170c 0x4 esp-idf/bt/libbt.a(ble_sm.c.obj) + .literal.ble_sm_proc_remove + 0x00000000400d1710 0x4 esp-idf/bt/libbt.a(ble_sm.c.obj) + .literal.ble_sm_insert + 0x00000000400d1714 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x4 (size before relaxing) + .literal.ble_sm_build_authreq + 0x00000000400d1714 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x4 (size before relaxing) + .literal.ble_sm_pair_base_fill + 0x00000000400d1714 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x8 (size before relaxing) + .literal.ble_sm_pair_req_fill + 0x00000000400d1714 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x8 (size before relaxing) + .literal.ble_sm_pair_rsp_fill + 0x00000000400d1714 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x8 (size before relaxing) + .literal.ble_sm_gen_ediv + 0x00000000400d1714 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x4 (size before relaxing) + .literal.ble_sm_gen_master_id_rand + 0x00000000400d1714 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x4 (size before relaxing) + .literal.ble_sm_gen_csrk + 0x00000000400d1714 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x4 (size before relaxing) + .literal.ble_sm_io_action + 0x00000000400d1714 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x8 (size before relaxing) + .literal.ble_sm_pair_cfg + 0x00000000400d1714 0x4 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x8 (size before relaxing) + .literal.ble_sm_extract_expired + 0x00000000400d1718 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x14 (size before relaxing) + .literal.ble_sm_gen_ltk + 0x00000000400d1718 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x8 (size before relaxing) + .literal.ble_sm_exec + 0x00000000400d1718 0x4 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0xc (size before relaxing) + .literal.ble_sm_sec_req_exec + 0x00000000400d171c 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0xc (size before relaxing) + .literal.ble_sm_fill_store_value + 0x00000000400d171c 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x14 (size before relaxing) + .literal.ble_sm_update_sec_state + 0x00000000400d171c 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x4 (size before relaxing) + .literal.ble_sm_key_exch_success + 0x00000000400d171c 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x4 (size before relaxing) + .literal.ble_sm_key_exch_exec + 0x00000000400d171c 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x84 (size before relaxing) + .literal.ble_sm_key_rxed + 0x00000000400d171c 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x4 (size before relaxing) + .literal.ble_sm_start_encrypt_tx + 0x00000000400d171c 0x4 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0xc (size before relaxing) + .literal.ble_sm_enc_restore_exec + 0x00000000400d1720 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x4 (size before relaxing) + .literal.ble_sm_enc_start_exec + 0x00000000400d1720 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x8 (size before relaxing) + .literal.ble_sm_ltk_req_reply_tx + 0x00000000400d1720 0x4 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0xc (size before relaxing) + .literal.ble_sm_ltk_start_exec + 0x00000000400d1724 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x4 (size before relaxing) + .literal.ble_sm_ltk_req_neg_reply_tx + 0x00000000400d1724 0x4 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x8 (size before relaxing) + .literal.ble_sm_ltk_restore_exec + 0x00000000400d1728 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x8 (size before relaxing) + .literal.ble_sm_random_exec + 0x00000000400d1728 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x8 (size before relaxing) + .literal.ble_sm_confirm_exec + 0x00000000400d1728 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x8 (size before relaxing) + .literal.ble_sm_proc_set_timer + 0x00000000400d1728 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0xc (size before relaxing) + .literal.ble_sm_pair_fail_tx + 0x00000000400d1728 0x8 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x18 (size before relaxing) + .literal.ble_sm_persist_keys + 0x00000000400d1730 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x54 (size before relaxing) + .literal.ble_sm_proc_free + 0x00000000400d1730 0x4 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x8 (size before relaxing) + .literal.ble_sm_proc_alloc + 0x00000000400d1734 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0xc (size before relaxing) + .literal.ble_sm_retrieve_ltk + 0x00000000400d1734 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x8 (size before relaxing) + .literal.ble_sm_fail_rx + 0x00000000400d1734 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x4 (size before relaxing) + .literal.ble_sm_read_bond + 0x00000000400d1734 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0xc (size before relaxing) + .literal.ble_sm_chk_repeat_pairing + 0x00000000400d1734 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x8 (size before relaxing) + .literal.ble_sm_num_procs + 0x00000000400d1734 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x4 (size before relaxing) + .literal.ble_sm_chk_store_overflow_by_type + 0x00000000400d1734 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x14 (size before relaxing) + .literal.ble_sm_chk_store_overflow + 0x00000000400d1734 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x8 (size before relaxing) + .literal.ble_sm_gen_pair_rand + 0x00000000400d1734 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x4 (size before relaxing) + .literal.ble_sm_ia_ra + 0x00000000400d1734 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x18 (size before relaxing) + .literal.ble_sm_proc_find + 0x00000000400d1734 0x4 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x8 (size before relaxing) + .literal.ble_sm_sign_info_rx + 0x00000000400d1738 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x18 (size before relaxing) + .literal.ble_sm_id_addr_info_rx + 0x00000000400d1738 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x18 (size before relaxing) + .literal.ble_sm_id_info_rx + 0x00000000400d1738 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x18 (size before relaxing) + .literal.ble_sm_master_id_rx + 0x00000000400d1738 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x14 (size before relaxing) + .literal.ble_sm_enc_info_rx + 0x00000000400d1738 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x18 (size before relaxing) + .literal.ble_sm_pair_req_rx + 0x00000000400d1738 0x4 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x48 (size before relaxing) + .literal.ble_sm_proc_can_advance + 0x00000000400d173c 0x4 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x8 (size before relaxing) + .literal.ble_sm_confirm_rx + 0x00000000400d1740 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x20 (size before relaxing) + .literal.ble_sm_pair_rsp_rx + 0x00000000400d1740 0x4 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x2c (size before relaxing) + .literal.ble_sm_process_result + 0x00000000400d1744 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x30 (size before relaxing) + .literal.ble_sm_enc_event_rx + 0x00000000400d1744 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x14 (size before relaxing) + .literal.ble_sm_rx + 0x00000000400d1744 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x18 (size before relaxing) + .literal.ble_sm_enc_change_rx + 0x00000000400d1744 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x4 (size before relaxing) + .literal.ble_sm_enc_key_refresh_rx + 0x00000000400d1744 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x4 (size before relaxing) + .literal.ble_sm_ltk_req_rx + 0x00000000400d1744 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x28 (size before relaxing) + .literal.ble_sm_pair_exec + 0x00000000400d1744 0x4 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x28 (size before relaxing) + .literal.ble_sm_random_rx + 0x00000000400d1748 0x4 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x20 (size before relaxing) + .literal.ble_sm_timer + 0x00000000400d174c 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0xc (size before relaxing) + .literal.ble_sm_pair_initiate + 0x00000000400d174c 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x24 (size before relaxing) + .literal.ble_sm_enc_initiate + 0x00000000400d174c 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x1c (size before relaxing) + .literal.ble_sm_sec_req_rx + 0x00000000400d174c 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x24 (size before relaxing) + .literal.ble_sm_connection_broken + 0x00000000400d174c 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x4 (size before relaxing) + .literal.ble_sm_init + 0x00000000400d174c 0x8 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x18 (size before relaxing) + .literal.ble_sm_create_chan + 0x00000000400d1754 0x4 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x8 (size before relaxing) + .literal.ble_l2cap_sig_tx + 0x00000000400d1758 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + 0x14 (size before relaxing) + .literal.ble_l2cap_sig_cmd_get + 0x00000000400d1758 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + 0xc (size before relaxing) + .literal.ble_l2cap_sig_reject_tx + 0x00000000400d1758 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + 0xc (size before relaxing) + .literal.ble_l2cap_sig_reject_invalid_cid_tx + 0x00000000400d1758 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_hci_cmd_transport + 0x00000000400d1758 0x0 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + 0x4 (size before relaxing) + .literal.ble_hs_hci_cmd_send + 0x00000000400d1758 0x0 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + 0x14 (size before relaxing) + .literal.ble_hs_hci_cmd_send_buf + 0x00000000400d1758 0x0 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + 0xc (size before relaxing) + .literal.ble_att_svr_next_id + 0x00000000400d1758 0x4 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .literal.ble_att_svr_entry_alloc + 0x00000000400d175c 0x4 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0xc (size before relaxing) + .literal.ble_att_svr_get_sec_state + 0x00000000400d1760 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0xc (size before relaxing) + .literal.ble_att_svr_check_perms + 0x00000000400d1760 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x1c (size before relaxing) + .literal.ble_att_svr_read + 0x00000000400d1760 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x8 (size before relaxing) + .literal.ble_att_svr_write + 0x00000000400d1760 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x8 (size before relaxing) + .literal.ble_att_svr_pullup_req_base + 0x00000000400d1760 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x4 (size before relaxing) + .literal.ble_att_svr_build_mtu_rsp + 0x00000000400d1760 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x14 (size before relaxing) + .literal.ble_att_svr_pkt + 0x00000000400d1760 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x4 (size before relaxing) + .literal.ble_att_svr_build_write_rsp + 0x00000000400d1760 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x8 (size before relaxing) + .literal.ble_att_svr_build_indicate_rsp + 0x00000000400d1760 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x8 (size before relaxing) + .literal.ble_att_svr_fill_info + 0x00000000400d1760 0x4 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x10 (size before relaxing) + .literal.ble_att_svr_build_find_info_rsp + 0x00000000400d1764 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x10 (size before relaxing) + .literal.ble_att_svr_read_group_type_entry_write + 0x00000000400d1764 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x10 (size before relaxing) + .literal.ble_att_svr_is_valid_find_group_type + 0x00000000400d1764 0x4 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x8 (size before relaxing) + .literal.ble_att_svr_is_valid_group_end + 0x00000000400d1768 0x8 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x18 (size before relaxing) + .literal.ble_att_svr_is_valid_read_group_type + 0x00000000400d1770 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x4 (size before relaxing) + .literal.ble_att_svr_read_flat + 0x00000000400d1770 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x10 (size before relaxing) + .literal.ble_att_svr_fill_type_value_entry + 0x00000000400d1770 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x10 (size before relaxing) + .literal.ble_att_svr_fill_type_value + 0x00000000400d1770 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x1c (size before relaxing) + .literal.ble_att_svr_build_find_type_value_rsp + 0x00000000400d1770 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x10 (size before relaxing) + .literal.ble_att_svr_service_uuid + 0x00000000400d1770 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0xc (size before relaxing) + .literal.ble_att_svr_build_read_group_type_rsp + 0x00000000400d1770 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x28 (size before relaxing) + .literal.ble_att_svr_prep_free + 0x00000000400d1770 0x4 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0xc (size before relaxing) + .literal.ble_att_svr_prep_alloc + 0x00000000400d1774 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x10 (size before relaxing) + .literal.ble_att_svr_insert_prep_entry + 0x00000000400d1774 0x4 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x20 (size before relaxing) + .literal.ble_att_svr_prep_extract + 0x00000000400d1778 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x8 (size before relaxing) + .literal.ble_att_svr_free_start_mem + 0x00000000400d1778 0x4 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x8 (size before relaxing) + .literal.ble_att_svr_register + 0x00000000400d177c 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0xc (size before relaxing) + .literal.ble_att_svr_prev_handle + 0x00000000400d177c 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x4 (size before relaxing) + .literal.ble_att_svr_find_by_handle + 0x00000000400d177c 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x4 (size before relaxing) + .literal.ble_att_svr_write_handle + 0x00000000400d177c 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x8 (size before relaxing) + .literal.ble_att_svr_prep_write + 0x00000000400d177c 0x4 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x14 (size before relaxing) + .literal.ble_att_svr_find_by_uuid + 0x00000000400d1780 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x8 (size before relaxing) + .literal.ble_att_svr_build_read_type_rsp + 0x00000000400d1780 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x1c (size before relaxing) + .literal.ble_att_svr_ticks_until_tmo + 0x00000000400d1780 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x4 (size before relaxing) + .literal.ble_att_svr_read_handle + 0x00000000400d1780 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x8 (size before relaxing) + .literal.ble_att_svr_build_read_mult_rsp + 0x00000000400d1780 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x1c (size before relaxing) + .literal.ble_att_svr_tx_error_rsp + 0x00000000400d1780 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x8 (size before relaxing) + .literal.ble_att_svr_tx_rsp + 0x00000000400d1780 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x28 (size before relaxing) + .literal.ble_att_svr_rx_mtu + 0x00000000400d1780 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x24 (size before relaxing) + .literal.ble_att_svr_rx_find_info + 0x00000000400d1780 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0xc (size before relaxing) + .literal.ble_att_svr_rx_find_type_value + 0x00000000400d1780 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0xc (size before relaxing) + .literal.ble_att_svr_rx_read_type + 0x00000000400d1780 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x10 (size before relaxing) + .literal.ble_att_svr_rx_read + 0x00000000400d1780 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x14 (size before relaxing) + .literal.ble_att_svr_rx_read_blob + 0x00000000400d1780 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x14 (size before relaxing) + .literal.ble_att_svr_rx_read_mult + 0x00000000400d1780 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x8 (size before relaxing) + .literal.ble_att_svr_rx_read_group_type + 0x00000000400d1780 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x14 (size before relaxing) + .literal.ble_att_svr_rx_write + 0x00000000400d1780 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x14 (size before relaxing) + .literal.ble_att_svr_rx_write_no_rsp + 0x00000000400d1780 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0xc (size before relaxing) + .literal.ble_att_svr_prep_clear + 0x00000000400d1780 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x4 (size before relaxing) + .literal.ble_att_svr_rx_prep_write + 0x00000000400d1780 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x20 (size before relaxing) + .literal.ble_att_svr_rx_exec_write + 0x00000000400d1780 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x24 (size before relaxing) + .literal.ble_att_svr_rx_notify + 0x00000000400d1780 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x10 (size before relaxing) + .literal.ble_att_svr_rx_indicate + 0x00000000400d1780 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x18 (size before relaxing) + .literal.ble_att_svr_start + 0x00000000400d1780 0x4 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x20 (size before relaxing) + .literal.ble_att_svr_stop + 0x00000000400d1784 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x4 (size before relaxing) + .literal.ble_att_svr_init + 0x00000000400d1784 0xc esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x1c (size before relaxing) + .literal.ble_hs_atomic_conn_delete + 0x00000000400d1790 0x0 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + 0x18 (size before relaxing) + .literal.ble_hs_atomic_conn_flags + 0x00000000400d1790 0x0 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + 0xc (size before relaxing) + .literal.ble_hs_atomic_first_conn_handle + 0x00000000400d1790 0x0 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + 0x10 (size before relaxing) + .literal.ble_sm_alg_log_buf + 0x00000000400d1790 0x0 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x4 (size before relaxing) + .literal.ble_sm_alg_aes_cmac + 0x00000000400d1790 0x0 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_gen_keypair + 0x00000000400d1790 0xc esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x50 (size before relaxing) + .literal.ble_sm_alg_encrypt + 0x00000000400d179c 0x0 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x24 (size before relaxing) + .literal.ble_sm_alg_s1 + 0x00000000400d179c 0x0 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x1c (size before relaxing) + .literal.ble_sm_alg_c1 + 0x00000000400d179c 0x4 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x44 (size before relaxing) + .literal.ble_sm_alg_f4 + 0x00000000400d17a0 0x0 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x24 (size before relaxing) + .literal.ble_sm_alg_f5 + 0x00000000400d17a0 0x20 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x64 (size before relaxing) + .literal.ble_sm_alg_f6 + 0x00000000400d17c0 0x1c esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x7c (size before relaxing) + .literal.ble_sm_alg_g2 + 0x00000000400d17dc 0x14 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x48 (size before relaxing) + .literal.ble_sm_alg_gen_dhkey + 0x00000000400d17f0 0x0 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x7c (size before relaxing) + .literal.ble_sm_alg_gen_key_pair + 0x00000000400d17f0 0x4 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x18 (size before relaxing) + .literal.ble_hs_stop_register_listener + 0x00000000400d17f4 0x4 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + .literal.ble_hs_stop_terminate_conn + 0x00000000400d17f8 0xc esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + 0x18 (size before relaxing) + .literal.ble_hs_stop_begin + 0x00000000400d1804 0xc esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + 0x20 (size before relaxing) + .literal.ble_hs_stop_done + 0x00000000400d1810 0x8 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + 0x20 (size before relaxing) + .literal.ble_hs_stop_gap_event + 0x00000000400d1818 0x0 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + 0x8 (size before relaxing) + .literal.ble_hs_stop_terminate_timeout_cb + 0x00000000400d1818 0x4 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + 0x18 (size before relaxing) + .literal.ble_hs_stop + 0x00000000400d181c 0x8 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + 0x40 (size before relaxing) + .literal.ble_hs_stop_init + 0x00000000400d1824 0x4 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + 0x10 (size before relaxing) + .literal.ble_hs_stop_deinit + 0x00000000400d1828 0x0 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + 0x8 (size before relaxing) + .literal.ble_sm_gen_stk + 0x00000000400d1828 0x0 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + 0xc (size before relaxing) + .literal.ble_sm_lgcy_io_action + 0x00000000400d1828 0x8 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + .literal.ble_sm_lgcy_confirm_exec + 0x00000000400d1830 0x0 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + 0x18 (size before relaxing) + .literal.ble_sm_lgcy_random_exec + 0x00000000400d1830 0x0 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + 0x10 (size before relaxing) + .literal.ble_sm_lgcy_random_rx + 0x00000000400d1830 0x0 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + 0x14 (size before relaxing) + .literal.ble_sm_cmd_get + 0x00000000400d1830 0x0 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + 0xc (size before relaxing) + .literal.ble_sm_tx + 0x00000000400d1830 0x0 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + 0xc (size before relaxing) + .literal.ble_sm_sc_random_advance + 0x00000000400d1830 0x0 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x8 (size before relaxing) + .literal.ble_sm_sc_gen_numcmp + 0x00000000400d1830 0x4 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x8 (size before relaxing) + .literal.ble_sm_gen_pub_priv + 0x00000000400d1834 0x0 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x4 (size before relaxing) + .literal.ble_sm_sc_ensure_keys_generated + 0x00000000400d1834 0x8 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x18 (size before relaxing) + .literal.ble_sm_sc_dhkey_addrs + 0x00000000400d183c 0x0 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x10 (size before relaxing) + .literal.ble_sm_sc_io_action + 0x00000000400d183c 0x8 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + .literal.ble_sm_dhkey_check_process + 0x00000000400d1844 0x0 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x34 (size before relaxing) + .literal.ble_sm_sc_confirm_exec + 0x00000000400d1844 0x4 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x1c (size before relaxing) + .literal.ble_sm_sc_random_exec + 0x00000000400d1848 0x0 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x20 (size before relaxing) + .literal.ble_sm_sc_random_rx + 0x00000000400d1848 0x4 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x3c (size before relaxing) + .literal.ble_sm_sc_public_key_exec + 0x00000000400d184c 0x8 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x2c (size before relaxing) + .literal.ble_sm_sc_public_key_rx + 0x00000000400d1854 0x0 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x38 (size before relaxing) + .literal.ble_sm_sc_dhkey_check_exec + 0x00000000400d1854 0x0 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x24 (size before relaxing) + .literal.ble_sm_sc_dhkey_check_rx + 0x00000000400d1854 0x0 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x14 (size before relaxing) + .literal.ble_sm_sc_init + 0x00000000400d1854 0x4 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x8 (size before relaxing) + .literal.int32_size + 0x00000000400d1858 0xc esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.sint32_size + 0x00000000400d1864 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0xc (size before relaxing) + .literal.uint64_size + 0x00000000400d1864 0x4 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x14 (size before relaxing) + .literal.field_is_zeroish + 0x00000000400d1868 0x4 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x10 (size before relaxing) + .literal.unknown_field_get_packed_size + 0x00000000400d186c 0x4 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x8 (size before relaxing) + .literal.int32_pack + 0x00000000400d1870 0x4 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.uint64_pack + 0x00000000400d1874 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x4 (size before relaxing) + .literal.tag_pack + 0x00000000400d1874 0x4 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0xc (size before relaxing) + .literal.get_type_min_size + 0x00000000400d1878 0x4 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.count_packed_elements + 0x00000000400d187c 0x4 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.parse_uint32 + 0x00000000400d1880 0xc esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.parse_uint64 + 0x00000000400d188c 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x10 (size before relaxing) + .literal.binary_data_pack + 0x00000000400d188c 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x8 (size before relaxing) + .literal.copy_to_little_endian_32 + 0x00000000400d188c 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x4 (size before relaxing) + .literal.copy_to_little_endian_64 + 0x00000000400d188c 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x4 (size before relaxing) + .literal.unknown_field_pack + 0x00000000400d188c 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x8 (size before relaxing) + .literal.system_free + 0x00000000400d188c 0x4 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.system_alloc + 0x00000000400d1890 0x4 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.sizeof_elt_in_repeated_array + 0x00000000400d1894 0x18 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .literal.parse_packed_repeated_member + 0x00000000400d18ac 0x10 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x4c (size before relaxing) + .literal.string_pack + 0x00000000400d18bc 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0xc (size before relaxing) + .literal.message_init_generic + 0x00000000400d18bc 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x10 (size before relaxing) + .literal.merge_messages + 0x00000000400d18bc 0x4 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x1c (size before relaxing) + .literal.protobuf_c_message_get_packed_size + 0x00000000400d18c0 0xc esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x2c (size before relaxing) + .literal.required_field_get_packed_size + 0x00000000400d18cc 0x4 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x3c (size before relaxing) + .literal.oneof_field_get_packed_size + 0x00000000400d18d0 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x4 (size before relaxing) + .literal.optional_field_get_packed_size + 0x00000000400d18d0 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x4 (size before relaxing) + .literal.unlabeled_field_get_packed_size + 0x00000000400d18d0 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x8 (size before relaxing) + .literal.repeated_field_get_packed_size + 0x00000000400d18d0 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x2c (size before relaxing) + .literal.protobuf_c_message_pack + 0x00000000400d18d0 0x4 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x2c (size before relaxing) + .literal.prefixed_message_pack + 0x00000000400d18d4 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x18 (size before relaxing) + .literal.required_field_pack + 0x00000000400d18d4 0x4 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x38 (size before relaxing) + .literal.oneof_field_pack + 0x00000000400d18d8 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x4 (size before relaxing) + .literal.optional_field_pack + 0x00000000400d18d8 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x4 (size before relaxing) + .literal.unlabeled_field_pack + 0x00000000400d18d8 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x8 (size before relaxing) + .literal.repeated_field_pack + 0x00000000400d18d8 0x8 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x58 (size before relaxing) + .literal.protobuf_c_message_free_unpacked + 0x00000000400d18e0 0xc esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x1c (size before relaxing) + .literal.protobuf_c_message_unpack + 0x00000000400d18ec 0x24 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x58 (size before relaxing) + .literal.parse_required_member + 0x00000000400d1910 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x30 (size before relaxing) + .literal.parse_oneof_member + 0x00000000400d1910 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x14 (size before relaxing) + .literal.parse_optional_member + 0x00000000400d1910 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x4 (size before relaxing) + .literal.parse_repeated_member + 0x00000000400d1910 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x8 (size before relaxing) + .literal.parse_member + 0x00000000400d1910 0x8 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x30 (size before relaxing) + .literal.compare_double + 0x00000000400d1918 0x14 esp-idf/json/libjson.a(cJSON.c.obj) + 0x24 (size before relaxing) + .literal.add_item_to_array + 0x00000000400d192c 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.update_offset + 0x00000000400d1930 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + 0x4 (size before relaxing) + .literal.cJSON_strdup + 0x00000000400d1930 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + 0x8 (size before relaxing) + .literal.add_item_to_object + 0x00000000400d1930 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + 0xc (size before relaxing) + .literal.ensure + 0x00000000400d1934 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + 0xc (size before relaxing) + .literal.cJSON_New_Item + 0x00000000400d1934 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + 0x4 (size before relaxing) + .literal.print_string_ptr + 0x00000000400d1934 0xc esp-idf/json/libjson.a(cJSON.c.obj) + 0x1c (size before relaxing) + .literal.print_string + 0x00000000400d1940 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + 0x4 (size before relaxing) + .literal.print_number + 0x00000000400d1940 0x20 esp-idf/json/libjson.a(cJSON.c.obj) + 0x48 (size before relaxing) + .literal.print_value + 0x00000000400d1960 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + 0x40 (size before relaxing) + .literal.print + 0x00000000400d1968 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + 0xc (size before relaxing) + .literal.print_array + 0x00000000400d1968 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + 0x14 (size before relaxing) + .literal.print_object + 0x00000000400d1968 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + 0x24 (size before relaxing) + .literal.cJSON_Delete + 0x00000000400d1968 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_Print + 0x00000000400d196c 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + 0x8 (size before relaxing) + .literal.cJSON_AddItemToArray + 0x00000000400d196c 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + 0x4 (size before relaxing) + .literal.cJSON_AddItemToObject + 0x00000000400d196c 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + 0x8 (size before relaxing) + .literal.cJSON_CreateNumber + 0x00000000400d196c 0x18 esp-idf/json/libjson.a(cJSON.c.obj) + 0x2c (size before relaxing) + .literal.cJSON_AddNumberToObject + 0x00000000400d1984 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + 0x10 (size before relaxing) + .literal.cJSON_CreateString + 0x00000000400d1984 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + 0x10 (size before relaxing) + .literal.cJSON_AddStringToObject + 0x00000000400d1984 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + 0x10 (size before relaxing) + .literal.cJSON_CreateArray + 0x00000000400d1984 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + 0x8 (size before relaxing) + .literal.cJSON_CreateObject + 0x00000000400d1984 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + 0x8 (size before relaxing) + .literal.cJSON_Duplicate + 0x00000000400d1984 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + 0x14 (size before relaxing) + .literal.esp_qrcode_print_console + 0x00000000400d1984 0x8 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + 0x28 (size before relaxing) + .literal.esp_qrcode_generate + 0x00000000400d198c 0x18 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + 0x34 (size before relaxing) + .literal.getAlignmentPatternPositions + 0x00000000400d19a4 0x0 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x4 (size before relaxing) + .literal.calcSegmentBitLength + 0x00000000400d19a4 0x18 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x20 (size before relaxing) + .literal.numCharCountBits + 0x00000000400d19bc 0x1c esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x2c (size before relaxing) + .literal.getTotalBits + 0x00000000400d19d8 0x18 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x38 (size before relaxing) + .literal.appendBitsToBuffer + 0x00000000400d19f0 0x8 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x10 (size before relaxing) + .literal.getNumRawDataModules + 0x00000000400d19f8 0x10 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x20 (size before relaxing) + .literal.getNumDataCodewords + 0x00000000400d1a08 0x10 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x1c (size before relaxing) + .literal.getModule + 0x00000000400d1a18 0xc esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x14 (size before relaxing) + .literal.setModule + 0x00000000400d1a24 0x4 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x10 (size before relaxing) + .literal.setModuleBounded + 0x00000000400d1a28 0x0 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x4 (size before relaxing) + .literal.fillRectangle + 0x00000000400d1a28 0x0 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x4 (size before relaxing) + .literal.finderPenaltyCountPatterns + 0x00000000400d1a28 0x8 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x10 (size before relaxing) + .literal.reedSolomonComputeDivisor + 0x00000000400d1a30 0xc esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x1c (size before relaxing) + .literal.initializeFunctionModules + 0x00000000400d1a3c 0x0 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x28 (size before relaxing) + .literal.reedSolomonComputeRemainder + 0x00000000400d1a3c 0x4 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x1c (size before relaxing) + .literal.addEccAndInterleave + 0x00000000400d1a40 0x8 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x28 (size before relaxing) + .literal.finderPenaltyAddHistory + 0x00000000400d1a48 0x0 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x4 (size before relaxing) + .literal.finderPenaltyTerminateAndCount + 0x00000000400d1a48 0x0 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0xc (size before relaxing) + .literal.qrcodegen_getSize + 0x00000000400d1a48 0xc esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x18 (size before relaxing) + .literal.drawCodewords + 0x00000000400d1a54 0x8 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x20 (size before relaxing) + .literal.drawWhiteFunctionModules + 0x00000000400d1a5c 0xc esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x3c (size before relaxing) + .literal.getPenaltyScore + 0x00000000400d1a68 0x0 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x40 (size before relaxing) + .literal.applyMask + 0x00000000400d1a68 0x8 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x2c (size before relaxing) + .literal.drawFormatBits + 0x00000000400d1a70 0x10 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x60 (size before relaxing) + .literal.qrcodegen_encodeSegmentsAdvanced + 0x00000000400d1a80 0x24 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0xac (size before relaxing) + .literal.qrcodegen_getModule + 0x00000000400d1aa4 0x4 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x14 (size before relaxing) + .literal.qrcodegen_isAlphanumeric + 0x00000000400d1aa8 0x10 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x18 (size before relaxing) + .literal.qrcodegen_isNumeric + 0x00000000400d1ab8 0x4 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x10 (size before relaxing) + .literal.qrcodegen_calcSegmentBufferSize + 0x00000000400d1abc 0x8 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x18 (size before relaxing) + .literal.qrcodegen_makeNumeric + 0x00000000400d1ac4 0x18 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x3c (size before relaxing) + .literal.qrcodegen_makeAlphanumeric + 0x00000000400d1adc 0x8 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x44 (size before relaxing) + .literal.qrcodegen_encodeText + 0x00000000400d1ae4 0x0 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x28 (size before relaxing) + .literal.esp_efuse_read_field_blob + 0x00000000400d1ae4 0x10 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x18 (size before relaxing) + .literal.esp_efuse_check_errors + 0x00000000400d1af4 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.check_range_of_bits + 0x00000000400d1af8 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x4 (size before relaxing) + .literal.esp_efuse_utility_process + 0x00000000400d1af8 0x38 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x4c (size before relaxing) + .literal.esp_efuse_utility_read_reg + 0x00000000400d1b30 0x1c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x2c (size before relaxing) + .literal.esp_efuse_utility_fill_buff + 0x00000000400d1b4c 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x8 (size before relaxing) + .literal.esp_efuse_utility_count_once + 0x00000000400d1b50 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0xc (size before relaxing) + .literal.esp_efuse_get_coding_scheme + 0x00000000400d1b50 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.uart_pattern_queue_update + 0x00000000400d1b54 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_reenable_intr_mask + 0x00000000400d1b58 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_set_word_length + 0x00000000400d1b70 0xc esp-idf/driver/libdriver.a(uart.c.obj) + 0x30 (size before relaxing) + .literal.uart_get_word_length + 0x00000000400d1b7c 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x1c (size before relaxing) + .literal.uart_set_stop_bits + 0x00000000400d1b84 0xc esp-idf/driver/libdriver.a(uart.c.obj) + 0x30 (size before relaxing) + .literal.uart_get_stop_bits + 0x00000000400d1b90 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_set_parity + 0x00000000400d1b98 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_get_parity + 0x00000000400d1ba0 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_set_baudrate + 0x00000000400d1ba8 0xc esp-idf/driver/libdriver.a(uart.c.obj) + 0x38 (size before relaxing) + .literal.uart_get_baudrate + 0x00000000400d1bb4 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x38 (size before relaxing) + .literal.uart_wait_tx_done + 0x00000000400d1bb8 0x28 esp-idf/driver/libdriver.a(uart.c.obj) + 0x70 (size before relaxing) + .literal.uart_get_buffered_data_len + 0x00000000400d1be0 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x30 (size before relaxing) + .literal.uart_flush_input + 0x00000000400d1be4 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + 0x84 (size before relaxing) + .literal.uart_is_driver_installed + 0x00000000400d1bf8 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_set_select_notif_callback + 0x00000000400d1bf8 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_get_selectlock + 0x00000000400d1bf8 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.bootloader_init_mem + 0x00000000400d1bfc 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x4 (size before relaxing) + .literal.bootloader_flash_update_id + 0x00000000400d1bfc 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.bootloader_flash_get_wp_pin + 0x00000000400d1c04 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.s_reserve_irom_region + 0x00000000400d1c0c 0x48 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x64 (size before relaxing) + .literal.s_reserve_drom_region + 0x00000000400d1c54 0x10 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x64 (size before relaxing) + .literal.esp_mmu_map_init + 0x00000000400d1c64 0x1c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x3c (size before relaxing) + .literal.esp_mmu_map + 0x00000000400d1c80 0x58 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xd0 (size before relaxing) + .literal.esp_mmu_unmap + 0x00000000400d1cd8 0x10 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x3c (size before relaxing) + .literal.esp_mmu_vaddr_to_paddr + 0x00000000400d1ce8 0x14 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x34 (size before relaxing) + .literal.spi_flash_init_lock + 0x00000000400d1cfc 0x14 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_op_lock + 0x00000000400d1d10 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_op_unlock + 0x00000000400d1d14 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_mmap + 0x00000000400d1d18 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_munmap + 0x00000000400d1d1c 0xc esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_cache2phys + 0x00000000400d1d28 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x4 (size before relaxing) + .literal.esp_mspi_get_io + 0x00000000400d1d28 0x14 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x1c (size before relaxing) + .literal.esp_flash_read_chip_id + 0x00000000400d1d3c 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_init_default_chip + 0x00000000400d1d40 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x38 (size before relaxing) + .literal.esp_flash_app_init + 0x00000000400d1d60 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x14 (size before relaxing) + .literal.esp_flash_app_enable_os_functions + 0x00000000400d1d68 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.esp_crosscore_int_init + 0x00000000400d1d74 0x20 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x30 (size before relaxing) + .literal.esp_ipc_call_and_wait + 0x00000000400d1d94 0x28 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x3c (size before relaxing) + .literal.esp_ipc_init + 0x00000000400d1dbc 0x28 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x38 (size before relaxing) + .literal.esp_ipc_call + 0x00000000400d1de4 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x4 (size before relaxing) + .literal.esp_ipc_call_blocking + 0x00000000400d1de4 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x4 (size before relaxing) + .literal.find_entry_and_check_all_reset + 0x00000000400d1de4 0x4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.find_entry_from_task_handle_and_check_all_reset + 0x00000000400d1de8 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4 (size before relaxing) + .literal.task_wdt_timer_feed + 0x00000000400d1de8 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x8 (size before relaxing) + .literal.add_entry + 0x00000000400d1de8 0x18 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x5c (size before relaxing) + .literal.task_wdt_timeout_abort_xtensa + 0x00000000400d1e00 0x2c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x54 (size before relaxing) + .literal.task_wdt_timeout_handling + 0x00000000400d1e2c 0xc esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x40 (size before relaxing) + .literal.task_wdt_isr + 0x00000000400d1e38 0x3c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x98 (size before relaxing) + .literal.esp_task_wdt_add + 0x00000000400d1e74 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x20 (size before relaxing) + .literal.subscribe_idle + 0x00000000400d1e7c 0x1c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x34 (size before relaxing) + .literal.esp_task_wdt_init + 0x00000000400d1e98 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x48 (size before relaxing) + .literal.esp_task_wdt_reset + 0x00000000400d1eac 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x40 (size before relaxing) + .literal.idle_hook_cb + 0x00000000400d1eb4 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4 (size before relaxing) + .literal.esp_task_wdt_impl_timer_allocate + 0x00000000400d1eb4 0x20 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x28 (size before relaxing) + .literal.esp_task_wdt_impl_timer_feed + 0x00000000400d1ed4 0x4 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0xc (size before relaxing) + .literal.esp_task_wdt_impl_timeout_triggered + 0x00000000400d1ed8 0x4 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0xc (size before relaxing) + .literal.esp_task_wdt_impl_timer_restart + 0x00000000400d1edc 0x4 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x10 (size before relaxing) + .literal.uart_hal_set_baudrate + 0x00000000400d1ee0 0xc esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_get_baudrate + 0x00000000400d1eec 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_ll_calculate_clock_reg + 0x00000000400d1eec 0x8 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0xc (size before relaxing) + .literal.get_flash_clock_divider + 0x00000000400d1ef4 0x18 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x44 (size before relaxing) + .literal.spi_flash_cal_clock + 0x00000000400d1f0c 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_init + 0x00000000400d1f0c 0x14 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x20 (size before relaxing) + .literal.spi_flash_hal_supports_direct_write + 0x00000000400d1f20 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_supports_direct_read + 0x00000000400d1f20 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x4 (size before relaxing) + .literal.esp_cpu_configure_region_protection + 0x00000000400d1f20 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x10 (size before relaxing) + .literal.esp_fill_random + 0x00000000400d1f28 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + 0x18 (size before relaxing) + .literal.get_idx + 0x00000000400d1f38 0xc esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x14 (size before relaxing) + .literal.generate_mac + 0x00000000400d1f44 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x20 (size before relaxing) + .literal.get_efuse_mac_custom + 0x00000000400d1f48 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x38 (size before relaxing) + .literal.get_efuse_mac_get_default + 0x00000000400d1f60 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x40 (size before relaxing) + .literal.get_mac_addr_from_mac_table + 0x00000000400d1f80 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x20 (size before relaxing) + .literal.esp_efuse_mac_get_default + 0x00000000400d1f84 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x4 (size before relaxing) + .literal.esp_read_mac + 0x00000000400d1f84 0xc esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x44 (size before relaxing) + .literal.esp_clk_tree_src_get_freq_hz + 0x00000000400d1f90 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + 0x6c (size before relaxing) + .literal.clk_tree_rtc_slow_calibration + 0x00000000400d1fb8 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x24 (size before relaxing) + .literal.esp_clk_tree_rc_fast_d256_get_freq_hz + 0x00000000400d1fd0 0xc esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x18 (size before relaxing) + .literal.esp_clk_tree_xtal32k_get_freq_hz + 0x00000000400d1fdc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x18 (size before relaxing) + .literal.esp_clk_tree_lp_slow_get_freq_hz + 0x00000000400d1fe0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x14 (size before relaxing) + .literal.esp_clk_tree_rc_fast_get_freq_hz + 0x00000000400d1fe4 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 + 0x00000000400d1fe8 0xc esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x20 (size before relaxing) + .literal.esp_err_to_name + 0x00000000400d1ff4 0x8 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .literal.ets_timer_setfn + 0x00000000400d1ffc 0x18 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x24 (size before relaxing) + .literal.ets_timer_done + 0x00000000400d2014 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x8 (size before relaxing) + .literal._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleEEUlRS1_E_ET_SA_SA_T0_ + 0x00000000400d2014 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleE + 0x00000000400d2018 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + .literal._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZ9nvs_closeEUlRS1_E_ET_S6_S6_T0_ + 0x00000000400d2020 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZZL24close_handles_and_deinitPKcENKUlR14NVSHandleEntryE_clES2_ + 0x00000000400d2024 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZSt9__find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZL24close_handles_and_deinitPKcEUlRS1_E_EEET_SC_SC_T0_St18input_iterator_tag + 0x00000000400d202c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZL24close_handles_and_deinitPKcEUlRS1_E_ET_S8_S8_T0_ + 0x00000000400d202c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4LockC5Ev + 0x00000000400d202c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4LockD5Ev + 0x00000000400d2030 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + .literal._ZL19nvs_get_str_or_blobmN3nvs8ItemTypeEPKcPvPj + 0x00000000400d2030 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs4Lock4initEv + 0x00000000400d2034 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + .literal.nvs_flash_init_partition + 0x00000000400d2034 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_flash_init + 0x00000000400d2034 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + .literal.nvs_erase_key + 0x00000000400d2038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + .literal.nvs_commit + 0x00000000400d2038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + .literal.nvs_set_blob + 0x00000000400d2038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + .literal.nvs_get_blob + 0x00000000400d2038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._ZL24close_handles_and_deinitPKc + 0x00000000400d2038 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x18 (size before relaxing) + .literal.nvs_flash_erase_partition + 0x00000000400d203c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x20 (size before relaxing) + .literal.nvs_flash_erase + 0x00000000400d203c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + .literal.nvs_close + 0x00000000400d203c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x20 (size before relaxing) + .literal.nvs_open_from_partition + 0x00000000400d2040 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x20 (size before relaxing) + .literal.nvs_open + 0x00000000400d2048 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + .literal._Z7nvs_setIaEimPKcT_ + 0x00000000400d2048 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_set_i8 + 0x00000000400d204c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setIhEimPKcT_ + 0x00000000400d204c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_set_u8 + 0x00000000400d2050 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setItEimPKcT_ + 0x00000000400d2050 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_set_u16 + 0x00000000400d2054 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setImEimPKcT_ + 0x00000000400d2054 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_set_u32 + 0x00000000400d2058 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getIaEimPKcPT_ + 0x00000000400d2058 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_get_i8 + 0x00000000400d205c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getIhEimPKcPT_ + 0x00000000400d205c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_get_u8 + 0x00000000400d2060 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getItEimPKcPT_ + 0x00000000400d2060 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_get_u16 + 0x00000000400d2064 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getImEimPKcPT_ + 0x00000000400d2064 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_get_u32 + 0x00000000400d2068 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN9__gnu_cxx5__ops11__pred_iterIZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS3_13BlobIndexNodeEEEUlRKS5_E_EENS0_10_Iter_predIT_EESC_ + 0x00000000400d2068 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEEENKUlRKS2_E_clES6_ + 0x00000000400d2068 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZSt9__find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS2_20eraseOrphanDataBlobsERS4_EUlRKS3_E_EEET_SE_SE_T0_St18input_iterator_tag + 0x00000000400d2068 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZSt7find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEZNS2_20eraseOrphanDataBlobsERS4_EUlRKS3_E_ET_SA_SA_T0_ + 0x00000000400d2068 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x14 (size before relaxing) + .literal._ZSt9__find_ifIN14intrusive_listIN3nvs7Storage14NamespaceEntryEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS2_21createOrOpenNamespaceEPKcbRhEUlRKS3_E_EEET_SG_SG_T0_St18input_iterator_tag + 0x00000000400d2068 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZSt7find_ifIN14intrusive_listIN3nvs7Storage14NamespaceEntryEE8iteratorEZNS2_21createOrOpenNamespaceEPKcbRhEUlRKS3_E_ET_SC_SC_T0_ + 0x00000000400d2068 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Item6getKeyEPcj + 0x00000000400d2068 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE + 0x00000000400d206c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetE + 0x00000000400d206c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj + 0x00000000400d2070 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE + 0x00000000400d2074 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x1c (size before relaxing) + .literal._ZN3nvs7Storage17readMultiPageBlobEhPKcPvj + 0x00000000400d207c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj + 0x00000000400d207c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc + 0x00000000400d207c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs7Storage14eraseNamespaceEh + 0x00000000400d207c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj + 0x00000000400d207c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs7Storage22calcEntriesInNamespaceEhRj + 0x00000000400d207c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE + 0x00000000400d207c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x10 (size before relaxing) + .literal._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x00000000400d2080 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED5Ev + 0x00000000400d2080 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + 0x00000000400d2080 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs7Storage15clearNamespacesEv + 0x00000000400d2084 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs7StorageD2Ev + 0x00000000400d2084 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE17clearAndFreeNodesEv + 0x00000000400d2084 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs7Storage4initEmm + 0x00000000400d2088 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x38 (size before relaxing) + .literal._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE17clearAndFreeNodesEv + 0x00000000400d2090 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE + 0x00000000400d2094 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x3c (size before relaxing) + .literal._ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj + 0x00000000400d20a4 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x50 (size before relaxing) + .literal._ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh + 0x00000000400d20ac 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x24 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple6commitEv + 0x00000000400d20ac 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimpleD2Ev + 0x00000000400d20ac 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimpleD0Ev + 0x00000000400d20b4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj + 0x00000000400d20b4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj + 0x00000000400d20b8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj + 0x00000000400d20b8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple10get_stringEPKcPcj + 0x00000000400d20b8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple8get_blobEPKcPvj + 0x00000000400d20b8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ + 0x00000000400d20b8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj + 0x00000000400d20b8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple10erase_itemEPKc + 0x00000000400d20b8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple9erase_allEv + 0x00000000400d20b8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple20get_used_entry_countERj + 0x00000000400d20b8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs12NVSPartitionD5Ev + 0x00000000400d20b8 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs12NVSPartition8read_rawEjPvj + 0x00000000400d20c0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition4readEjPvj + 0x00000000400d20c0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition9write_rawEjPKvj + 0x00000000400d20c0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition5writeEjPKvj + 0x00000000400d20c0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition11erase_rangeEjj + 0x00000000400d20c0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartitionC2EPK15esp_partition_t + 0x00000000400d20c0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs19NVSPartitionManagerD5Ev + 0x00000000400d20c0 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xc (size before relaxing) + .literal._ZZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKcENKUlRNS_7StorageEE_clES4_ + 0x00000000400d20c4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .literal._ZSt9__find_ifIN14intrusive_listIN3nvs7StorageEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS1_19NVSPartitionManager24lookup_storage_from_nameEPKcEUlRS2_E_EEET_SE_SE_T0_St18input_iterator_tag + 0x00000000400d20c8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZSt7find_ifIN14intrusive_listIN3nvs7StorageEE8iteratorEZNS1_19NVSPartitionManager24lookup_storage_from_nameEPKcEUlRS2_E_ET_SA_SA_T0_ + 0x00000000400d20c8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs7StorageC5EPNS_9PartitionE + 0x00000000400d20c8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager12get_instanceEv + 0x00000000400d20c8 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc + 0x00000000400d20cc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager11init_customEPNS_9PartitionEmm + 0x00000000400d20cc 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x20 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager14init_partitionEPKc + 0x00000000400d20d4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE + 0x00000000400d20d8 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager16deinit_partitionEPKc + 0x00000000400d20dc 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x20 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE + 0x00000000400d20e0 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x20 (size before relaxing) + .literal._ZN3nvs8HashList4findEjRKNS_4ItemE + 0x00000000400d20e8 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs8HashList5clearEv + 0x00000000400d20ec 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs8HashListD2Ev + 0x00000000400d20f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs8HashList5eraseEj + 0x00000000400d20f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs8HashList6insertERKNS_4ItemEj + 0x00000000400d20f0 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs4ItemC5EhNS_8ItemTypeEhPKch + 0x00000000400d20f8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4PageC2Ev + 0x00000000400d20f8 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page6Header14calculateCrc32Ev + 0x00000000400d20fc 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page10initializeEv + 0x00000000400d2100 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZNK3nvs4Page12getSeqNumberERm + 0x00000000400d2100 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page12setSeqNumberEm + 0x00000000400d2100 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page5eraseEv + 0x00000000400d2104 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4Page11markFreeingEv + 0x00000000400d2108 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4Page8markFullEv + 0x00000000400d210c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .literal._ZNK3nvs4Page18getVarDataTailroomEv + 0x00000000400d210c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE + 0x00000000400d2110 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page10writeEntryERKNS_4ItemE + 0x00000000400d2114 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page9copyItemsERS0_ + 0x00000000400d2114 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x1c (size before relaxing) + .literal._ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE + 0x00000000400d2118 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page14writeEntryDataEPKhj + 0x00000000400d2118 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh + 0x00000000400d2118 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4c (size before relaxing) + .literal._ZN3nvs4Page17eraseEntryAndSpanEj + 0x00000000400d211c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x28 (size before relaxing) + .literal._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE + 0x00000000400d2120 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x20 (size before relaxing) + .literal._ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE + 0x00000000400d2124 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x28 (size before relaxing) + .literal._ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE + 0x00000000400d2128 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x28 (size before relaxing) + .literal._ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x00000000400d2128 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4Page15mLoadEntryTableEv + 0x00000000400d2128 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x40 (size before relaxing) + .literal._ZN3nvs4Page4loadEPNS_9PartitionEm + 0x00000000400d2128 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x24 (size before relaxing) + .literal._ZZN3nvs11PageManager4loadEPNS_9PartitionEmmENKUlRKNS_4PageEE_clES5_ + 0x00000000400d2138 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZSt9__find_ifIN14intrusive_listIN3nvs4PageEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS1_11PageManager4loadEPNS1_9PartitionEmmEUlRKS2_E_EEET_SF_SF_T0_St18input_iterator_tag + 0x00000000400d2138 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZSt7find_ifIN14intrusive_listIN3nvs4PageEE8iteratorEZNS1_11PageManager4loadEPNS1_9PartitionEmmEUlRKS2_E_ET_SB_SB_T0_ + 0x00000000400d2138 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN14intrusive_listIN3nvs4PageEE5clearEv + 0x00000000400d2138 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .literal._ZN3nvs11PageManager12activatePageEv + 0x00000000400d213c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs11PageManager14requestNewPageEv + 0x00000000400d2140 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x28 (size before relaxing) + .literal._ZN14intrusive_listIN3nvs4PageEE6insertENS2_8iteratorEPS1_ + 0x00000000400d2140 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs11PageManager4loadEPNS_9PartitionEmm + 0x00000000400d2144 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x70 (size before relaxing) + .literal._ZN3nvs16partition_lookup20lookup_nvs_partitionEPKcPPNS_12NVSPartitionE + 0x00000000400d214c 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + 0x10 (size before relaxing) + .literal._ZNK3nvs4Item14calculateCrc32Ev + 0x00000000400d2154 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0xc (size before relaxing) + .literal._ZNK3nvs4Item26calculateCrc32WithoutValueEv + 0x00000000400d2154 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs4Item14calculateCrc32EPKhj + 0x00000000400d2154 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x4 (size before relaxing) + .literal.phy_update_wifi_mac_time + 0x00000000400d2154 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .literal.load_cal_data_from_nvs_handle + 0x00000000400d215c 0x30 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x54 (size before relaxing) + .literal.store_cal_data_to_nvs_handle + 0x00000000400d218c 0x14 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x6c (size before relaxing) + .literal.esp_phy_rf_get_on_ts + 0x00000000400d21a0 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .literal.esp_phy_disable + 0x00000000400d21a4 0x1c esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x20 (size before relaxing) + .literal.esp_wifi_bt_power_domain_off + 0x00000000400d21c0 0x18 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x20 (size before relaxing) + .literal.esp_phy_get_init_data + 0x00000000400d21d8 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .literal.esp_phy_load_cal_data_from_nvs + 0x00000000400d21dc 0xc esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x28 (size before relaxing) + .literal.esp_phy_store_cal_data_to_nvs + 0x00000000400d21e8 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x10 (size before relaxing) + .literal.esp_phy_load_cal_and_init + 0x00000000400d21e8 0x28 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x90 (size before relaxing) + .literal.esp_phy_enable + 0x00000000400d2210 0x10 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x30 (size before relaxing) + .literal.esp_netif_list_lock + 0x00000000400d2220 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0xc (size before relaxing) + .literal.esp_netif_list_unlock + 0x00000000400d2224 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x20 (size before relaxing) + .literal.esp_netif_add_to_list + 0x00000000400d223c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x18 (size before relaxing) + .literal.esp_netif_remove_from_list + 0x00000000400d2240 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x28 (size before relaxing) + .literal.esp_netif_get_nr_of_ifs + 0x00000000400d2248 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_next_unsafe + 0x00000000400d2248 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_is_netif_listed + 0x00000000400d2248 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x20 (size before relaxing) + .literal.esp_netif_get_handle_from_ifkey + 0x00000000400d2250 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x28 (size before relaxing) + .literal.esp_netif_is_active + 0x00000000400d2254 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_set_default_netif_internal + 0x00000000400d2254 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_lwip_ipc_call_msg + 0x00000000400d2254 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x1c (size before relaxing) + .literal.esp_netif_lwip_ipc_call + 0x00000000400d2260 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_update_default_netif + 0x00000000400d2260 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_lwip_ipc_no_args + 0x00000000400d2264 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_api_cb + 0x00000000400d2264 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.tcpip_init_done + 0x00000000400d2264 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_config_sanity_check + 0x00000000400d2264 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x1c (size before relaxing) + .literal.set_lwip_netif_callback + 0x00000000400d2270 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc (size before relaxing) + .literal.esp_netif_set_mac_api + 0x00000000400d2278 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 + 0x00000000400d2278 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_dhcps_cb + 0x00000000400d2278 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + .literal.esp_netif_start_ip_lost_timer + 0x00000000400d228c 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc (size before relaxing) + .literal.netif_set_mldv6_flag + 0x00000000400d2294 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc (size before relaxing) + .literal.esp_netif_internal_nd6_cb + 0x00000000400d2298 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x24 (size before relaxing) + .literal.netif_set_garp_flag + 0x00000000400d229c 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc (size before relaxing) + .literal.esp_netif_ip_lost_timer + 0x00000000400d22a4 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x20 (size before relaxing) + .literal.netif_send_mldv6 + 0x00000000400d22ac 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x10 (size before relaxing) + .literal.esp_netif_init_configuration + 0x00000000400d22ac 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x2c (size before relaxing) + .literal.netif_unset_garp_flag + 0x00000000400d22bc 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.netif_unset_mldv6_flag + 0x00000000400d22bc 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_lwip_remove + 0x00000000400d22bc 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x14 (size before relaxing) + .literal.esp_netif_lwip_remove_api + 0x00000000400d22bc 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.netif_send_garp + 0x00000000400d22bc 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x14 (size before relaxing) + .literal.remove_lwip_netif_callback + 0x00000000400d22bc 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_lwip_add + 0x00000000400d22bc 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + .literal.esp_netif_start_api + 0x00000000400d22c4 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x70 (size before relaxing) + .literal.esp_netif_stop_api + 0x00000000400d22f4 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + .literal.dns_clear_servers + 0x00000000400d22f8 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_dhcpc_start_api + 0x00000000400d22f8 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + .literal.esp_netif_up_api + 0x00000000400d2300 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x10 (size before relaxing) + .literal.esp_netif_down_api + 0x00000000400d2300 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x30 (size before relaxing) + .literal.esp_ip4addr_ntoa + 0x00000000400d2304 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_init + 0x00000000400d2304 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x5c (size before relaxing) + .literal.esp_netif_destroy + 0x00000000400d2314 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x3c (size before relaxing) + .literal.esp_netif_new + 0x00000000400d231c 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xb8 (size before relaxing) + .literal.esp_netif_attach + 0x00000000400d233c 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x14 (size before relaxing) + .literal.esp_netif_set_driver_config + 0x00000000400d2344 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_set_mac + 0x00000000400d2344 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc (size before relaxing) + .literal.esp_netif_start + 0x00000000400d2348 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_stop + 0x00000000400d234c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_netstack_buf_ref + 0x00000000400d2350 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_netstack_buf_free + 0x00000000400d2350 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_dhcpc_start + 0x00000000400d2350 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_get_hostname + 0x00000000400d2354 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_up + 0x00000000400d2354 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_down + 0x00000000400d2358 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_update_default_netif_lwip + 0x00000000400d235c 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x44 (size before relaxing) + .literal.esp_netif_get_old_ip_info + 0x00000000400d2368 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_get_ip_info + 0x00000000400d2368 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_set_old_ip_info + 0x00000000400d2368 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_internal_dhcpc_cb + 0x00000000400d236c 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x30 (size before relaxing) + .literal.netif_callback_fn + 0x00000000400d2378 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_supp_crc32 + 0x00000000400d2378 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .literal.esp_aes_decrypt + 0x00000000400d237c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_encrypt + 0x00000000400d237c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_unwrap + 0x00000000400d237c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_wrap + 0x00000000400d237c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x4 (size before relaxing) + .literal.sha256_prf_bits + 0x00000000400d237c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0x14 (size before relaxing) + .literal.sha256_prf + 0x00000000400d2380 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0x4 (size before relaxing) + .literal.sha1_prf + 0x00000000400d2380 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + 0x14 (size before relaxing) + .literal.digest_vector + 0x00000000400d2380 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + .literal.hmac_vector + 0x00000000400d2384 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + .literal.aes_crypt_init + 0x00000000400d2384 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + .literal.aes_crypt_deinit + 0x00000000400d238c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x8 (size before relaxing) + .literal.aes_crypt + 0x00000000400d238c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.sha256_vector + 0x00000000400d238c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.sha1_vector + 0x00000000400d238c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.md5_vector + 0x00000000400d238c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_sha256_vector + 0x00000000400d238c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_sha256 + 0x00000000400d238c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_md5_vector + 0x00000000400d238c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_md5 + 0x00000000400d238c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_sha1_vector + 0x00000000400d238c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_sha1 + 0x00000000400d238c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_encrypt_init + 0x00000000400d238c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_encrypt + 0x00000000400d238c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_encrypt_deinit + 0x00000000400d238c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_decrypt_init + 0x00000000400d238c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_decrypt + 0x00000000400d238c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_decrypt_deinit + 0x00000000400d238c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_128_cbc_encrypt + 0x00000000400d238c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + .literal.aes_128_cbc_decrypt + 0x00000000400d2390 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + .literal.aes_ctr_encrypt + 0x00000000400d2390 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x10 (size before relaxing) + .literal.pbkdf2_sha1 + 0x00000000400d2390 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x8 (size before relaxing) + .literal.omac1_aes_vector + 0x00000000400d2390 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x20 (size before relaxing) + .literal.omac1_aes_128_vector + 0x00000000400d2394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.omac1_aes_128 + 0x00000000400d2394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .text.esp_app_get_description + 0x00000000400d2394 0x8 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x00000000400d2394 esp_app_get_description + .text.esp_app_format_init_elf_sha256 + 0x00000000400d239c 0x5c esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x00000000400d239c esp_app_format_init_elf_sha256 + .text.esp_app_get_elf_sha256 + 0x00000000400d23f8 0x46 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x00000000400d23f8 esp_app_get_elf_sha256 + *fill* 0x00000000400d243e 0x2 + .text.esp_pthread_cfg_key_destructor + 0x00000000400d2440 0xa esp-idf/pthread/libpthread.a(pthread.c.obj) + 0xe (size before relaxing) + *fill* 0x00000000400d244a 0x2 + .text.pthread_mutex_lock_internal + 0x00000000400d244c 0x54 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x60 (size before relaxing) + .text.esp_pthread_init + 0x00000000400d24a0 0x36 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x3e (size before relaxing) + 0x00000000400d24a0 esp_pthread_init + *fill* 0x00000000400d24d6 0x2 + .text.pthread_mutex_init + 0x00000000400d24d8 0x68 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x70 (size before relaxing) + 0x00000000400d24d8 pthread_mutex_init + .text.pthread_mutex_init_if_static + 0x00000000400d2540 0x30 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x3c (size before relaxing) + .text.pthread_mutex_destroy + 0x00000000400d2570 0x6a esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x7a (size before relaxing) + 0x00000000400d2570 pthread_mutex_destroy + *fill* 0x00000000400d25da 0x2 + .text.pthread_mutex_lock + 0x00000000400d25dc 0x1e esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x22 (size before relaxing) + 0x00000000400d25dc pthread_mutex_lock + *fill* 0x00000000400d25fa 0x2 + .text.pthread_mutex_unlock + 0x00000000400d25fc 0x61 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x6d (size before relaxing) + 0x00000000400d25fc pthread_mutex_unlock + *fill* 0x00000000400d265d 0x3 + .text.find_key + 0x00000000400d2660 0x2c esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x2f (size before relaxing) + *fill* 0x00000000400d268c 0x0 + .text.pthread_cleanup_thread_specific_data_callback + 0x00000000400d268c 0x3f esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x4a (size before relaxing) + *fill* 0x00000000400d26cb 0x1 + .text.pthread_key_create + 0x00000000400d26cc 0x45 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x4d (size before relaxing) + 0x00000000400d26cc pthread_key_create + *fill* 0x00000000400d2711 0x3 + .text.pthread_key_delete + 0x00000000400d2714 0x3f esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x46 (size before relaxing) + 0x00000000400d2714 pthread_key_delete + *fill* 0x00000000400d2753 0x1 + .text.pthread_getspecific + 0x00000000400d2754 0x1c esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x20 (size before relaxing) + 0x00000000400d2754 pthread_getspecific + .text.pthread_setspecific + 0x00000000400d2770 0xb7 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0xc3 (size before relaxing) + 0x00000000400d2770 pthread_setspecific + *fill* 0x00000000400d2827 0x1 + .text.core_intr_matrix_clear + 0x00000000400d2828 0x23 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x00000000400d284b 0x1 + .text.start_other_core + 0x00000000400d284c 0x105 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x135 (size before relaxing) + *fill* 0x00000000400d2951 0x3 + .text.startup_resume_other_cores + 0x00000000400d2954 0x10 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x00000000400d2954 startup_resume_other_cores + .text.select_rtc_slow_clk + 0x00000000400d2964 0x8c esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x9c (size before relaxing) + .text.esp_clk_init + 0x00000000400d29f0 0xf1 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x131 (size before relaxing) + 0x00000000400d29f0 esp_clk_init + *fill* 0x00000000400d2ae1 0x3 + .text.esp_perip_clk_init + 0x00000000400d2ae4 0xf2 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x116 (size before relaxing) + 0x00000000400d2ae4 esp_perip_clk_init + *fill* 0x00000000400d2bd6 0x2 + .text.esp_cache_err_int_init + 0x00000000400d2bd8 0x54 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x5c (size before relaxing) + 0x00000000400d2bd8 esp_cache_err_int_init + .text.esp_cache_err_get_cpuid + 0x00000000400d2c2c 0x2c esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x30 (size before relaxing) + 0x00000000400d2c2c esp_cache_err_get_cpuid + .text.esp_ipc_isr_init + 0x00000000400d2c58 0x32 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x36 (size before relaxing) + 0x00000000400d2c58 esp_ipc_isr_init + *fill* 0x00000000400d2c8a 0x2 + .text.esp_int_wdt_init + 0x00000000400d2c8c 0x46 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x56 (size before relaxing) + 0x00000000400d2c8c esp_int_wdt_init + *fill* 0x00000000400d2cd2 0x2 + .text.esp_int_wdt_cpu_init + 0x00000000400d2cd4 0x2c esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x34 (size before relaxing) + 0x00000000400d2cd4 esp_int_wdt_cpu_init + .text.panic_print_char_uart + 0x00000000400d2d00 0x3b esp-idf/esp_system/libesp_system.a(panic.c.obj) + *fill* 0x00000000400d2d3b 0x1 + .text.disable_all_wdts + 0x00000000400d2d3c 0x3b esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x4b (size before relaxing) + *fill* 0x00000000400d2d77 0x1 + .text.panic_print_char + 0x00000000400d2d78 0xb esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0xe (size before relaxing) + 0x00000000400d2d78 panic_print_char + *fill* 0x00000000400d2d83 0x1 + .text.panic_print_str + 0x00000000400d2d84 0x1a esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x00000000400d2d84 panic_print_str + *fill* 0x00000000400d2d9e 0x2 + .text.print_abort_details + 0x00000000400d2da0 0xd esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x10 (size before relaxing) + *fill* 0x00000000400d2dad 0x3 + .text.panic_print_hex + 0x00000000400d2db0 0x2c esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x2f (size before relaxing) + 0x00000000400d2db0 panic_print_hex + *fill* 0x00000000400d2ddc 0x0 + .text.panic_print_dec + 0x00000000400d2ddc 0x3c esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x46 (size before relaxing) + 0x00000000400d2ddc panic_print_dec + *fill* 0x00000000400d2e18 0x0 + .text.esp_panic_handler_reconfigure_wdts + 0x00000000400d2e18 0x63 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x7b (size before relaxing) + 0x00000000400d2e18 esp_panic_handler_reconfigure_wdts + *fill* 0x00000000400d2e7b 0x1 + .text.esp_panic_handler + 0x00000000400d2e7c 0x15e esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x1c7 (size before relaxing) + 0x00000000400d2e7c esp_panic_handler + *fill* 0x00000000400d2fda 0x2 + .text.esp_register_shutdown_handler + 0x00000000400d2fdc 0x32 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x00000000400d2fdc esp_register_shutdown_handler + *fill* 0x00000000400d300e 0x2 + .text.esp_unregister_shutdown_handler + 0x00000000400d3010 0x2a esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x00000000400d3010 esp_unregister_shutdown_handler + *fill* 0x00000000400d303a 0x2 + .text.esp_restart + 0x00000000400d303c 0x20 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x26 (size before relaxing) + 0x00000000400d303c esp_restart + *fill* 0x00000000400d305c 0x0 + .text.do_global_ctors + 0x00000000400d305c 0x19 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x00000000400d3075 0x3 + .text.do_core_init + 0x00000000400d3078 0xb3 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0xda (size before relaxing) + *fill* 0x00000000400d312b 0x1 + .text.do_system_init_fn + 0x00000000400d312c 0x51 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x59 (size before relaxing) + *fill* 0x00000000400d317d 0x3 + .text.do_secondary_init + 0x00000000400d3180 0x5e esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x62 (size before relaxing) + *fill* 0x00000000400d31de 0x2 + .text.start_cpu0_default + 0x00000000400d31e0 0x1b4 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x1f8 (size before relaxing) + 0x00000000400d31e0 start_cpu0 + .text.__esp_system_init_fn_init_components0 + 0x00000000400d3394 0x12 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x16 (size before relaxing) + *fill* 0x00000000400d33a6 0x2 + .text.frame_to_panic_info + 0x00000000400d33a8 0x3d esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x41 (size before relaxing) + *fill* 0x00000000400d33e5 0x3 + .text.panic_handler + 0x00000000400d33e8 0x162 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x17a (size before relaxing) + *fill* 0x00000000400d354a 0x2 + .text.print_state_for_core + 0x00000000400d354c 0x26 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x2a (size before relaxing) + *fill* 0x00000000400d3572 0x2 + .text.print_state + 0x00000000400d3574 0x4d esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x55 (size before relaxing) + *fill* 0x00000000400d35c1 0x3 + .text.panic_restart + 0x00000000400d35c4 0xf esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x18 (size before relaxing) + 0x00000000400d35c4 panic_restart + *fill* 0x00000000400d35d3 0x1 + .text.esp_brownout_init + 0x00000000400d35d4 0x47 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x4b (size before relaxing) + 0x00000000400d35d4 esp_brownout_init + *fill* 0x00000000400d361b 0x1 + .text.print_debug_exception_details + 0x00000000400d361c 0x50 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x68 (size before relaxing) + .text.print_illegal_instruction_details + 0x00000000400d366c 0x4e esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x66 (size before relaxing) + *fill* 0x00000000400d36ba 0x2 + .text.panic_print_registers + 0x00000000400d36bc 0xd3 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x10f (size before relaxing) + 0x00000000400d36bc panic_print_registers + *fill* 0x00000000400d378f 0x1 + .text.panic_arch_fill_info + 0x00000000400d3790 0x32 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x00000000400d3790 panic_arch_fill_info + *fill* 0x00000000400d37c2 0x2 + .text.panic_soc_fill_info + 0x00000000400d37c4 0x56 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x00000000400d37c4 panic_soc_fill_info + *fill* 0x00000000400d381a 0x2 + .text.panic_print_backtrace + 0x00000000400d381c 0x20 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x00000000400d381c panic_print_backtrace + .text.esp_vApplicationIdleHook + 0x00000000400d383c 0x30 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x33 (size before relaxing) + 0x00000000400d383c esp_vApplicationIdleHook + *fill* 0x00000000400d386c 0x0 + .text.esp_register_freertos_idle_hook_for_cpu + 0x00000000400d386c 0x51 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x59 (size before relaxing) + 0x00000000400d386c esp_register_freertos_idle_hook_for_cpu + *fill* 0x00000000400d38bd 0x3 + .text.esp_register_freertos_tick_hook_for_cpu + 0x00000000400d38c0 0x4d esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x55 (size before relaxing) + 0x00000000400d38c0 esp_register_freertos_tick_hook_for_cpu + *fill* 0x00000000400d390d 0x3 + .text.esp_deregister_freertos_idle_hook_for_cpu + 0x00000000400d3910 0x3c esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x40 (size before relaxing) + 0x00000000400d3910 esp_deregister_freertos_idle_hook_for_cpu + .text.uart_hal_rxfifo_rst + 0x00000000400d394c 0x82 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x00000000400d394c uart_hal_rxfifo_rst + *fill* 0x00000000400d39ce 0x2 + .text.uart_hal_write_txfifo + 0x00000000400d39d0 0x82 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x85 (size before relaxing) + 0x00000000400d39d0 uart_hal_write_txfifo + *fill* 0x00000000400d3a52 0x2 + .text.brownout_hal_config + 0x00000000400d3a54 0xb0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x00000000400d3a54 brownout_hal_config + .text.heap_caps_get_free_size + 0x00000000400d3b04 0x2d esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x00000000400d3b04 heap_caps_get_free_size + *fill* 0x00000000400d3b31 0x3 + .text.heap_caps_get_info + 0x00000000400d3b34 0x70 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x00000000400d3b34 heap_caps_get_info + .text.heap_caps_get_largest_free_block + 0x00000000400d3ba4 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x00000000400d3ba4 heap_caps_get_largest_free_block + *fill* 0x00000000400d3bb5 0x3 + .text.register_heap + 0x00000000400d3bb8 0x2f esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x32 (size before relaxing) + *fill* 0x00000000400d3be7 0x1 + .text.heap_caps_enable_nonos_stack_heaps + 0x00000000400d3be8 0x28 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x2c (size before relaxing) + 0x00000000400d3be8 heap_caps_enable_nonos_stack_heaps + .text.heap_caps_init + 0x00000000400d3c10 0x28e esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x2a2 (size before relaxing) + 0x00000000400d3c10 heap_caps_init + *fill* 0x00000000400d3e9e 0x2 + .text.heap_caps_add_region_with_caps + 0x00000000400d3ea0 0xe2 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0xf6 (size before relaxing) + 0x00000000400d3ea0 heap_caps_add_region_with_caps + *fill* 0x00000000400d3f82 0x2 + .text.heap_caps_add_region + 0x00000000400d3f84 0x5e esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x00000000400d3f84 heap_caps_add_region + *fill* 0x00000000400d3fe2 0x2 + .text.s_get_num_reserved_regions + 0x00000000400d3fe4 0x11 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x00000000400d3ff5 0x3 + .text.s_prepare_reserved_regions + 0x00000000400d3ff8 0xac esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0xb4 (size before relaxing) + .text.soc_get_available_memory_region_max_count + 0x00000000400d40a4 0x12 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x00000000400d40a4 soc_get_available_memory_region_max_count + *fill* 0x00000000400d40b6 0x2 + .text.soc_get_available_memory_regions + 0x00000000400d40b8 0xf9 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x101 (size before relaxing) + 0x00000000400d40b8 soc_get_available_memory_regions + *fill* 0x00000000400d41b1 0x3 + .text.calc_checksum + 0x00000000400d41b4 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_slowclk_cal_get + 0x00000000400d41d8 0xd esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x00000000400d41d8 esp_clk_slowclk_cal_get + *fill* 0x00000000400d41e5 0x3 + .text.esp_rtc_get_time_us + 0x00000000400d41e8 0xd8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0xf7 (size before relaxing) + 0x00000000400d41e8 esp_rtc_get_time_us + *fill* 0x00000000400d42c0 0x0 + .text.esp_clk_slowclk_cal_set + 0x00000000400d42c0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x13 (size before relaxing) + 0x00000000400d42c0 esp_clk_slowclk_cal_set + *fill* 0x00000000400d42d0 0x0 + .text.insert_vector_desc + 0x00000000400d42d0 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.find_desc_for_int + 0x00000000400d4320 0x25 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x00000000400d4345 0x3 + .text.get_desc_for_int + 0x00000000400d4348 0x6e esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x76 (size before relaxing) + *fill* 0x00000000400d43b6 0x2 + .text.find_desc_for_source + 0x00000000400d43b8 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.is_vect_desc_usable + 0x00000000400d442c 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.get_available_int + 0x00000000400d4514 0x145 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x155 (size before relaxing) + *fill* 0x00000000400d4659 0x3 + .text.esp_intr_alloc_intrstatus + 0x00000000400d465c 0x2fd esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x329 (size before relaxing) + 0x00000000400d465c esp_intr_alloc_intrstatus + *fill* 0x00000000400d4959 0x3 + .text.esp_intr_alloc + 0x00000000400d495c 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x1c (size before relaxing) + 0x00000000400d495c esp_intr_alloc + .text.s_rtc_isr_noniram_hook + 0x00000000400d4974 0xf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + *fill* 0x00000000400d4983 0x1 + .text.s_rtc_isr_noniram_hook_relieve + 0x00000000400d4984 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .text.rtc_isr_ensure_installed + 0x00000000400d4998 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x5f (size before relaxing) + *fill* 0x00000000400d49f0 0x0 + .text.rtc_isr_register + 0x00000000400d49f0 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x6a (size before relaxing) + 0x00000000400d49f0 rtc_isr_register + *fill* 0x00000000400d4a46 0x2 + .text.rtcio_ll_force_hold_disable + 0x00000000400d4a48 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x67 (size before relaxing) + *fill* 0x00000000400d4aac 0x0 + .text.esp_deep_sleep_wakeup_io_reset + 0x00000000400d4aac 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x6a (size before relaxing) + 0x00000000400d4aac esp_deep_sleep_wakeup_io_reset + *fill* 0x00000000400d4b12 0x2 + .text.rtc_init + 0x00000000400d4b14 0x39a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x3be (size before relaxing) + 0x00000000400d4b14 rtc_init + *fill* 0x00000000400d4eae 0x2 + .text.esp_chip_info + 0x00000000400d4eb0 0xb6 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0xba (size before relaxing) + 0x00000000400d4eb0 esp_chip_info + *fill* 0x00000000400d4f66 0x2 + .text.esp_newlib_locks_init + 0x00000000400d4f68 0x59 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x65 (size before relaxing) + 0x00000000400d4f68 esp_newlib_locks_init + *fill* 0x00000000400d4fc1 0x3 + .text.raise_r_stub + 0x00000000400d4fc4 0xf esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + *fill* 0x00000000400d4fd3 0x1 + .text.esp_newlib_init + 0x00000000400d4fd4 0x36 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x3a (size before relaxing) + 0x00000000400d4fd4 esp_setup_newlib_syscalls + 0x00000000400d4fd4 esp_newlib_init + *fill* 0x00000000400d500a 0x2 + .text.syscall_not_implemented_aborts + 0x00000000400d500c 0x6 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x9 (size before relaxing) + 0x00000000400d500c raise + 0x00000000400d500c _exit + 0x00000000400d500c _sbrk_r + 0x00000000400d500c _raise_r + *fill* 0x00000000400d5012 0x2 + .text.adjust_boot_time + 0x00000000400d5014 0x13e esp-idf/newlib/libnewlib.a(time.c.obj) + 0x142 (size before relaxing) + *fill* 0x00000000400d5152 0x2 + .text.get_adjusted_boot_time + 0x00000000400d5154 0x1a esp-idf/newlib/libnewlib.a(time.c.obj) + 0x22 (size before relaxing) + *fill* 0x00000000400d516e 0x2 + .text.adjtime_corr_stop + 0x00000000400d5170 0x29 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x34 (size before relaxing) + *fill* 0x00000000400d5199 0x3 + .text.settimeofday + 0x00000000400d519c 0x49 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x54 (size before relaxing) + 0x00000000400d519c settimeofday + *fill* 0x00000000400d51e5 0x3 + .text.esp_newlib_time_init + 0x00000000400d51e8 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + 0xb (size before relaxing) + 0x00000000400d51e8 esp_newlib_time_init + *fill* 0x00000000400d51f0 0x0 + .text.esp_time_impl_get_time_since_boot + 0x00000000400d51f0 0x1f esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x00000000400d51f0 esp_time_impl_get_time_since_boot + *fill* 0x00000000400d520f 0x1 + .text.esp_time_impl_set_boot_time + 0x00000000400d5210 0x23 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x27 (size before relaxing) + 0x00000000400d5210 esp_time_impl_set_boot_time + *fill* 0x00000000400d5233 0x1 + .text.esp_time_impl_get_boot_time + 0x00000000400d5234 0x23 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x27 (size before relaxing) + 0x00000000400d5234 esp_time_impl_get_boot_time + *fill* 0x00000000400d5257 0x1 + .text.esp_set_time_from_rtc + 0x00000000400d5258 0x27 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x2f (size before relaxing) + 0x00000000400d5258 esp_set_time_from_rtc + *fill* 0x00000000400d527f 0x1 + .text.esp_sync_timekeeping_timers + 0x00000000400d5280 0x62 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x6e (size before relaxing) + 0x00000000400d5280 esp_sync_timekeeping_timers + *fill* 0x00000000400d52e2 0x2 + .text.esp_time_impl_init + 0x00000000400d52e4 0x8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0xb (size before relaxing) + 0x00000000400d52e4 esp_time_impl_init + *fill* 0x00000000400d52ec 0x0 + .text.init_timer_task + 0x00000000400d52ec 0x75 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x79 (size before relaxing) + *fill* 0x00000000400d5361 0x3 + .text.timer_process_alarm + 0x00000000400d5364 0x122 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x12e (size before relaxing) + *fill* 0x00000000400d5486 0x2 + .text.timer_task + 0x00000000400d5488 0x17 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x1b (size before relaxing) + *fill* 0x00000000400d549f 0x1 + .text.deinit_timer_task + 0x00000000400d54a0 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x00000000400d54ba 0x2 + .text.esp_timer_create + 0x00000000400d54bc 0x81 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x00000000400d54bc esp_timer_create + *fill* 0x00000000400d553d 0x3 + .text.esp_timer_delete + 0x00000000400d5540 0x55 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x65 (size before relaxing) + 0x00000000400d5540 esp_timer_delete + *fill* 0x00000000400d5595 0x3 + .text.esp_timer_early_init + 0x00000000400d5598 0xf esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x13 (size before relaxing) + 0x00000000400d5598 esp_timer_early_init + *fill* 0x00000000400d55a7 0x1 + .text.esp_timer_init + 0x00000000400d55a8 0x32 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x3e (size before relaxing) + 0x00000000400d55a8 esp_timer_init + *fill* 0x00000000400d55da 0x2 + .text.__esp_system_init_fn_esp_timer_startup_init + 0x00000000400d55dc 0xa esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xd (size before relaxing) + *fill* 0x00000000400d55e6 0x2 + .text.esp_timer_impl_init_system_time + 0x00000000400d55e8 0x5a esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x6a (size before relaxing) + 0x00000000400d55e8 esp_timer_impl_init_system_time + *fill* 0x00000000400d5642 0x2 + .text.esp_timer_impl_early_init + 0x00000000400d5644 0x7c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x00000000400d5644 esp_timer_impl_early_init + .text.esp_timer_impl_init + 0x00000000400d56c0 0xd7 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0xf3 (size before relaxing) + 0x00000000400d56c0 esp_timer_impl_init + *fill* 0x00000000400d5797 0x1 + .text.set_xpd_sar + 0x00000000400d5798 0x28 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x00000000400d5798 set_xpd_sar + .text.translate_path + 0x00000000400d57c0 0x3e esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x00000000400d57fe 0x2 + .text.esp_vfs_register_common + 0x00000000400d5800 0xf2 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xf6 (size before relaxing) + 0x00000000400d5800 esp_vfs_register_common + *fill* 0x00000000400d58f2 0x2 + .text.esp_vfs_register + 0x00000000400d58f4 0x1c esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x20 (size before relaxing) + 0x00000000400d58f4 esp_vfs_register + .text.esp_vfs_register_fd_range + 0x00000000400d5910 0x102 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10e (size before relaxing) + 0x00000000400d5910 esp_vfs_register_fd_range + *fill* 0x00000000400d5a12 0x2 + .text.get_vfs_for_index + 0x00000000400d5a14 0x22 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000400d5a14 get_vfs_for_index + *fill* 0x00000000400d5a36 0x2 + .text.get_vfs_for_fd + 0x00000000400d5a38 0x25 esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x00000000400d5a5d 0x3 + .text.get_vfs_for_path + 0x00000000400d5a60 0x70 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000400d5a60 get_vfs_for_path + .text.esp_vfs_open + 0x00000000400d5ad0 0xda esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xe2 (size before relaxing) + 0x00000000400d5ad0 esp_vfs_open + 0x00000000400d5ad0 _open_r + *fill* 0x00000000400d5baa 0x2 + .text.esp_vfs_write + 0x00000000400d5bac 0x6d esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x71 (size before relaxing) + 0x00000000400d5bac esp_vfs_write + 0x00000000400d5bac _write_r + *fill* 0x00000000400d5c19 0x3 + .text.esp_vfs_lseek + 0x00000000400d5c1c 0x6d esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x71 (size before relaxing) + 0x00000000400d5c1c _lseek_r + 0x00000000400d5c1c esp_vfs_lseek + *fill* 0x00000000400d5c89 0x3 + .text.esp_vfs_read + 0x00000000400d5c8c 0x6d esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x71 (size before relaxing) + 0x00000000400d5c8c esp_vfs_read + 0x00000000400d5c8c _read_r + *fill* 0x00000000400d5cf9 0x3 + .text.esp_vfs_close + 0x00000000400d5cfc 0xbb esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xbf (size before relaxing) + 0x00000000400d5cfc _close_r + 0x00000000400d5cfc esp_vfs_close + *fill* 0x00000000400d5db7 0x1 + .text.esp_vfs_fstat + 0x00000000400d5db8 0x68 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x6c (size before relaxing) + 0x00000000400d5db8 esp_vfs_fstat + 0x00000000400d5db8 _fstat_r + .text.esp_vfs_stat + 0x00000000400d5e20 0x47 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4b (size before relaxing) + 0x00000000400d5e20 esp_vfs_stat + 0x00000000400d5e20 _stat_r + *fill* 0x00000000400d5e67 0x1 + .text.esp_vfs_link + 0x00000000400d5e68 0x68 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x70 (size before relaxing) + 0x00000000400d5e68 _link_r + 0x00000000400d5e68 esp_vfs_link + .text.esp_vfs_unlink + 0x00000000400d5ed0 0x44 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x48 (size before relaxing) + 0x00000000400d5ed0 _unlink_r + 0x00000000400d5ed0 esp_vfs_unlink + .text.esp_vfs_rename + 0x00000000400d5f14 0x68 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x70 (size before relaxing) + 0x00000000400d5f14 _rename_r + 0x00000000400d5f14 esp_vfs_rename + .text.esp_vfs_select_triggered + 0x00000000400d5f7c 0x45 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x49 (size before relaxing) + 0x00000000400d5f7c esp_vfs_select_triggered + *fill* 0x00000000400d5fc1 0x3 + .text.esp_vfs_select_triggered_isr + 0x00000000400d5fc4 0x45 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x49 (size before relaxing) + 0x00000000400d5fc4 esp_vfs_select_triggered_isr + *fill* 0x00000000400d6009 0x3 + .text.console_open + 0x00000000400d600c 0x21 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x00000000400d600c console_open + *fill* 0x00000000400d602d 0x3 + .text.console_write + 0x00000000400d6030 0x20 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x00000000400d6030 console_write + .text.console_fstat + 0x00000000400d6050 0x18 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x1c (size before relaxing) + 0x00000000400d6050 console_fstat + .text.console_close + 0x00000000400d6068 0x1c esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x00000000400d6068 console_close + .text.console_read + 0x00000000400d6084 0x20 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x00000000400d6084 console_read + .text.console_fcntl + 0x00000000400d60a4 0x21 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x00000000400d60a4 console_fcntl + *fill* 0x00000000400d60c5 0x3 + .text.console_fsync + 0x00000000400d60c8 0x1d esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x00000000400d60c8 console_fsync + *fill* 0x00000000400d60e5 0x3 + .text.console_access + 0x00000000400d60e8 0x1d esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x00000000400d60e8 console_access + *fill* 0x00000000400d6105 0x3 + .text.console_end_select + 0x00000000400d6108 0x2d esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x00000000400d6108 console_end_select + *fill* 0x00000000400d6135 0x3 + .text.console_tcsetattr + 0x00000000400d6138 0x21 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x00000000400d6138 console_tcsetattr + *fill* 0x00000000400d6159 0x3 + .text.console_tcgetattr + 0x00000000400d615c 0x1c esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x20 (size before relaxing) + 0x00000000400d615c console_tcgetattr + .text.console_tcdrain + 0x00000000400d6178 0x1d esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x00000000400d6178 console_tcdrain + *fill* 0x00000000400d6195 0x3 + .text.console_tcflush + 0x00000000400d6198 0x1c esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x20 (size before relaxing) + 0x00000000400d6198 console_tcflush + .text.console_start_select + 0x00000000400d61b4 0x41 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + *fill* 0x00000000400d61f5 0x3 + .text.esp_vfs_dev_console_register + 0x00000000400d61f8 0x15 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x00000000400d61f8 esp_vfs_dev_console_register + *fill* 0x00000000400d620d 0x3 + .text.esp_vfs_console_register + 0x00000000400d6210 0x20 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x28 (size before relaxing) + 0x00000000400d6210 esp_vfs_console_register + .text.uart_read_char + 0x00000000400d6230 0x24 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.unregister_select + 0x00000000400d6254 0x60 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x68 (size before relaxing) + .text.uart_end_select + 0x00000000400d62b4 0x35 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x49 (size before relaxing) + *fill* 0x00000000400d62e9 0x3 + .text.register_select + 0x00000000400d62ec 0x49 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x51 (size before relaxing) + *fill* 0x00000000400d6335 0x3 + .text.uart_start_select + 0x00000000400d6338 0x189 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1a9 (size before relaxing) + *fill* 0x00000000400d64c1 0x3 + .text.select_notif_callback_isr + 0x00000000400d64c4 0xe2 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0xe6 (size before relaxing) + *fill* 0x00000000400d65a6 0x2 + .text.uart_tcflush + 0x00000000400d65a8 0x42 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d65ea 0x2 + .text.uart_tcdrain + 0x00000000400d65ec 0x32 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d661e 0x2 + .text.uart_tcgetattr + 0x00000000400d6620 0x384 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_tx_char + 0x00000000400d69a4 0x7e esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x81 (size before relaxing) + *fill* 0x00000000400d6a22 0x2 + .text.uart_rx_char + 0x00000000400d6a24 0xed esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d6b11 0x3 + .text.uart_fcntl + 0x00000000400d6b14 0x69 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d6b7d 0x3 + .text.uart_fstat + 0x00000000400d6b80 0x35 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d6bb5 0x3 + .text.uart_close + 0x00000000400d6bb8 0x22 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d6bda 0x2 + .text.uart_return_char + 0x00000000400d6bdc 0x26 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d6c02 0x2 + .text.uart_tcsetattr + 0x00000000400d6c04 0x38a esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d6f8e 0x2 + .text.uart_access + 0x00000000400d6f90 0x5c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_open + 0x00000000400d6fec 0x4f esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d703b 0x1 + .text.uart_fsync + 0x00000000400d703c 0x39 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x45 (size before relaxing) + *fill* 0x00000000400d7075 0x3 + .text.uart_read + 0x00000000400d7078 0xb2 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0xbe (size before relaxing) + *fill* 0x00000000400d712a 0x2 + .text.uart_write + 0x00000000400d712c 0x84 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x8c (size before relaxing) + .text.esp_vfs_uart_get_vfs + 0x00000000400d71b0 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x00000000400d71b0 esp_vfs_uart_get_vfs + .text.esp_coex_common_spin_lock_create_wrapper + 0x00000000400d71b8 0x24 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x28 (size before relaxing) + 0x00000000400d71b8 esp_coex_common_spin_lock_create_wrapper + .text.esp_coex_internal_semphr_take_wrapper + 0x00000000400d71dc 0x1e esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x22 (size before relaxing) + *fill* 0x00000000400d71fa 0x2 + .text.esp_coex_internal_semphr_give_wrapper + 0x00000000400d71fc 0x15 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + *fill* 0x00000000400d7211 0x3 + .text.esp_coex_common_timer_done_wrapper + 0x00000000400d7214 0xa esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0xe (size before relaxing) + 0x00000000400d7214 esp_coex_common_timer_done_wrapper + *fill* 0x00000000400d721e 0x2 + .text.esp_coex_common_timer_setfn_wrapper + 0x00000000400d7220 0xe esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x12 (size before relaxing) + 0x00000000400d7220 esp_coex_common_timer_setfn_wrapper + *fill* 0x00000000400d722e 0x2 + .text.esp_coex_internal_semphr_delete_wrapper + 0x00000000400d7230 0x14 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x1a (size before relaxing) + *fill* 0x00000000400d7244 0x0 + .text.esp_coex_internal_semphr_create_wrapper + 0x00000000400d7244 0x20 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x24 (size before relaxing) + .text.esp_coex_common_semphr_create_wrapper + 0x00000000400d7264 0x11 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x00000000400d7264 esp_coex_common_semphr_create_wrapper + *fill* 0x00000000400d7275 0x3 + .text.esp_coex_common_semphr_delete_wrapper + 0x00000000400d7278 0xa esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0xe (size before relaxing) + 0x00000000400d7278 esp_coex_common_semphr_delete_wrapper + *fill* 0x00000000400d7282 0x2 + .text.esp_coex_common_semphr_take_wrapper + 0x00000000400d7284 0x1c esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x20 (size before relaxing) + 0x00000000400d7284 esp_coex_common_semphr_take_wrapper + .text.esp_coex_common_semphr_give_wrapper + 0x00000000400d72a0 0x15 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x00000000400d72a0 esp_coex_common_semphr_give_wrapper + *fill* 0x00000000400d72b5 0x3 + .text.hli_intr_register + 0x00000000400d72b8 0x2a esp-idf/bt/libbt.a(hli_api.c.obj) + 0x00000000400d72b8 hli_intr_register + *fill* 0x00000000400d72e2 0x2 + .text.hli_queue_create + 0x00000000400d72e4 0x30 esp-idf/bt/libbt.a(hli_api.c.obj) + 0x00000000400d72e4 hli_queue_create + .text.hli_queue_setup + 0x00000000400d7314 0x43 esp-idf/bt/libbt.a(hli_api.c.obj) + 0x4f (size before relaxing) + 0x00000000400d7314 hli_queue_setup + *fill* 0x00000000400d7357 0x1 + .text.hli_customer_queue_create + 0x00000000400d7358 0x1c esp-idf/bt/libbt.a(hli_api.c.obj) + 0x20 (size before relaxing) + 0x00000000400d7358 hli_customer_queue_create + .text.hli_semaphore_create + 0x00000000400d7374 0x1c esp-idf/bt/libbt.a(hli_api.c.obj) + 0x20 (size before relaxing) + 0x00000000400d7374 hli_semaphore_create + .text.hli_queue_delete + 0x00000000400d7390 0xa esp-idf/bt/libbt.a(hli_api.c.obj) + 0xe (size before relaxing) + 0x00000000400d7390 hli_queue_delete + *fill* 0x00000000400d739a 0x2 + .text.example_get_sec2_salt + 0x00000000400d739c 0x26 esp-idf/main/libmain.a(app_main.c.obj) + 0x2a (size before relaxing) + *fill* 0x00000000400d73c2 0x2 + .text.example_get_sec2_verifier + 0x00000000400d73c4 0x27 esp-idf/main/libmain.a(app_main.c.obj) + 0x2b (size before relaxing) + *fill* 0x00000000400d73eb 0x1 + .text.custom_prov_data_handler + 0x00000000400d73ec 0x61 esp-idf/main/libmain.a(app_main.c.obj) + 0x71 (size before relaxing) + 0x00000000400d73ec custom_prov_data_handler + *fill* 0x00000000400d744d 0x3 + .text.event_handler + 0x00000000400d7450 0x1de esp-idf/main/libmain.a(app_main.c.obj) + 0x22a (size before relaxing) + *fill* 0x00000000400d762e 0x2 + .text.get_device_service_name + 0x00000000400d7630 0x2b esp-idf/main/libmain.a(app_main.c.obj) + *fill* 0x00000000400d765b 0x1 + .text.wifi_prov_print_qr + 0x00000000400d765c 0xbe esp-idf/main/libmain.a(app_main.c.obj) + 0xd6 (size before relaxing) + *fill* 0x00000000400d771a 0x2 + .text.wifi_init_sta + 0x00000000400d771c 0x30 esp-idf/main/libmain.a(app_main.c.obj) + 0x3c (size before relaxing) + .text.app_main + 0x00000000400d774c 0x338 esp-idf/main/libmain.a(app_main.c.obj) + 0x3c0 (size before relaxing) + 0x00000000400d774c app_main + .text.debug_print_wifi_credentials + 0x00000000400d7a84 0x33 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + *fill* 0x00000000400d7ab7 0x1 + .text.execute_event_cb + 0x00000000400d7ab8 0x97 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0xa7 (size before relaxing) + *fill* 0x00000000400d7b4f 0x1 + .text.wifi_connect_timer_cb + 0x00000000400d7b50 0x1e esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x26 (size before relaxing) + *fill* 0x00000000400d7b6e 0x2 + .text.update_wifi_scan_results + 0x00000000400d7b70 0x1fe esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x22a (size before relaxing) + *fill* 0x00000000400d7d6e 0x2 + .text.prov_stop_and_notify + 0x00000000400d7d70 0xfe esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x12a (size before relaxing) + *fill* 0x00000000400d7e6e 0x2 + .text.wifi_prov_mgr_stop_service + 0x00000000400d7e70 0x218 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x250 (size before relaxing) + .text.wifi_prov_mgr_event_handler_internal + 0x00000000400d8088 0x230 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x274 (size before relaxing) + .text.cleanup_delay_timer_cb + 0x00000000400d82b8 0x38 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x40 (size before relaxing) + .text.wifi_prov_get_info_json + 0x00000000400d82f0 0xa6 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0xc6 (size before relaxing) + *fill* 0x00000000400d8396 0x2 + .text.wifi_prov_mgr_start_service + 0x00000000400d8398 0x45e esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x53e (size before relaxing) + *fill* 0x00000000400d87f6 0x2 + .text.wifi_prov_mgr_endpoint_create + 0x00000000400d87f8 0xaf esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0xc7 (size before relaxing) + 0x00000000400d87f8 wifi_prov_mgr_endpoint_create + *fill* 0x00000000400d88a7 0x1 + .text.wifi_prov_mgr_endpoint_register + 0x00000000400d88a8 0xa2 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0xba (size before relaxing) + 0x00000000400d88a8 wifi_prov_mgr_endpoint_register + *fill* 0x00000000400d894a 0x2 + .text.wifi_prov_mgr_wifi_scan_start + 0x00000000400d894c 0x1f0 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x228 (size before relaxing) + 0x00000000400d894c wifi_prov_mgr_wifi_scan_start + .text.wifi_prov_mgr_wifi_scan_finished + 0x00000000400d8b3c 0xaa esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0xc2 (size before relaxing) + 0x00000000400d8b3c wifi_prov_mgr_wifi_scan_finished + *fill* 0x00000000400d8be6 0x2 + .text.wifi_prov_mgr_wifi_scan_result_count + 0x00000000400d8be8 0xbe esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0xd2 (size before relaxing) + 0x00000000400d8be8 wifi_prov_mgr_wifi_scan_result_count + *fill* 0x00000000400d8ca6 0x2 + .text.wifi_prov_mgr_wifi_scan_result + 0x00000000400d8ca8 0xb0 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0xcc (size before relaxing) + 0x00000000400d8ca8 wifi_prov_mgr_wifi_scan_result + .text.wifi_prov_mgr_get_wifi_state + 0x00000000400d8d58 0x92 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0xaa (size before relaxing) + 0x00000000400d8d58 wifi_prov_mgr_get_wifi_state + *fill* 0x00000000400d8dea 0x2 + .text.wifi_prov_mgr_get_wifi_disconnect_reason + 0x00000000400d8dec 0xc0 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0xdc (size before relaxing) + 0x00000000400d8dec wifi_prov_mgr_get_wifi_disconnect_reason + .text.wifi_prov_mgr_is_provisioned + 0x00000000400d8eac 0x4e esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x52 (size before relaxing) + 0x00000000400d8eac wifi_prov_mgr_is_provisioned + *fill* 0x00000000400d8efa 0x2 + .text.wifi_prov_mgr_configure_sta + 0x00000000400d8efc 0x22a esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x2ae (size before relaxing) + 0x00000000400d8efc wifi_prov_mgr_configure_sta + *fill* 0x00000000400d9126 0x2 + .text.wifi_prov_mgr_init + 0x00000000400d9128 0x27e esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x2ee (size before relaxing) + 0x00000000400d9128 wifi_prov_mgr_init + *fill* 0x00000000400d93a6 0x2 + .text.wifi_prov_mgr_deinit + 0x00000000400d93a8 0x15e esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x18a (size before relaxing) + 0x00000000400d93a8 wifi_prov_mgr_deinit + *fill* 0x00000000400d9506 0x2 + .text.wifi_prov_mgr_start_provisioning + 0x00000000400d9508 0x3b8 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x454 (size before relaxing) + 0x00000000400d9508 wifi_prov_mgr_start_provisioning + .text.wifi_prov_mgr_stop_provisioning + 0x00000000400d98c0 0x63 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x77 (size before relaxing) + 0x00000000400d98c0 wifi_prov_mgr_stop_provisioning + *fill* 0x00000000400d9923 0x1 + .text.wifi_prov_mgr_done + 0x00000000400d9924 0x86 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x96 (size before relaxing) + 0x00000000400d9924 wifi_prov_mgr_done + *fill* 0x00000000400d99aa 0x2 + .text.stop_prov_timer_cb + 0x00000000400d99ac 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0xb (size before relaxing) + *fill* 0x00000000400d99b4 0x0 + .text.wifi_prov_mgr_reset_sm_state_on_failure + 0x00000000400d99b4 0xc3 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0xe7 (size before relaxing) + 0x00000000400d99b4 wifi_prov_mgr_reset_sm_state_on_failure + *fill* 0x00000000400d9a77 0x1 + .text.wifi_prov_mgr_reset_sm_state_for_reprovision + 0x00000000400d9a78 0x117 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x14b (size before relaxing) + 0x00000000400d9a78 wifi_prov_mgr_reset_sm_state_for_reprovision + *fill* 0x00000000400d9b8f 0x1 + .text.free_config + 0x00000000400d9b90 0xe esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + 0x12 (size before relaxing) + *fill* 0x00000000400d9b9e 0x2 + .text.apply_config_handler + 0x00000000400d9ba0 0x4e esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + 0x5e (size before relaxing) + *fill* 0x00000000400d9bee 0x2 + .text.new_config + 0x00000000400d9bf0 0x1e esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + 0x26 (size before relaxing) + *fill* 0x00000000400d9c0e 0x2 + .text.set_config_handler + 0x00000000400d9c10 0x71 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + 0x7d (size before relaxing) + *fill* 0x00000000400d9c81 0x3 + .text.get_status_handler + 0x00000000400d9c84 0x89 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + 0xa8 (size before relaxing) + *fill* 0x00000000400d9d0d 0x3 + .text.scan_result + 0x00000000400d9d10 0x45 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + *fill* 0x00000000400d9d55 0x3 + .text.scan_status + 0x00000000400d9d58 0x15 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + 0x19 (size before relaxing) + *fill* 0x00000000400d9d6d 0x3 + .text.scan_start + 0x00000000400d9d70 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + .text.ctrl_reprov + 0x00000000400d9d88 0xa esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + 0xd (size before relaxing) + *fill* 0x00000000400d9d92 0x2 + .text.ctrl_reset + 0x00000000400d9d94 0xa esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + 0xd (size before relaxing) + *fill* 0x00000000400d9d9e 0x2 + .text.get_wifi_prov_handlers + 0x00000000400d9da0 0x22 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + 0x00000000400d9da0 get_wifi_prov_handlers + *fill* 0x00000000400d9dc2 0x2 + .text.get_wifi_scan_handlers + 0x00000000400d9dc4 0x22 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + 0x00000000400d9dc4 get_wifi_scan_handlers + *fill* 0x00000000400d9de6 0x2 + .text.get_wifi_ctrl_handlers + 0x00000000400d9de8 0x19 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + 0x00000000400d9de8 get_wifi_ctrl_handlers + *fill* 0x00000000400d9e01 0x3 + .text.set_config_endpoint + 0x00000000400d9e04 0xa5 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + 0xbd (size before relaxing) + *fill* 0x00000000400d9ea9 0x3 + .text.set_config_service + 0x00000000400d9eac 0x9c esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + 0xac (size before relaxing) + .text.delete_config + 0x00000000400d9f48 0x43 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + 0x4b (size before relaxing) + *fill* 0x00000000400d9f8b 0x1 + .text.new_config + 0x00000000400d9f8c 0x46 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + 0x52 (size before relaxing) + *fill* 0x00000000400d9fd2 0x2 + .text.prov_start + 0x00000000400d9fd4 0x6a esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + 0x7e (size before relaxing) + *fill* 0x00000000400da03e 0x2 + .text.wifi_prov_scheme_ble_set_service_uuid + 0x00000000400da040 0x15 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + 0x00000000400da040 wifi_prov_scheme_ble_set_service_uuid + *fill* 0x00000000400da055 0x3 + .text.wifi_prov_scheme_ble_event_cb_free_btdm + 0x00000000400da058 0x82 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + 0x9a (size before relaxing) + 0x00000000400da058 wifi_prov_scheme_ble_event_cb_free_btdm + *fill* 0x00000000400da0da 0x2 + .text.lookup_cmd_handler + 0x00000000400da0dc 0x21 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + *fill* 0x00000000400da0fd 0x3 + .text.wifi_prov_config_command_dispatcher + 0x00000000400da100 0x52 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + 0x5e (size before relaxing) + *fill* 0x00000000400da152 0x2 + .text.cmd_apply_config_handler + 0x00000000400da154 0x68 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + 0x78 (size before relaxing) + .text.cmd_set_config_handler + 0x00000000400da1bc 0xcb esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + 0xdf (size before relaxing) + *fill* 0x00000000400da287 0x1 + .text.wifi_prov_config_command_cleanup + 0x00000000400da288 0x7a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + 0x8a (size before relaxing) + *fill* 0x00000000400da302 0x2 + .text.cmd_get_status_handler + 0x00000000400da304 0x144 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + 0x174 (size before relaxing) + .text.wifi_prov_config_data_handler + 0x00000000400da448 0xb8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + 0xe8 (size before relaxing) + 0x00000000400da448 wifi_prov_config_data_handler + .text.lookup_cmd_handler + 0x00000000400da500 0x21 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + *fill* 0x00000000400da521 0x3 + .text.wifi_prov_scan_cmd_dispatcher + 0x00000000400da524 0x52 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + 0x5e (size before relaxing) + *fill* 0x00000000400da576 0x2 + .text.cmd_scan_result_handler + 0x00000000400da578 0x182 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + 0x1b6 (size before relaxing) + *fill* 0x00000000400da6fa 0x2 + .text.cmd_scan_status_handler + 0x00000000400da6fc 0x80 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + 0x8c (size before relaxing) + .text.cmd_scan_start_handler + 0x00000000400da77c 0x7e esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + 0x8e (size before relaxing) + *fill* 0x00000000400da7fa 0x2 + .text.wifi_prov_scan_cmd_cleanup + 0x00000000400da7fc 0x8e esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + 0xa6 (size before relaxing) + *fill* 0x00000000400da88a 0x2 + .text.wifi_prov_scan_handler + 0x00000000400da88c 0xba esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + 0xea (size before relaxing) + 0x00000000400da88c wifi_prov_scan_handler + *fill* 0x00000000400da946 0x2 + .text.lookup_cmd_handler + 0x00000000400da948 0x21 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + *fill* 0x00000000400da969 0x3 + .text.wifi_ctrl_cmd_dispatcher + 0x00000000400da96c 0x54 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + 0x60 (size before relaxing) + .text.cmd_ctrl_reprov_handler + 0x00000000400da9c0 0x66 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + 0x76 (size before relaxing) + *fill* 0x00000000400daa26 0x2 + .text.cmd_ctrl_reset_handler + 0x00000000400daa28 0x62 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + 0x72 (size before relaxing) + *fill* 0x00000000400daa8a 0x2 + .text.wifi_ctrl_cmd_cleanup + 0x00000000400daa8c 0x38 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + 0x40 (size before relaxing) + .text.wifi_ctrl_handler + 0x00000000400daac4 0xba esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + 0xea (size before relaxing) + 0x00000000400daac4 wifi_ctrl_handler + *fill* 0x00000000400dab7e 0x2 + .text.cmd_get_status__init + 0x00000000400dab80 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x00000000400dab80 cmd_get_status__init + .text.resp_get_status__init + 0x00000000400dab90 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x00000000400dab90 resp_get_status__init + .text.cmd_set_config__init + 0x00000000400daba8 0x1e esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x00000000400daba8 cmd_set_config__init + *fill* 0x00000000400dabc6 0x2 + .text.resp_set_config__init + 0x00000000400dabc8 0x12 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x00000000400dabc8 resp_set_config__init + *fill* 0x00000000400dabda 0x2 + .text.cmd_apply_config__init + 0x00000000400dabdc 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x00000000400dabdc cmd_apply_config__init + .text.resp_apply_config__init + 0x00000000400dabec 0x12 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x00000000400dabec resp_apply_config__init + *fill* 0x00000000400dabfe 0x2 + .text.wi_fi_config_payload__init + 0x00000000400dac00 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x00000000400dac00 wi_fi_config_payload__init + *fill* 0x00000000400dac16 0x2 + .text.wi_fi_config_payload__get_packed_size + 0x00000000400dac18 0x25 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x29 (size before relaxing) + 0x00000000400dac18 wi_fi_config_payload__get_packed_size + *fill* 0x00000000400dac3d 0x3 + .text.wi_fi_config_payload__pack + 0x00000000400dac40 0x28 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x2c (size before relaxing) + 0x00000000400dac40 wi_fi_config_payload__pack + .text.wi_fi_config_payload__unpack + 0x00000000400dac68 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x00000000400dac68 wi_fi_config_payload__unpack + *fill* 0x00000000400dac7e 0x2 + .text.wi_fi_config_payload__free_unpacked + 0x00000000400dac80 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x00000000400dac80 wi_fi_config_payload__free_unpacked + .text.cmd_scan_start__init + 0x00000000400dacac 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x00000000400dacac cmd_scan_start__init + .text.resp_scan_start__init + 0x00000000400dacc4 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x00000000400dacc4 resp_scan_start__init + .text.cmd_scan_status__init + 0x00000000400dacd4 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x00000000400dacd4 cmd_scan_status__init + .text.resp_scan_status__init + 0x00000000400dace4 0x14 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x00000000400dace4 resp_scan_status__init + .text.cmd_scan_result__init + 0x00000000400dacf8 0x14 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x00000000400dacf8 cmd_scan_result__init + .text.wi_fi_scan_result__init + 0x00000000400dad0c 0x1e esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x00000000400dad0c wi_fi_scan_result__init + *fill* 0x00000000400dad2a 0x2 + .text.resp_scan_result__init + 0x00000000400dad2c 0x14 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x00000000400dad2c resp_scan_result__init + .text.wi_fi_scan_payload__init + 0x00000000400dad40 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x00000000400dad40 wi_fi_scan_payload__init + .text.wi_fi_scan_payload__get_packed_size + 0x00000000400dad58 0x25 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x29 (size before relaxing) + 0x00000000400dad58 wi_fi_scan_payload__get_packed_size + *fill* 0x00000000400dad7d 0x3 + .text.wi_fi_scan_payload__pack + 0x00000000400dad80 0x28 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x2c (size before relaxing) + 0x00000000400dad80 wi_fi_scan_payload__pack + .text.wi_fi_scan_payload__unpack + 0x00000000400dada8 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x00000000400dada8 wi_fi_scan_payload__unpack + *fill* 0x00000000400dadbe 0x2 + .text.wi_fi_scan_payload__free_unpacked + 0x00000000400dadc0 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x00000000400dadc0 wi_fi_scan_payload__free_unpacked + .text.cmd_ctrl_reset__init + 0x00000000400dadec 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + 0x00000000400dadec cmd_ctrl_reset__init + .text.resp_ctrl_reset__init + 0x00000000400dadfc 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + 0x00000000400dadfc resp_ctrl_reset__init + .text.cmd_ctrl_reprov__init + 0x00000000400dae0c 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + 0x00000000400dae0c cmd_ctrl_reprov__init + .text.resp_ctrl_reprov__init + 0x00000000400dae1c 0x10 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + 0x00000000400dae1c resp_ctrl_reprov__init + .text.wi_fi_ctrl_payload__init + 0x00000000400dae2c 0x18 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + 0x00000000400dae2c wi_fi_ctrl_payload__init + .text.wi_fi_ctrl_payload__get_packed_size + 0x00000000400dae44 0x25 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + 0x29 (size before relaxing) + 0x00000000400dae44 wi_fi_ctrl_payload__get_packed_size + *fill* 0x00000000400dae69 0x3 + .text.wi_fi_ctrl_payload__pack + 0x00000000400dae6c 0x28 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + 0x2c (size before relaxing) + 0x00000000400dae6c wi_fi_ctrl_payload__pack + .text.wi_fi_ctrl_payload__unpack + 0x00000000400dae94 0x16 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + 0x00000000400dae94 wi_fi_ctrl_payload__unpack + *fill* 0x00000000400daeaa 0x2 + .text.wi_fi_ctrl_payload__free_unpacked + 0x00000000400daeac 0x2c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + 0x00000000400daeac wi_fi_ctrl_payload__free_unpacked + .text.wifi_connected_state__init + 0x00000000400daed8 0x12 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + 0x00000000400daed8 wifi_connected_state__init + *fill* 0x00000000400daeea 0x2 + .text.search_endpoint + 0x00000000400daeec 0x1b esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + *fill* 0x00000000400daf07 0x1 + .text.protocomm_add_endpoint_internal + 0x00000000400daf08 0xab esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + 0xc3 (size before relaxing) + *fill* 0x00000000400dafb3 0x1 + .text.protocomm_version_handler + 0x00000000400dafb4 0x48 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + 0x50 (size before relaxing) + .text.protocomm_new + 0x00000000400daffc 0x2a esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + 0x36 (size before relaxing) + 0x00000000400daffc protocomm_new + *fill* 0x00000000400db026 0x2 + .text.protocomm_delete + 0x00000000400db028 0x38 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + 0x42 (size before relaxing) + 0x00000000400db028 protocomm_delete + *fill* 0x00000000400db060 0x0 + .text.protocomm_add_endpoint + 0x00000000400db060 0x14 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + 0x18 (size before relaxing) + 0x00000000400db060 protocomm_add_endpoint + .text.protocomm_remove_endpoint + 0x00000000400db074 0x6d esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + 0x00000000400db074 protocomm_remove_endpoint + *fill* 0x00000000400db0e1 0x3 + .text.protocomm_req_handle + 0x00000000400db0e4 0x1be esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + 0x1ee (size before relaxing) + 0x00000000400db0e4 protocomm_req_handle + *fill* 0x00000000400db2a2 0x2 + .text.protocomm_set_security + 0x00000000400db2a4 0x144 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + 0x174 (size before relaxing) + 0x00000000400db2a4 protocomm_set_security + .text.protocomm_set_version + 0x00000000400db3e8 0x82 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + 0x96 (size before relaxing) + 0x00000000400db3e8 protocomm_set_version + *fill* 0x00000000400db46a 0x2 + .text.sec0_session_setup_cleanup + 0x00000000400db46c 0x16 esp-idf/protocomm/libprotocomm.a(security0.c.obj) + 0x1a (size before relaxing) + *fill* 0x00000000400db482 0x2 + .text.sec0_session_setup + 0x00000000400db484 0x6a esp-idf/protocomm/libprotocomm.a(security0.c.obj) + 0x7e (size before relaxing) + *fill* 0x00000000400db4ee 0x2 + .text.sec0_req_handler + 0x00000000400db4f0 0xcc esp-idf/protocomm/libprotocomm.a(security0.c.obj) + 0x100 (size before relaxing) + .text.sec1_decrypt + 0x00000000400db5bc 0xaa esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0xc6 (size before relaxing) + *fill* 0x00000000400db666 0x2 + .text.sec1_session_setup_cleanup + 0x00000000400db668 0x32 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0x3e (size before relaxing) + *fill* 0x00000000400db69a 0x2 + .text.sec1_close_session + 0x00000000400db69c 0x51 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0x55 (size before relaxing) + *fill* 0x00000000400db6ed 0x3 + .text.sec1_new_session + 0x00000000400db6f0 0x32 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0x3a (size before relaxing) + *fill* 0x00000000400db722 0x2 + .text.handle_session_command0 + 0x00000000400db724 0x3bc esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0x470 (size before relaxing) + .text.sec1_cleanup + 0x00000000400dbae0 0x18 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0x1c (size before relaxing) + .text.handle_session_command1 + 0x00000000400dbaf8 0x236 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0x2b2 (size before relaxing) + *fill* 0x00000000400dbd2e 0x2 + .text.sec1_session_setup + 0x00000000400dbd30 0x6d esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0x79 (size before relaxing) + *fill* 0x00000000400dbd9d 0x3 + .text.sec1_req_handler + 0x00000000400dbda0 0x11e esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0x15e (size before relaxing) + *fill* 0x00000000400dbebe 0x2 + .text.sec1_init + 0x00000000400dbec0 0x3a esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0x42 (size before relaxing) + *fill* 0x00000000400dbefa 0x2 + .text.sec2_decrypt + 0x00000000400dbefc 0xb6 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0xd2 (size before relaxing) + *fill* 0x00000000400dbfb2 0x2 + .text.sec2_encrypt + 0x00000000400dbfb4 0xc9 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0xe5 (size before relaxing) + *fill* 0x00000000400dc07d 0x3 + .text.sec2_init + 0x00000000400dc080 0x3a esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x42 (size before relaxing) + *fill* 0x00000000400dc0ba 0x2 + .text.sec2_session_setup_cleanup + 0x00000000400dc0bc 0x32 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x3e (size before relaxing) + *fill* 0x00000000400dc0ee 0x2 + .text.handle_session_command1 + 0x00000000400dc0f0 0x1c6 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x22a (size before relaxing) + *fill* 0x00000000400dc2b6 0x2 + .text.sec2_close_session + 0x00000000400dc2b8 0x65 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x75 (size before relaxing) + *fill* 0x00000000400dc31d 0x3 + .text.sec2_new_session + 0x00000000400dc320 0x32 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x3a (size before relaxing) + *fill* 0x00000000400dc352 0x2 + .text.handle_session_command0 + 0x00000000400dc354 0x2c1 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x351 (size before relaxing) + *fill* 0x00000000400dc615 0x3 + .text.sec2_session_setup + 0x00000000400dc618 0x6e esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x76 (size before relaxing) + *fill* 0x00000000400dc686 0x2 + .text.sec2_req_handler + 0x00000000400dc688 0x122 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x162 (size before relaxing) + *fill* 0x00000000400dc7aa 0x2 + .text.sec2_cleanup + 0x00000000400dc7ac 0x18 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x1c (size before relaxing) + .text.hexdump_mpi + 0x00000000400dc7c4 0x17 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x1b (size before relaxing) + *fill* 0x00000000400dc7db 0x1 + .text.calculate_padded_hash + 0x00000000400dc7dc 0xa2 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0xc2 (size before relaxing) + *fill* 0x00000000400dc87e 0x2 + .text.calculate_k + 0x00000000400dc880 0x14 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x18 (size before relaxing) + .text.calculate_u + 0x00000000400dc894 0x14 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x18 (size before relaxing) + .text.esp_srp_free + 0x00000000400dc8a8 0x97 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x9a (size before relaxing) + 0x00000000400dc8a8 esp_srp_free + *fill* 0x00000000400dc93f 0x1 + .text.esp_srp_init + 0x00000000400dc940 0x64 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x70 (size before relaxing) + 0x00000000400dc940 esp_srp_init + .text.__esp_srp_srv_pubkey + 0x00000000400dc9a4 0xf2 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x122 (size before relaxing) + 0x00000000400dc9a4 __esp_srp_srv_pubkey + *fill* 0x00000000400dca96 0x2 + .text.esp_srp_srv_pubkey_from_salt_verifier + 0x00000000400dca98 0x10 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x14 (size before relaxing) + 0x00000000400dca98 esp_srp_srv_pubkey_from_salt_verifier + .text.esp_srp_set_salt_verifier + 0x00000000400dcaa8 0x6a esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x72 (size before relaxing) + 0x00000000400dcaa8 esp_srp_set_salt_verifier + *fill* 0x00000000400dcb12 0x2 + .text.esp_srp_get_session_key + 0x00000000400dcb14 0x17e esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x1c6 (size before relaxing) + 0x00000000400dcb14 esp_srp_get_session_key + *fill* 0x00000000400dcc92 0x2 + .text.esp_srp_exchange_proofs + 0x00000000400dcc94 0x158 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x1b4 (size before relaxing) + 0x00000000400dcc94 esp_srp_exchange_proofs + .text.esp_get_random + 0x00000000400dcdec 0x11 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x00000000400dcdec esp_get_random + *fill* 0x00000000400dcdfd 0x3 + .text.esp_mpi_new + 0x00000000400dce00 0x14 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x18 (size before relaxing) + 0x00000000400dce00 esp_mpi_new + .text.esp_mpi_free + 0x00000000400dce14 0x13 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x17 (size before relaxing) + 0x00000000400dce14 esp_mpi_free + *fill* 0x00000000400dce27 0x1 + .text.esp_mpi_new_from_bin + 0x00000000400dce28 0x2a esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x36 (size before relaxing) + 0x00000000400dce28 esp_mpi_new_from_bin + *fill* 0x00000000400dce52 0x2 + .text.esp_mpi_ctx_new + 0x00000000400dce54 0xa esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0xd (size before relaxing) + 0x00000000400dce54 esp_mpi_ctx_new + *fill* 0x00000000400dce5e 0x2 + .text.esp_mpi_ctx_free + 0x00000000400dce60 0xa esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0xe (size before relaxing) + 0x00000000400dce60 esp_mpi_ctx_free + *fill* 0x00000000400dce6a 0x2 + .text.esp_mpi_sizeof + 0x00000000400dce6c 0xc esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x10 (size before relaxing) + 0x00000000400dce6c esp_mpi_sizeof + .text.esp_mpi_to_bin + 0x00000000400dce78 0x32 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x3e (size before relaxing) + 0x00000000400dce78 esp_mpi_to_bin + *fill* 0x00000000400dceaa 0x2 + .text.esp_mpi_get_rand + 0x00000000400dceac 0x1c esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x00000000400dceac esp_mpi_get_rand + .text.esp_mpi_a_exp_b_mod_c + 0x00000000400dcec8 0x14 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x18 (size before relaxing) + 0x00000000400dcec8 esp_mpi_a_exp_b_mod_c + .text.esp_mpi_a_mul_b_mod_c + 0x00000000400dcedc 0x53 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x56 (size before relaxing) + 0x00000000400dcedc esp_mpi_a_mul_b_mod_c + *fill* 0x00000000400dcf2f 0x1 + .text.esp_mpi_a_add_b_mod_c + 0x00000000400dcf30 0x53 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x56 (size before relaxing) + 0x00000000400dcf30 esp_mpi_a_add_b_mod_c + *fill* 0x00000000400dcf83 0x1 + .text.find_attr_with_handle + 0x00000000400dcf84 0x1c esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .text.uuid128_to_handler + 0x00000000400dcfa0 0x2c esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .text.transport_simple_ble_set_mtu + 0x00000000400dcfcc 0x10 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .text.gatt_svr_register_cb + 0x00000000400dcfdc 0x1c esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x1f (size before relaxing) + 0x00000000400dcfdc gatt_svr_register_cb + *fill* 0x00000000400dcff8 0x0 + .text.simple_ble_gatts_get_attr_value + 0x00000000400dcff8 0x32 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x3a (size before relaxing) + *fill* 0x00000000400dd02a 0x2 + .text.simple_ble_on_reset + 0x00000000400dd02c 0x1b esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x1f (size before relaxing) + *fill* 0x00000000400dd047 0x1 + .text.nimble_host_task + 0x00000000400dd048 0x1e esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x2a (size before relaxing) + 0x00000000400dd048 nimble_host_task + *fill* 0x00000000400dd066 0x2 + .text.ble_gatt_add_primary_svcs + 0x00000000400dd068 0x36 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x42 (size before relaxing) + *fill* 0x00000000400dd09e 0x2 + .text.ble_gatt_add_characteristics + 0x00000000400dd0a0 0x88 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x94 (size before relaxing) + .text.ble_gatt_add_char_dsc + 0x00000000400dd128 0x9a esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0xb2 (size before relaxing) + *fill* 0x00000000400dd1c2 0x2 + .text.populate_gatt_db + 0x00000000400dd1c4 0x104 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x134 (size before relaxing) + .text.transport_simple_ble_disconnect + 0x00000000400dd2c8 0x68 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x74 (size before relaxing) + .text.transport_simple_ble_connect + 0x00000000400dd330 0x5e esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x6a (size before relaxing) + *fill* 0x00000000400dd38e 0x2 + .text.simple_ble_gatts_set_attr_value + 0x00000000400dd390 0x53 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x5f (size before relaxing) + *fill* 0x00000000400dd3e3 0x1 + .text.free_gatt_ble_misc_memory + 0x00000000400dd3e4 0xbe esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0xd2 (size before relaxing) + *fill* 0x00000000400dd4a2 0x2 + .text.protocomm_ble_cleanup + 0x00000000400dd4a4 0x6f esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x73 (size before relaxing) + *fill* 0x00000000400dd513 0x1 + .text.gatt_svr_chr_access + 0x00000000400dd514 0x192 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x1e2 (size before relaxing) + *fill* 0x00000000400dd6a6 0x2 + .text.gatt_svr_dsc_access + 0x00000000400dd6a8 0x3d esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x45 (size before relaxing) + *fill* 0x00000000400dd6e5 0x3 + .text.simple_ble_advertise + 0x00000000400dd6e8 0xa7 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0xbf (size before relaxing) + *fill* 0x00000000400dd78f 0x1 + .text.simple_ble_on_sync + 0x00000000400dd790 0x4d esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x64 (size before relaxing) + *fill* 0x00000000400dd7dd 0x3 + .text.simple_ble_gap_event + 0x00000000400dd7e0 0xe6 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x10a (size before relaxing) + *fill* 0x00000000400dd8c6 0x2 + .text.gatt_svr_init + 0x00000000400dd8c8 0x16 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x1c (size before relaxing) + 0x00000000400dd8c8 gatt_svr_init + *fill* 0x00000000400dd8de 0x2 + .text.simple_ble_start + 0x00000000400dd8e0 0x108 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x12c (size before relaxing) + .text.protocomm_ble_start + 0x00000000400dd9e8 0x2d6 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x34e (size before relaxing) + 0x00000000400dd9e8 protocomm_ble_start + *fill* 0x00000000400ddcbe 0x2 + .text.protocomm_ble_stop + 0x00000000400ddcc0 0x45 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x51 (size before relaxing) + 0x00000000400ddcc0 protocomm_ble_stop + *fill* 0x00000000400ddd05 0x3 + .text.s0_session_cmd__init + 0x00000000400ddd08 0x10 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + 0x00000000400ddd08 s0_session_cmd__init + .text.s0_session_resp__init + 0x00000000400ddd18 0x12 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + 0x00000000400ddd18 s0_session_resp__init + *fill* 0x00000000400ddd2a 0x2 + .text.sec0_payload__init + 0x00000000400ddd2c 0x16 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + 0x00000000400ddd2c sec0_payload__init + *fill* 0x00000000400ddd42 0x2 + .text.session_cmd1__init + 0x00000000400ddd44 0x14 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + 0x00000000400ddd44 session_cmd1__init + .text.session_resp1__init + 0x00000000400ddd58 0x16 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + 0x00000000400ddd58 session_resp1__init + *fill* 0x00000000400ddd6e 0x2 + .text.session_cmd0__init + 0x00000000400ddd70 0x14 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + 0x00000000400ddd70 session_cmd0__init + .text.session_resp0__init + 0x00000000400ddd84 0x1a esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + 0x00000000400ddd84 session_resp0__init + *fill* 0x00000000400ddd9e 0x2 + .text.sec1_payload__init + 0x00000000400ddda0 0x16 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + 0x00000000400ddda0 sec1_payload__init + *fill* 0x00000000400dddb6 0x2 + .text.s2_session_cmd0__init + 0x00000000400dddb8 0x18 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + 0x00000000400dddb8 s2_session_cmd0__init + .text.s2_session_resp0__init + 0x00000000400dddd0 0x1a esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + 0x00000000400dddd0 s2_session_resp0__init + *fill* 0x00000000400dddea 0x2 + .text.s2_session_cmd1__init + 0x00000000400dddec 0x14 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + 0x00000000400dddec s2_session_cmd1__init + .text.s2_session_resp1__init + 0x00000000400dde00 0x1a esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + 0x00000000400dde00 s2_session_resp1__init + *fill* 0x00000000400dde1a 0x2 + .text.sec2_payload__init + 0x00000000400dde1c 0x16 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + 0x00000000400dde1c sec2_payload__init + *fill* 0x00000000400dde32 0x2 + .text.session_data__init + 0x00000000400dde34 0x16 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + 0x00000000400dde34 session_data__init + *fill* 0x00000000400dde4a 0x2 + .text.session_data__get_packed_size + 0x00000000400dde4c 0x24 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + 0x28 (size before relaxing) + 0x00000000400dde4c session_data__get_packed_size + .text.session_data__pack + 0x00000000400dde70 0x26 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + 0x2a (size before relaxing) + 0x00000000400dde70 session_data__pack + *fill* 0x00000000400dde96 0x2 + .text.session_data__unpack + 0x00000000400dde98 0x16 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + 0x00000000400dde98 session_data__unpack + *fill* 0x00000000400ddeae 0x2 + .text.session_data__free_unpacked + 0x00000000400ddeb0 0x27 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + 0x2a (size before relaxing) + 0x00000000400ddeb0 session_data__free_unpacked + *fill* 0x00000000400dded7 0x1 + .text.async_wakeup_request_end + 0x00000000400dded8 0xc esp-idf/bt/libbt.a(bt.c.obj) + 0xf (size before relaxing) + *fill* 0x00000000400ddee4 0x0 + .text.coex_bt_wakeup_request_end + 0x00000000400ddee4 0xa esp-idf/bt/libbt.a(bt.c.obj) + 0xe (size before relaxing) + *fill* 0x00000000400ddeee 0x2 + .text.semphr_give_wrapper + 0x00000000400ddef0 0x14 esp-idf/bt/libbt.a(bt.c.obj) + 0x18 (size before relaxing) + .text.btdm_wakeup_request_callback + 0x00000000400ddf04 0x12 esp-idf/bt/libbt.a(bt.c.obj) + 0x16 (size before relaxing) + *fill* 0x00000000400ddf16 0x2 + .text.queue_send_hlevel_wrapper + 0x00000000400ddf18 0x30 esp-idf/bt/libbt.a(bt.c.obj) + 0x34 (size before relaxing) + .text.mutex_unlock_wrapper + 0x00000000400ddf48 0x15 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x00000000400ddf5d 0x3 + .text.semphr_take_wrapper + 0x00000000400ddf60 0x3d esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x00000000400ddf9d 0x3 + .text.async_wakeup_request + 0x00000000400ddfa0 0x4e esp-idf/bt/libbt.a(bt.c.obj) + 0x5e (size before relaxing) + *fill* 0x00000000400ddfee 0x2 + .text.coex_bt_wakeup_request + 0x00000000400ddff0 0xc esp-idf/bt/libbt.a(bt.c.obj) + 0x10 (size before relaxing) + .text.mutex_lock_wrapper + 0x00000000400ddffc 0x11 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x00000000400de00d 0x3 + .text.try_heap_caps_add_region + 0x00000000400de010 0x19 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x00000000400de029 0x3 + .text.coex_version_get_wrapper + 0x00000000400de02c 0x45 esp-idf/bt/libbt.a(bt.c.obj) + 0x49 (size before relaxing) + *fill* 0x00000000400de071 0x3 + .text.malloc_internal_wrapper + 0x00000000400de074 0x12 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x00000000400de086 0x2 + .text.queue_create_wrapper + 0x00000000400de088 0x42 esp-idf/bt/libbt.a(bt.c.obj) + 0x4a (size before relaxing) + *fill* 0x00000000400de0ca 0x2 + .text.customer_queue_create_hlevel_wrapper + 0x00000000400de0cc 0x56 esp-idf/bt/libbt.a(bt.c.obj) + 0x5e (size before relaxing) + *fill* 0x00000000400de122 0x2 + .text.coex_register_wifi_channel_change_callback_wrapper + 0x00000000400de124 0xc esp-idf/bt/libbt.a(bt.c.obj) + 0x10 (size before relaxing) + .text.coex_wifi_channel_get_wrapper + 0x00000000400de130 0x11 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x00000000400de141 0x3 + .text.coex_schm_curr_phase_get_wrapper + 0x00000000400de144 0xa esp-idf/bt/libbt.a(bt.c.obj) + 0xd (size before relaxing) + *fill* 0x00000000400de14e 0x2 + .text.coex_schm_curr_period_get_wrapper + 0x00000000400de150 0xa esp-idf/bt/libbt.a(bt.c.obj) + 0xd (size before relaxing) + *fill* 0x00000000400de15a 0x2 + .text.coex_schm_interval_get_wrapper + 0x00000000400de15c 0xa esp-idf/bt/libbt.a(bt.c.obj) + 0xd (size before relaxing) + *fill* 0x00000000400de166 0x2 + .text.coex_schm_status_bit_set_wrapper + 0x00000000400de168 0xf esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x00000000400de177 0x1 + .text.coex_schm_status_bit_clear_wrapper + 0x00000000400de178 0xf esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x00000000400de187 0x1 + .text.coex_schm_register_btdm_callback_wrapper + 0x00000000400de188 0x11 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x00000000400de199 0x3 + .text.coex_register_bt_cb_wrapper + 0x00000000400de19c 0xc esp-idf/bt/libbt.a(bt.c.obj) + 0x10 (size before relaxing) + .text.btdm_check_and_init_bb + 0x00000000400de1a8 0x28 esp-idf/bt/libbt.a(bt.c.obj) + 0x2f (size before relaxing) + *fill* 0x00000000400de1d0 0x0 + .text.btdm_sleep_exit_phase3_wrapper + 0x00000000400de1d0 0x29 esp-idf/bt/libbt.a(bt.c.obj) + 0x35 (size before relaxing) + *fill* 0x00000000400de1f9 0x3 + .text.btdm_sleep_enter_phase2_wrapper + 0x00000000400de1fc 0x24 esp-idf/bt/libbt.a(bt.c.obj) + 0x2e (size before relaxing) + *fill* 0x00000000400de220 0x0 + .text.task_delete_wrapper + 0x00000000400de220 0xa esp-idf/bt/libbt.a(bt.c.obj) + 0xe (size before relaxing) + *fill* 0x00000000400de22a 0x2 + .text.task_create_wrapper + 0x00000000400de22c 0x24 esp-idf/bt/libbt.a(bt.c.obj) + .text.queue_recv_hlevel_wrapper + 0x00000000400de250 0x3e esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x00000000400de28e 0x2 + .text.queue_delete_wrapper + 0x00000000400de290 0x14 esp-idf/bt/libbt.a(bt.c.obj) + 0x1a (size before relaxing) + *fill* 0x00000000400de2a4 0x0 + .text.queue_delete_hlevel_wrapper + 0x00000000400de2a4 0x1a esp-idf/bt/libbt.a(bt.c.obj) + 0x1e (size before relaxing) + *fill* 0x00000000400de2be 0x2 + .text.mutex_delete_wrapper + 0x00000000400de2c0 0xa esp-idf/bt/libbt.a(bt.c.obj) + 0xe (size before relaxing) + *fill* 0x00000000400de2ca 0x2 + .text.semphr_delete_wrapper + 0x00000000400de2cc 0x1f esp-idf/bt/libbt.a(bt.c.obj) + 0x26 (size before relaxing) + *fill* 0x00000000400de2eb 0x1 + .text.queue_create_hlevel_wrapper + 0x00000000400de2ec 0x56 esp-idf/bt/libbt.a(bt.c.obj) + 0x5e (size before relaxing) + *fill* 0x00000000400de342 0x2 + .text.mutex_create_wrapper + 0x00000000400de344 0xc esp-idf/bt/libbt.a(bt.c.obj) + 0x10 (size before relaxing) + .text.set_isr_hlevel_wrapper + 0x00000000400de350 0x1d esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x00000000400de36d 0x3 + .text.hli_queue_setup_cb + 0x00000000400de370 0x8 esp-idf/bt/libbt.a(bt.c.obj) + 0xb (size before relaxing) + *fill* 0x00000000400de378 0x0 + .text.hli_queue_setup_pinned_to_core + 0x00000000400de378 0x23 esp-idf/bt/libbt.a(bt.c.obj) + 0x27 (size before relaxing) + *fill* 0x00000000400de39b 0x1 + .text.semphr_create_wrapper + 0x00000000400de39c 0x5c esp-idf/bt/libbt.a(bt.c.obj) + 0x68 (size before relaxing) + .text.btdm_controller_mem_init + 0x00000000400de3f8 0x47 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x00000000400de43f 0x1 + .text.bt_controller_deinit_internal + 0x00000000400de440 0x4a esp-idf/bt/libbt.a(bt.c.obj) + 0x56 (size before relaxing) + *fill* 0x00000000400de48a 0x2 + .text.bt_shutdown + 0x00000000400de48c 0x1c esp-idf/bt/libbt.a(bt.c.obj) + 0x20 (size before relaxing) + .text.bt_controller_shutdown + 0x00000000400de4a8 0x8 esp-idf/bt/libbt.a(bt.c.obj) + 0xb (size before relaxing) + *fill* 0x00000000400de4b0 0x0 + .text.esp_vhci_host_check_send_available + 0x00000000400de4b0 0xa esp-idf/bt/libbt.a(bt.c.obj) + 0xd (size before relaxing) + 0x00000000400de4b0 esp_vhci_host_check_send_available + *fill* 0x00000000400de4ba 0x2 + .text.esp_vhci_host_send_packet + 0x00000000400de4bc 0x1a esp-idf/bt/libbt.a(bt.c.obj) + 0x22 (size before relaxing) + 0x00000000400de4bc esp_vhci_host_send_packet + *fill* 0x00000000400de4d6 0x2 + .text.esp_vhci_host_register_callback + 0x00000000400de4d8 0x10 esp-idf/bt/libbt.a(bt.c.obj) + 0x14 (size before relaxing) + 0x00000000400de4d8 esp_vhci_host_register_callback + .text.esp_bt_controller_mem_release + 0x00000000400de4e8 0x134 esp-idf/bt/libbt.a(bt.c.obj) + 0x14c (size before relaxing) + 0x00000000400de4e8 esp_bt_controller_mem_release + .text.esp_bt_mem_release + 0x00000000400de61c 0x91 esp-idf/bt/libbt.a(bt.c.obj) + 0xad (size before relaxing) + 0x00000000400de61c esp_bt_mem_release + *fill* 0x00000000400de6ad 0x3 + .text.esp_bt_controller_init + 0x00000000400de6b0 0x199 esp-idf/bt/libbt.a(bt.c.obj) + 0x1c9 (size before relaxing) + 0x00000000400de6b0 esp_bt_controller_init + *fill* 0x00000000400de849 0x3 + .text.esp_bt_controller_deinit + 0x00000000400de84c 0x1d esp-idf/bt/libbt.a(bt.c.obj) + 0x21 (size before relaxing) + 0x00000000400de84c esp_bt_controller_deinit + *fill* 0x00000000400de869 0x3 + .text.esp_bt_controller_enable + 0x00000000400de86c 0x72 esp-idf/bt/libbt.a(bt.c.obj) + 0x96 (size before relaxing) + 0x00000000400de86c esp_bt_controller_enable + *fill* 0x00000000400de8de 0x2 + .text.esp_bt_controller_disable + 0x00000000400de8e0 0x52 esp-idf/bt/libbt.a(bt.c.obj) + 0x66 (size before relaxing) + 0x00000000400de8e0 esp_bt_controller_disable + *fill* 0x00000000400de932 0x2 + .text.ble_hs_util_ensure_rand_addr + 0x00000000400de934 0x2d esp-idf/bt/libbt.a(addr.c.obj) + 0x34 (size before relaxing) + *fill* 0x00000000400de961 0x3 + .text.ble_hs_util_ensure_addr + 0x00000000400de964 0x34 esp-idf/bt/libbt.a(addr.c.obj) + 0x3c (size before relaxing) + 0x00000000400de964 ble_hs_util_ensure_addr + .text.ble_svc_gap_device_name + 0x00000000400de998 0x8 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + 0x00000000400de998 ble_svc_gap_device_name + .text.ble_svc_gap_device_name_set + 0x00000000400de9a0 0x32 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + 0x00000000400de9a0 ble_svc_gap_device_name_set + *fill* 0x00000000400de9d2 0x2 + .text.ble_addr_cmp + 0x00000000400de9d4 0x20 esp-idf/bt/libbt.a(ble_store_util.c.obj) + .text.ble_store_util_iter_unique_peer + 0x00000000400de9f4 0x4d esp-idf/bt/libbt.a(ble_store_util.c.obj) + *fill* 0x00000000400dea41 0x3 + .text.ble_store_util_bonded_peers + 0x00000000400dea44 0x24 esp-idf/bt/libbt.a(ble_store_util.c.obj) + 0x00000000400dea44 ble_store_util_bonded_peers + .text.ble_store_util_delete_all + 0x00000000400dea68 0x19 esp-idf/bt/libbt.a(ble_store_util.c.obj) + 0x00000000400dea68 ble_store_util_delete_all + *fill* 0x00000000400dea81 0x3 + .text.ble_store_util_delete_peer + 0x00000000400dea84 0x80 esp-idf/bt/libbt.a(ble_store_util.c.obj) + 0x94 (size before relaxing) + 0x00000000400dea84 ble_store_util_delete_peer + .text.ble_store_util_count + 0x00000000400deb04 0x18 esp-idf/bt/libbt.a(ble_store_util.c.obj) + 0x00000000400deb04 ble_store_util_count + .text.ble_store_util_status_rr + 0x00000000400deb1c 0x41 esp-idf/bt/libbt.a(ble_store_util.c.obj) + 0x00000000400deb1c ble_store_util_status_rr + *fill* 0x00000000400deb5d 0x3 + .text.ble_hs_id_set_pub + 0x00000000400deb60 0x18 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0x20 (size before relaxing) + 0x00000000400deb60 ble_hs_id_set_pub + .text.ble_hs_id_gen_rnd + 0x00000000400deb78 0x36 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0x00000000400deb78 ble_hs_id_gen_rnd + *fill* 0x00000000400debae 0x2 + .text.ble_hs_id_set_nrpa_rnd + 0x00000000400debb0 0x2a esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0x35 (size before relaxing) + 0x00000000400debb0 ble_hs_id_set_nrpa_rnd + *fill* 0x00000000400debda 0x2 + .text.ble_hs_id_set_pseudo_rnd + 0x00000000400debdc 0x6b esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0x76 (size before relaxing) + 0x00000000400debdc ble_hs_id_set_pseudo_rnd + *fill* 0x00000000400dec47 0x1 + .text.ble_hs_id_set_rnd + 0x00000000400dec48 0xa3 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0xae (size before relaxing) + 0x00000000400dec48 ble_hs_id_set_rnd + *fill* 0x00000000400deceb 0x1 + .text.ble_hs_id_addr + 0x00000000400decec 0x56 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0x00000000400decec ble_hs_id_addr + *fill* 0x00000000400ded42 0x2 + .text.ble_hs_id_addr_type_usable + 0x00000000400ded44 0x4a esp-idf/bt/libbt.a(ble_hs_id.c.obj) + *fill* 0x00000000400ded8e 0x2 + .text.ble_hs_id_copy_addr + 0x00000000400ded90 0x36 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0x3d (size before relaxing) + 0x00000000400ded90 ble_hs_id_copy_addr + *fill* 0x00000000400dedc6 0x2 + .text.ble_hs_id_use_addr + 0x00000000400dedc8 0x1e esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0x24 (size before relaxing) + 0x00000000400dedc8 ble_hs_id_use_addr + *fill* 0x00000000400dede6 0x2 + .text.ble_hs_id_infer_auto + 0x00000000400dede8 0x46 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0x4a (size before relaxing) + 0x00000000400dede8 ble_hs_id_infer_auto + *fill* 0x00000000400dee2e 0x2 + .text.ble_hs_id_reset + 0x00000000400dee30 0x17 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0x00000000400dee30 ble_hs_id_reset + *fill* 0x00000000400dee47 0x1 + .text.ble_hs_wakeup_tx_conn + 0x00000000400dee48 0x44 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x48 (size before relaxing) + .text.ble_hs_event_rx_hci_ev + 0x00000000400dee8c 0x2a esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x32 (size before relaxing) + *fill* 0x00000000400deeb6 0x2 + .text.ble_hs_clear_rx_queue + 0x00000000400deeb8 0x17 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x1d (size before relaxing) + *fill* 0x00000000400deecf 0x1 + .text.ble_hs_event_tx_notify + 0x00000000400deed0 0x8 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0xb (size before relaxing) + *fill* 0x00000000400deed8 0x0 + .text.ble_hs_rx_data + 0x00000000400deed8 0x24 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x2c (size before relaxing) + .text.ble_hs_evq_get + 0x00000000400deefc 0xa esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x00000000400deefc ble_hs_evq_get + *fill* 0x00000000400def06 0x2 + .text.ble_hs_sched_start_stage2 + 0x00000000400def08 0x18 esp-idf/bt/libbt.a(ble_hs.c.obj) + .text.ble_hs_event_start_stage1 + 0x00000000400def20 0x8 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0xb (size before relaxing) + *fill* 0x00000000400def28 0x0 + .text.ble_hs_evq_set + 0x00000000400def28 0xa esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x00000000400def28 ble_hs_evq_set + *fill* 0x00000000400def32 0x2 + .text.ble_hs_is_parent_task + 0x00000000400def34 0x30 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x00000000400def34 ble_hs_is_parent_task + .text.ble_hs_lock_nested + 0x00000000400def64 0x16 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x00000000400def64 ble_hs_lock_nested + *fill* 0x00000000400def7a 0x2 + .text.ble_hs_unlock_nested + 0x00000000400def7c 0x13 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x00000000400def7c ble_hs_unlock_nested + *fill* 0x00000000400def8f 0x1 + .text.ble_hs_lock + 0x00000000400def90 0x8 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0xb (size before relaxing) + 0x00000000400def90 ble_hs_lock + *fill* 0x00000000400def98 0x0 + .text.ble_hs_unlock + 0x00000000400def98 0x8 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0xb (size before relaxing) + 0x00000000400def98 ble_hs_unlock + *fill* 0x00000000400defa0 0x0 + .text.ble_hs_process_rx_data_queue + 0x00000000400defa0 0x17 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x1d (size before relaxing) + 0x00000000400defa0 ble_hs_process_rx_data_queue + *fill* 0x00000000400defb7 0x1 + .text.ble_hs_event_rx_data + 0x00000000400defb8 0x8 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0xb (size before relaxing) + *fill* 0x00000000400defc0 0x0 + .text.ble_hs_wakeup_tx + 0x00000000400defc0 0x41 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x4c (size before relaxing) + 0x00000000400defc0 ble_hs_wakeup_tx + *fill* 0x00000000400df001 0x3 + .text.ble_hs_is_enabled + 0x00000000400df004 0x15 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x00000000400df004 ble_hs_is_enabled + *fill* 0x00000000400df019 0x3 + .text.ble_hs_timer_reset + 0x00000000400df01c 0x3a esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x3e (size before relaxing) + *fill* 0x00000000400df056 0x2 + .text.ble_hs_timer_sched + 0x00000000400df058 0x88 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x90 (size before relaxing) + .text.ble_hs_sync + 0x00000000400df0e0 0x64 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x70 (size before relaxing) + .text.ble_hs_reset + 0x00000000400df144 0x3d esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x45 (size before relaxing) + *fill* 0x00000000400df181 0x3 + .text.ble_hs_event_reset + 0x00000000400df184 0x8 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0xb (size before relaxing) + *fill* 0x00000000400df18c 0x0 + .text.ble_hs_timer_exp + 0x00000000400df18c 0x4a esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x6d (size before relaxing) + *fill* 0x00000000400df1d6 0x2 + .text.ble_hs_timer_resched + 0x00000000400df1d8 0xa esp-idf/bt/libbt.a(ble_hs.c.obj) + 0xe (size before relaxing) + 0x00000000400df1d8 ble_hs_timer_resched + *fill* 0x00000000400df1e2 0x2 + .text.ble_hs_enqueue_hci_event + 0x00000000400df1e4 0x4f esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x52 (size before relaxing) + 0x00000000400df1e4 ble_hs_enqueue_hci_event + *fill* 0x00000000400df233 0x1 + .text.ble_hs_sched_reset + 0x00000000400df234 0x1c esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x00000000400df234 ble_hs_sched_reset + .text.ble_hs_hw_error + 0x00000000400df250 0xe esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x11 (size before relaxing) + 0x00000000400df250 ble_hs_hw_error + *fill* 0x00000000400df25e 0x2 + .text.ble_hs_start + 0x00000000400df260 0x74 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x87 (size before relaxing) + 0x00000000400df260 ble_hs_start + *fill* 0x00000000400df2d4 0x0 + .text.ble_hs_event_start_stage2 + 0x00000000400df2d4 0x1c esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x1f (size before relaxing) + *fill* 0x00000000400df2f0 0x0 + .text.ble_hs_tx_data + 0x00000000400df2f0 0xc esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x10 (size before relaxing) + 0x00000000400df2f0 ble_hs_tx_data + .text.ble_hs_init + 0x00000000400df2fc 0x150 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x194 (size before relaxing) + 0x00000000400df2fc ble_hs_init + .text.ble_transport_to_hs_evt_impl + 0x00000000400df44c 0x11 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x00000000400df44c ble_transport_to_hs_evt_impl + *fill* 0x00000000400df45d 0x3 + .text.ble_transport_to_hs_acl_impl + 0x00000000400df460 0x11 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x00000000400df460 ble_transport_to_hs_acl_impl + *fill* 0x00000000400df471 0x3 + .text.ble_transport_hs_init + 0x00000000400df474 0x8 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0xb (size before relaxing) + 0x00000000400df474 ble_transport_hs_init + *fill* 0x00000000400df47c 0x0 + .text.ble_hs_deinit + 0x00000000400df47c 0x61 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x75 (size before relaxing) + 0x00000000400df47c ble_hs_deinit + *fill* 0x00000000400df4dd 0x3 + .text.ble_hs_hci_evt_dispatch_find + 0x00000000400df4e0 0x20 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + .text.ble_hs_hci_evt_le_dispatch_find + 0x00000000400df500 0x18 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + .text.ble_hs_hci_evt_le_meta + 0x00000000400df518 0x2c esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + .text.ble_hs_hci_evt_hw_error + 0x00000000400df544 0x18 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + .text.ble_hs_hci_evt_enc_key_refresh + 0x00000000400df55c 0x14 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x18 (size before relaxing) + .text.ble_hs_hci_evt_encrypt_change + 0x00000000400df570 0x14 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x18 (size before relaxing) + .text.ble_hs_hci_evt_disconn_complete + 0x00000000400df584 0x38 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x48 (size before relaxing) + .text.ble_hs_hci_evt_num_completed_pkts + 0x00000000400df5bc 0x73 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x83 (size before relaxing) + *fill* 0x00000000400df62f 0x1 + .text.ble_hs_hci_evt_le_phy_update_complete + 0x00000000400df630 0x14 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x18 (size before relaxing) + .text.ble_hs_hci_evt_le_dir_adv_rpt + 0x00000000400df644 0x79 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x7d (size before relaxing) + *fill* 0x00000000400df6bd 0x3 + .text.ble_hs_hci_evt_le_adv_rpt + 0x00000000400df6c0 0x92 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x96 (size before relaxing) + *fill* 0x00000000400df752 0x2 + .text.ble_hs_hci_evt_le_enh_conn_complete + 0x00000000400df754 0xd4 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0xe4 (size before relaxing) + .text.ble_hs_hci_evt_le_conn_complete + 0x00000000400df828 0xb8 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0xc4 (size before relaxing) + .text.ble_hs_hci_evt_le_conn_parm_req + 0x00000000400df8e0 0x19 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + *fill* 0x00000000400df8f9 0x3 + .text.ble_hs_hci_evt_le_lt_key_req + 0x00000000400df8fc 0x19 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + *fill* 0x00000000400df915 0x3 + .text.ble_hs_hci_evt_le_rd_rem_used_feat_complete + 0x00000000400df918 0x14 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x18 (size before relaxing) + .text.ble_hs_hci_evt_le_conn_upd_complete + 0x00000000400df92c 0x14 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x18 (size before relaxing) + .text.ble_hs_hci_evt_process + 0x00000000400df940 0x2c esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x30 (size before relaxing) + 0x00000000400df940 ble_hs_hci_evt_process + .text.ble_hs_hci_evt_acl_process + 0x00000000400df96c 0x8d esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0xa4 (size before relaxing) + 0x00000000400df96c ble_hs_hci_evt_acl_process + *fill* 0x00000000400df9f9 0x3 + .text.ble_mqueue_init + 0x00000000400df9fc 0x1e esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + 0x00000000400df9fc ble_mqueue_init + *fill* 0x00000000400dfa1a 0x2 + .text.ble_mqueue_deinit + 0x00000000400dfa1c 0x12 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + 0x00000000400dfa1c ble_mqueue_deinit + *fill* 0x00000000400dfa2e 0x2 + .text.ble_mqueue_get + 0x00000000400dfa30 0x2f esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + 0x00000000400dfa30 ble_mqueue_get + *fill* 0x00000000400dfa5f 0x1 + .text.ble_mqueue_put + 0x00000000400dfa60 0x4c esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + 0x00000000400dfa60 ble_mqueue_put + .text.ble_att_rx_dispatch_entry_find + 0x00000000400dfaac 0x2a esp-idf/bt/libbt.a(ble_att.c.obj) + *fill* 0x00000000400dfad6 0x2 + .text.ble_att_rx_handle_unknown_request + 0x00000000400dfad8 0x23 esp-idf/bt/libbt.a(ble_att.c.obj) + 0x27 (size before relaxing) + *fill* 0x00000000400dfafb 0x1 + .text.ble_att_rx + 0x00000000400dfafc 0x6e esp-idf/bt/libbt.a(ble_att.c.obj) + 0x7e (size before relaxing) + *fill* 0x00000000400dfb6a 0x2 + .text.ble_att_conn_chan_find + 0x00000000400dfb6c 0x16 esp-idf/bt/libbt.a(ble_att.c.obj) + 0x00000000400dfb6c ble_att_conn_chan_find + *fill* 0x00000000400dfb82 0x2 + .text.ble_att_chan_mtu + 0x00000000400dfb84 0x25 esp-idf/bt/libbt.a(ble_att.c.obj) + 0x00000000400dfb84 ble_att_chan_mtu + *fill* 0x00000000400dfba9 0x3 + .text.ble_att_truncate_to_mtu + 0x00000000400dfbac 0x1b esp-idf/bt/libbt.a(ble_att.c.obj) + 0x22 (size before relaxing) + 0x00000000400dfbac ble_att_truncate_to_mtu + *fill* 0x00000000400dfbc7 0x1 + .text.ble_att_mtu + 0x00000000400dfbc8 0x27 esp-idf/bt/libbt.a(ble_att.c.obj) + 0x32 (size before relaxing) + 0x00000000400dfbc8 ble_att_mtu + *fill* 0x00000000400dfbef 0x1 + .text.ble_att_create_chan + 0x00000000400dfbf0 0x28 esp-idf/bt/libbt.a(ble_att.c.obj) + 0x00000000400dfbf0 ble_att_create_chan + .text.ble_att_init + 0x00000000400dfc18 0x10 esp-idf/bt/libbt.a(ble_att.c.obj) + 0x00000000400dfc18 ble_att_init + .text.ble_gattc_proc_set_exp_timer + 0x00000000400dfc28 0x22 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400dfc4a 0x2 + .text.ble_gattc_proc_set_resume_timer + 0x00000000400dfc4c 0x3c esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_process_resume_status + 0x00000000400dfc88 0x16 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400dfc9e 0x2 + .text.ble_gattc_err_dispatch_get + 0x00000000400dfca0 0xd esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400dfcad 0x3 + .text.ble_gattc_resume_dispatch_get + 0x00000000400dfcb0 0xd esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400dfcbd 0x3 + .text.ble_gattc_tmo_dispatch_get + 0x00000000400dfcc0 0xd esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400dfccd 0x3 + .text.ble_gattc_proc_matches_conn_rx_entry + 0x00000000400dfcd0 0x30 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_ticks_until_resume + 0x00000000400dfd00 0x2e esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400dfd2e 0x2 + .text.ble_gattc_proc_timeout + 0x00000000400dfd30 0x17 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400dfd47 0x1 + .text.ble_gattc_error + 0x00000000400dfd48 0x29 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400dfd71 0x3 + .text.ble_gattc_mtu_cb + 0x00000000400dfd74 0x25 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x29 (size before relaxing) + *fill* 0x00000000400dfd99 0x3 + .text.ble_gattc_mtu_tmo + 0x00000000400dfd9c 0x13 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400dfdaf 0x1 + .text.ble_gattc_mtu_err + 0x00000000400dfdb0 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_disc_all_svcs_cb + 0x00000000400dfdc4 0x25 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x29 (size before relaxing) + *fill* 0x00000000400dfde9 0x3 + .text.ble_gattc_disc_all_svcs_tmo + 0x00000000400dfdec 0x13 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400dfdff 0x1 + .text.ble_gattc_disc_all_svcs_err + 0x00000000400dfe00 0x1b esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x1e (size before relaxing) + *fill* 0x00000000400dfe1b 0x1 + .text.ble_gattc_disc_svc_uuid_cb + 0x00000000400dfe1c 0x25 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x29 (size before relaxing) + *fill* 0x00000000400dfe41 0x3 + .text.ble_gattc_disc_svc_uuid_tmo + 0x00000000400dfe44 0x13 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400dfe57 0x1 + .text.ble_gattc_disc_svc_uuid_err + 0x00000000400dfe58 0x1c esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_disc_svc_uuid_rx_hinfo + 0x00000000400dfe74 0x42 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400dfeb6 0x2 + .text.ble_gattc_find_inc_svcs_cb + 0x00000000400dfeb8 0x25 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x29 (size before relaxing) + *fill* 0x00000000400dfedd 0x3 + .text.ble_gattc_find_inc_svcs_tmo + 0x00000000400dfee0 0x13 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400dfef3 0x1 + .text.ble_gattc_find_inc_svcs_err + 0x00000000400dfef4 0x1e esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x22 (size before relaxing) + *fill* 0x00000000400dff12 0x2 + .text.ble_gattc_disc_all_chrs_cb + 0x00000000400dff14 0x25 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x29 (size before relaxing) + *fill* 0x00000000400dff39 0x3 + .text.ble_gattc_disc_all_chrs_tmo + 0x00000000400dff3c 0x13 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400dff4f 0x1 + .text.ble_gattc_disc_all_chrs_err + 0x00000000400dff50 0x1c esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_disc_chr_uuid_cb + 0x00000000400dff6c 0x25 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x29 (size before relaxing) + *fill* 0x00000000400dff91 0x3 + .text.ble_gattc_disc_chr_uuid_tmo + 0x00000000400dff94 0x13 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400dffa7 0x1 + .text.ble_gattc_disc_chr_uuid_err + 0x00000000400dffa8 0x1c esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_disc_all_dscs_cb + 0x00000000400dffc4 0x2c esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_disc_all_dscs_tmo + 0x00000000400dfff0 0x13 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400e0003 0x1 + .text.ble_gattc_disc_all_dscs_err + 0x00000000400e0004 0x1c esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_disc_all_dscs_rx_idata + 0x00000000400e0020 0x3e esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x42 (size before relaxing) + *fill* 0x00000000400e005e 0x2 + .text.ble_gattc_read_cb + 0x00000000400e0060 0x25 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x29 (size before relaxing) + *fill* 0x00000000400e0085 0x3 + .text.ble_gattc_read_tmo + 0x00000000400e0088 0x13 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400e009b 0x1 + .text.ble_gattc_read_err + 0x00000000400e009c 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_read_rx_read_rsp + 0x00000000400e00b0 0x28 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_read_uuid_cb + 0x00000000400e00d8 0x25 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x29 (size before relaxing) + *fill* 0x00000000400e00fd 0x3 + .text.ble_gattc_read_uuid_tmo + 0x00000000400e0100 0x13 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400e0113 0x1 + .text.ble_gattc_read_uuid_err + 0x00000000400e0114 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_read_uuid_rx_complete + 0x00000000400e0128 0x24 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x28 (size before relaxing) + .text.ble_gattc_read_long_cb + 0x00000000400e014c 0x25 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x29 (size before relaxing) + *fill* 0x00000000400e0171 0x3 + .text.ble_gattc_read_long_tmo + 0x00000000400e0174 0x13 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400e0187 0x1 + .text.ble_gattc_read_long_err + 0x00000000400e0188 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_read_mult_cb + 0x00000000400e019c 0x43 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400e01df 0x1 + .text.ble_gattc_read_mult_tmo + 0x00000000400e01e0 0x13 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400e01f3 0x1 + .text.ble_gattc_read_mult_err + 0x00000000400e01f4 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_write_long_cb + 0x00000000400e0208 0x25 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x29 (size before relaxing) + *fill* 0x00000000400e022d 0x3 + .text.ble_gattc_write_long_tmo + 0x00000000400e0230 0xe esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x12 (size before relaxing) + *fill* 0x00000000400e023e 0x2 + .text.ble_gattc_write_long_rx_exec + 0x00000000400e0240 0x24 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_write_reliable_cb + 0x00000000400e0264 0x2c esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_write_reliable_tmo + 0x00000000400e0290 0xe esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x12 (size before relaxing) + *fill* 0x00000000400e029e 0x2 + .text.ble_gattc_write_reliable_rx_exec + 0x00000000400e02a0 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x14 (size before relaxing) + .text.ble_gattc_extract + 0x00000000400e02b0 0x68 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x6f (size before relaxing) + *fill* 0x00000000400e0318 0x0 + .text.ble_gattc_extract_expired + 0x00000000400e0318 0x2c esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_extract_stalled + 0x00000000400e0344 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_extract_by_conn_op + 0x00000000400e0358 0x1a esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400e0372 0x2 + .text.ble_gattc_extract_first_by_conn_op + 0x00000000400e0374 0x15 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400e0389 0x3 + .text.ble_gattc_extract_one + 0x00000000400e038c 0x15 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400e03a1 0x3 + .text.ble_gattc_extract_with_rx_entry + 0x00000000400e03a4 0x21 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400e03c5 0x3 + .text.ble_gattc_proc_insert + 0x00000000400e03c8 0x1a esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x1e (size before relaxing) + *fill* 0x00000000400e03e2 0x2 + .text.ble_gatts_indicate_tmo + 0x00000000400e03e4 0x12 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x16 (size before relaxing) + *fill* 0x00000000400e03f6 0x2 + .text.ble_gattc_write_cb + 0x00000000400e03f8 0x31 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x35 (size before relaxing) + *fill* 0x00000000400e0429 0x3 + .text.ble_gattc_write_tmo + 0x00000000400e042c 0xe esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x12 (size before relaxing) + *fill* 0x00000000400e043a 0x2 + .text.ble_gattc_write_err + 0x00000000400e043c 0x12 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400e044e 0x2 + .text.ble_gattc_proc_free + 0x00000000400e0450 0x3f esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x46 (size before relaxing) + *fill* 0x00000000400e048f 0x1 + .text.ble_gattc_fail_procs + 0x00000000400e0490 0x41 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400e04d1 0x3 + .text.ble_gattc_write_reliable_err + 0x00000000400e04d4 0x22 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x26 (size before relaxing) + *fill* 0x00000000400e04f6 0x2 + .text.ble_gattc_write_long_err + 0x00000000400e04f8 0x2c esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_write_reliable_tx + 0x00000000400e0524 0x86 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x96 (size before relaxing) + *fill* 0x00000000400e05aa 0x2 + .text.ble_gattc_write_reliable_resume + 0x00000000400e05ac 0x22 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x2a (size before relaxing) + *fill* 0x00000000400e05ce 0x2 + .text.ble_gattc_write_long_tx + 0x00000000400e05d0 0x7a esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x86 (size before relaxing) + *fill* 0x00000000400e064a 0x2 + .text.ble_gattc_write_long_resume + 0x00000000400e064c 0x22 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x2a (size before relaxing) + *fill* 0x00000000400e066e 0x2 + .text.ble_gattc_read_long_tx + 0x00000000400e0670 0x26 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x29 (size before relaxing) + *fill* 0x00000000400e0696 0x2 + .text.ble_gattc_read_long_resume + 0x00000000400e0698 0x24 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x2c (size before relaxing) + .text.ble_gattc_read_long_rx_read_rsp + 0x00000000400e06bc 0x6e esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x76 (size before relaxing) + *fill* 0x00000000400e072a 0x2 + .text.ble_gattc_disc_all_dscs_tx + 0x00000000400e072c 0x18 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x1c (size before relaxing) + .text.ble_gattc_disc_all_dscs_resume + 0x00000000400e0744 0x24 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x2c (size before relaxing) + .text.ble_gattc_disc_all_dscs_rx_complete + 0x00000000400e0768 0x3e esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x42 (size before relaxing) + *fill* 0x00000000400e07a6 0x2 + .text.ble_gattc_disc_chr_uuid_tx + 0x00000000400e07a8 0x24 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_disc_chr_uuid_resume + 0x00000000400e07cc 0x24 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x2c (size before relaxing) + .text.ble_gattc_disc_chr_uuid_rx_complete + 0x00000000400e07f0 0x3e esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x42 (size before relaxing) + *fill* 0x00000000400e082e 0x2 + .text.ble_gattc_disc_all_chrs_tx + 0x00000000400e0830 0x24 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_disc_all_chrs_resume + 0x00000000400e0854 0x24 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x2c (size before relaxing) + .text.ble_gattc_disc_all_chrs_rx_complete + 0x00000000400e0878 0x3a esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x42 (size before relaxing) + *fill* 0x00000000400e08b2 0x2 + .text.ble_gattc_find_inc_svcs_tx + 0x00000000400e08b4 0x36 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x39 (size before relaxing) + *fill* 0x00000000400e08ea 0x2 + .text.ble_gattc_find_inc_svcs_resume + 0x00000000400e08ec 0x24 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x2c (size before relaxing) + .text.ble_gattc_find_inc_svcs_rx_complete + 0x00000000400e0910 0x42 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x46 (size before relaxing) + *fill* 0x00000000400e0952 0x2 + .text.ble_gattc_disc_svc_uuid_tx + 0x00000000400e0954 0x34 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x3c (size before relaxing) + .text.ble_gattc_disc_svc_uuid_resume + 0x00000000400e0988 0x24 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x2c (size before relaxing) + .text.ble_gattc_disc_svc_uuid_rx_complete + 0x00000000400e09ac 0x42 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x46 (size before relaxing) + *fill* 0x00000000400e09ee 0x2 + .text.ble_gattc_disc_all_svcs_tx + 0x00000000400e09f0 0x24 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_disc_all_svcs_resume + 0x00000000400e0a14 0x26 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x2e (size before relaxing) + *fill* 0x00000000400e0a3a 0x2 + .text.ble_gattc_disc_all_svcs_rx_complete + 0x00000000400e0a3c 0x46 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400e0a82 0x2 + .text.ble_gattc_process_status + 0x00000000400e0a84 0x24 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x2f (size before relaxing) + *fill* 0x00000000400e0aa8 0x0 + .text.ble_gattc_resume_procs + 0x00000000400e0aa8 0x41 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x45 (size before relaxing) + *fill* 0x00000000400e0ae9 0x3 + .text.ble_gattc_proc_alloc + 0x00000000400e0aec 0x1c esp-idf/bt/libbt.a(ble_gattc.c.obj) + .text.ble_gattc_log_proc_init + 0x00000000400e0b08 0x1b esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x1f (size before relaxing) + *fill* 0x00000000400e0b23 0x1 + .text.ble_gattc_log_notify + 0x00000000400e0b24 0x20 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x28 (size before relaxing) + .text.ble_gattc_log_indicate + 0x00000000400e0b44 0x20 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x28 (size before relaxing) + .text.ble_gattc_read_uuid_rx_adata + 0x00000000400e0b64 0x3c esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x40 (size before relaxing) + .text.ble_gatts_indicate_err + 0x00000000400e0ba0 0x27 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x2f (size before relaxing) + *fill* 0x00000000400e0bc7 0x1 + .text.ble_gatts_indicate_rx_rsp + 0x00000000400e0bc8 0x24 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x2c (size before relaxing) + .text.ble_gattc_disc_all_svcs_rx_adata + 0x00000000400e0bec 0x56 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x5a (size before relaxing) + *fill* 0x00000000400e0c42 0x2 + .text.ble_gattc_disc_all_chrs_rx_adata + 0x00000000400e0c44 0x7e esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400e0cc2 0x2 + .text.ble_gattc_find_inc_svcs_rx_adata + 0x00000000400e0cc4 0xa2 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000400e0d66 0x2 + .text.ble_gattc_disc_chr_uuid_rx_adata + 0x00000000400e0d68 0x92 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x9a (size before relaxing) + *fill* 0x00000000400e0dfa 0x2 + .text.ble_gattc_find_inc_svcs_rx_read_rsp + 0x00000000400e0dfc 0x72 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x82 (size before relaxing) + *fill* 0x00000000400e0e6e 0x2 + .text.ble_gattc_write_reliable_rx_prep + 0x00000000400e0e70 0x8e esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x92 (size before relaxing) + *fill* 0x00000000400e0efe 0x2 + .text.ble_gattc_write_long_rx_prep + 0x00000000400e0f00 0x90 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x94 (size before relaxing) + .text.ble_gattc_timer + 0x00000000400e0f90 0x40 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x54 (size before relaxing) + 0x00000000400e0f90 ble_gattc_timer + .text.ble_gatts_notify_custom + 0x00000000400e0fd0 0x57 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x63 (size before relaxing) + 0x00000000400e0fd0 ble_gatts_notify_custom + *fill* 0x00000000400e1027 0x1 + .text.ble_gatts_notify + 0x00000000400e1028 0x15 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x00000000400e1028 ble_gatts_notify + *fill* 0x00000000400e103d 0x3 + .text.ble_gatts_indicate_fail_notconn + 0x00000000400e1040 0x12 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x00000000400e1040 ble_gatts_indicate_fail_notconn + *fill* 0x00000000400e1052 0x2 + .text.ble_gatts_indicate_custom + 0x00000000400e1054 0x8c esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0xac (size before relaxing) + 0x00000000400e1054 ble_gatts_indicate_custom + .text.ble_gatts_indicate + 0x00000000400e10e0 0x15 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x00000000400e10e0 ble_gatts_indicate + *fill* 0x00000000400e10f5 0x3 + .text.ble_gattc_rx_err + 0x00000000400e10f8 0x33 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x3a (size before relaxing) + 0x00000000400e10f8 ble_gattc_rx_err + *fill* 0x00000000400e112b 0x1 + .text.ble_gattc_rx_mtu + 0x00000000400e112c 0x26 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x2e (size before relaxing) + 0x00000000400e112c ble_gattc_rx_mtu + *fill* 0x00000000400e1152 0x2 + .text.ble_gattc_rx_find_info_idata + 0x00000000400e1154 0x1e esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x26 (size before relaxing) + 0x00000000400e1154 ble_gattc_rx_find_info_idata + *fill* 0x00000000400e1172 0x2 + .text.ble_gattc_rx_find_info_complete + 0x00000000400e1174 0x1e esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x26 (size before relaxing) + 0x00000000400e1174 ble_gattc_rx_find_info_complete + *fill* 0x00000000400e1192 0x2 + .text.ble_gattc_rx_find_type_value_hinfo + 0x00000000400e1194 0x1e esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x26 (size before relaxing) + 0x00000000400e1194 ble_gattc_rx_find_type_value_hinfo + *fill* 0x00000000400e11b2 0x2 + .text.ble_gattc_rx_find_type_value_complete + 0x00000000400e11b4 0x1e esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x26 (size before relaxing) + 0x00000000400e11b4 ble_gattc_rx_find_type_value_complete + *fill* 0x00000000400e11d2 0x2 + .text.ble_gattc_rx_read_type_adata + 0x00000000400e11d4 0x26 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x2e (size before relaxing) + 0x00000000400e11d4 ble_gattc_rx_read_type_adata + *fill* 0x00000000400e11fa 0x2 + .text.ble_gattc_rx_read_type_complete + 0x00000000400e11fc 0x26 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x2e (size before relaxing) + 0x00000000400e11fc ble_gattc_rx_read_type_complete + *fill* 0x00000000400e1222 0x2 + .text.ble_gattc_rx_read_group_type_adata + 0x00000000400e1224 0x1e esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x26 (size before relaxing) + 0x00000000400e1224 ble_gattc_rx_read_group_type_adata + *fill* 0x00000000400e1242 0x2 + .text.ble_gattc_rx_read_group_type_complete + 0x00000000400e1244 0x1e esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x26 (size before relaxing) + 0x00000000400e1244 ble_gattc_rx_read_group_type_complete + *fill* 0x00000000400e1262 0x2 + .text.ble_gattc_rx_read_rsp + 0x00000000400e1264 0x28 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x30 (size before relaxing) + 0x00000000400e1264 ble_gattc_rx_read_rsp + .text.ble_gattc_rx_read_blob_rsp + 0x00000000400e128c 0x20 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x28 (size before relaxing) + 0x00000000400e128c ble_gattc_rx_read_blob_rsp + .text.ble_gattc_rx_read_mult_rsp + 0x00000000400e12ac 0x22 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x2a (size before relaxing) + 0x00000000400e12ac ble_gattc_rx_read_mult_rsp + *fill* 0x00000000400e12ce 0x2 + .text.ble_gattc_rx_write_rsp + 0x00000000400e12d0 0x20 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x28 (size before relaxing) + 0x00000000400e12d0 ble_gattc_rx_write_rsp + .text.ble_gattc_rx_prep_write_rsp + 0x00000000400e12f0 0x34 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x38 (size before relaxing) + 0x00000000400e12f0 ble_gattc_rx_prep_write_rsp + .text.ble_gattc_rx_exec_write_rsp + 0x00000000400e1324 0x26 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x2e (size before relaxing) + 0x00000000400e1324 ble_gattc_rx_exec_write_rsp + *fill* 0x00000000400e134a 0x2 + .text.ble_gatts_rx_indicate_rsp + 0x00000000400e134c 0x1c esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x24 (size before relaxing) + 0x00000000400e134c ble_gatts_rx_indicate_rsp + .text.ble_gattc_connection_broken + 0x00000000400e1368 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x13 (size before relaxing) + 0x00000000400e1368 ble_gattc_connection_broken + *fill* 0x00000000400e1378 0x0 + .text.ble_gattc_init + 0x00000000400e1378 0x20 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x24 (size before relaxing) + 0x00000000400e1378 ble_gattc_init + .text.ble_store_status + 0x00000000400e1398 0x1d esp-idf/bt/libbt.a(ble_store.c.obj) + *fill* 0x00000000400e13b5 0x3 + .text.ble_addr_cmp + 0x00000000400e13b8 0x20 esp-idf/bt/libbt.a(ble_store.c.obj) + .text.ble_store_read + 0x00000000400e13d8 0x25 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x28 (size before relaxing) + 0x00000000400e13d8 ble_store_read + *fill* 0x00000000400e13fd 0x3 + .text.ble_store_delete + 0x00000000400e1400 0x20 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x27 (size before relaxing) + 0x00000000400e1400 ble_store_delete + *fill* 0x00000000400e1420 0x0 + .text.ble_store_overflow_event + 0x00000000400e1420 0x14 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x18 (size before relaxing) + 0x00000000400e1420 ble_store_overflow_event + .text.ble_store_write + 0x00000000400e1434 0x3c esp-idf/bt/libbt.a(ble_store.c.obj) + 0x44 (size before relaxing) + 0x00000000400e1434 ble_store_write + .text.ble_store_persist_sec + 0x00000000400e1470 0x11 esp-idf/bt/libbt.a(ble_store.c.obj) + *fill* 0x00000000400e1481 0x3 + .text.ble_store_full_event + 0x00000000400e1484 0x18 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x00000000400e1484 ble_store_full_event + .text.ble_store_read_our_sec + 0x00000000400e149c 0x10 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x14 (size before relaxing) + 0x00000000400e149c ble_store_read_our_sec + .text.ble_store_write_our_sec + 0x00000000400e14ac 0x11 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x00000000400e14ac ble_store_write_our_sec + *fill* 0x00000000400e14bd 0x3 + .text.ble_store_read_peer_sec + 0x00000000400e14c0 0x10 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x14 (size before relaxing) + 0x00000000400e14c0 ble_store_read_peer_sec + .text.ble_store_write_peer_sec + 0x00000000400e14d0 0x48 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x50 (size before relaxing) + 0x00000000400e14d0 ble_store_write_peer_sec + .text.ble_store_read_cccd + 0x00000000400e1518 0x10 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x14 (size before relaxing) + 0x00000000400e1518 ble_store_read_cccd + .text.ble_store_write_cccd + 0x00000000400e1528 0x11 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x00000000400e1528 ble_store_write_cccd + *fill* 0x00000000400e1539 0x3 + .text.ble_store_delete_cccd + 0x00000000400e153c 0x11 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x00000000400e153c ble_store_delete_cccd + *fill* 0x00000000400e154d 0x3 + .text.ble_store_iterate + 0x00000000400e1550 0xb8 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x00000000400e1550 ble_store_iterate + .text.ble_att_clt_parse_find_type_value_hinfo + 0x00000000400e1608 0x44 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x48 (size before relaxing) + .text.ble_att_clt_parse_read_group_type_adata + 0x00000000400e164c 0x44 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x48 (size before relaxing) + .text.ble_att_clt_parse_find_info_entry + 0x00000000400e1690 0x78 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + .text.ble_att_clt_rx_error + 0x00000000400e1708 0x2e esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x32 (size before relaxing) + 0x00000000400e1708 ble_att_clt_rx_error + *fill* 0x00000000400e1736 0x2 + .text.ble_att_clt_rx_mtu + 0x00000000400e1738 0x6c esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x7c (size before relaxing) + 0x00000000400e1738 ble_att_clt_rx_mtu + .text.ble_att_clt_tx_find_info + 0x00000000400e17a4 0x58 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x5c (size before relaxing) + 0x00000000400e17a4 ble_att_clt_tx_find_info + .text.ble_att_clt_rx_find_info + 0x00000000400e17fc 0x4e esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x56 (size before relaxing) + 0x00000000400e17fc ble_att_clt_rx_find_info + *fill* 0x00000000400e184a 0x2 + .text.ble_att_clt_tx_find_type_value + 0x00000000400e184c 0x75 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x79 (size before relaxing) + 0x00000000400e184c ble_att_clt_tx_find_type_value + *fill* 0x00000000400e18c1 0x3 + .text.ble_att_clt_rx_find_type_value + 0x00000000400e18c4 0x36 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x3a (size before relaxing) + 0x00000000400e18c4 ble_att_clt_rx_find_type_value + *fill* 0x00000000400e18fa 0x2 + .text.ble_att_clt_tx_read_type + 0x00000000400e18fc 0x66 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x6e (size before relaxing) + 0x00000000400e18fc ble_att_clt_tx_read_type + *fill* 0x00000000400e1962 0x2 + .text.ble_att_clt_rx_read_type + 0x00000000400e1964 0x76 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x82 (size before relaxing) + 0x00000000400e1964 ble_att_clt_rx_read_type + *fill* 0x00000000400e19da 0x2 + .text.ble_att_clt_tx_read + 0x00000000400e19dc 0x38 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x3c (size before relaxing) + 0x00000000400e19dc ble_att_clt_tx_read + .text.ble_att_clt_rx_read + 0x00000000400e1a14 0x14 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x00000000400e1a14 ble_att_clt_rx_read + .text.ble_att_clt_tx_read_blob + 0x00000000400e1a28 0x42 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x46 (size before relaxing) + 0x00000000400e1a28 ble_att_clt_tx_read_blob + *fill* 0x00000000400e1a6a 0x2 + .text.ble_att_clt_rx_read_blob + 0x00000000400e1a6c 0x14 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x00000000400e1a6c ble_att_clt_rx_read_blob + .text.ble_att_clt_rx_read_mult + 0x00000000400e1a80 0x14 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x00000000400e1a80 ble_att_clt_rx_read_mult + .text.ble_att_clt_tx_read_group_type + 0x00000000400e1a94 0x66 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x6e (size before relaxing) + 0x00000000400e1a94 ble_att_clt_tx_read_group_type + *fill* 0x00000000400e1afa 0x2 + .text.ble_att_clt_rx_read_group_type + 0x00000000400e1afc 0x54 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x60 (size before relaxing) + 0x00000000400e1afc ble_att_clt_rx_read_group_type + .text.ble_att_clt_rx_write + 0x00000000400e1b50 0xd esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x10 (size before relaxing) + 0x00000000400e1b50 ble_att_clt_rx_write + *fill* 0x00000000400e1b5d 0x3 + .text.ble_att_clt_tx_prep_write + 0x00000000400e1b60 0x78 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x84 (size before relaxing) + 0x00000000400e1b60 ble_att_clt_tx_prep_write + .text.ble_att_clt_rx_prep_write + 0x00000000400e1bd8 0x4e esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x52 (size before relaxing) + 0x00000000400e1bd8 ble_att_clt_rx_prep_write + *fill* 0x00000000400e1c26 0x2 + .text.ble_att_clt_tx_exec_write + 0x00000000400e1c28 0x29 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x2d (size before relaxing) + 0x00000000400e1c28 ble_att_clt_tx_exec_write + *fill* 0x00000000400e1c51 0x3 + .text.ble_att_clt_rx_exec_write + 0x00000000400e1c54 0x12 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x00000000400e1c54 ble_att_clt_rx_exec_write + *fill* 0x00000000400e1c66 0x2 + .text.ble_att_clt_tx_notify + 0x00000000400e1c68 0x46 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x4e (size before relaxing) + 0x00000000400e1c68 ble_att_clt_tx_notify + *fill* 0x00000000400e1cae 0x2 + .text.ble_att_clt_tx_indicate + 0x00000000400e1cb0 0x46 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x4e (size before relaxing) + 0x00000000400e1cb0 ble_att_clt_tx_indicate + *fill* 0x00000000400e1cf6 0x2 + .text.ble_att_clt_rx_indicate + 0x00000000400e1cf8 0xd esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x10 (size before relaxing) + 0x00000000400e1cf8 ble_att_clt_rx_indicate + *fill* 0x00000000400e1d05 0x3 + .text.ble_hs_mbuf_gen_pkt + 0x00000000400e1d08 0x28 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + 0x2c (size before relaxing) + .text.ble_hs_mbuf_acl_pkt + 0x00000000400e1d30 0xc esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + 0x10 (size before relaxing) + 0x00000000400e1d30 ble_hs_mbuf_acl_pkt + .text.ble_hs_mbuf_l2cap_pkt + 0x00000000400e1d3c 0xc esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + 0x10 (size before relaxing) + 0x00000000400e1d3c ble_hs_mbuf_l2cap_pkt + .text.ble_hs_mbuf_att_pkt + 0x00000000400e1d48 0xc esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + 0x10 (size before relaxing) + 0x00000000400e1d48 ble_hs_mbuf_att_pkt + .text.ble_hs_mbuf_from_flat + 0x00000000400e1d54 0x24 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + 0x2c (size before relaxing) + 0x00000000400e1d54 ble_hs_mbuf_from_flat + .text.ble_hs_mbuf_to_flat + 0x00000000400e1d78 0x2e esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + 0x32 (size before relaxing) + 0x00000000400e1d78 ble_hs_mbuf_to_flat + *fill* 0x00000000400e1da6 0x2 + .text.ble_hs_mbuf_pullup_base + 0x00000000400e1da8 0x26 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + 0x00000000400e1da8 ble_hs_mbuf_pullup_base + *fill* 0x00000000400e1dce 0x2 + .text.ble_att_cmd_prepare + 0x00000000400e1dd0 0x29 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + 0x2d (size before relaxing) + 0x00000000400e1dd0 ble_att_cmd_prepare + *fill* 0x00000000400e1df9 0x3 + .text.ble_att_cmd_get + 0x00000000400e1dfc 0x1c esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + 0x20 (size before relaxing) + 0x00000000400e1dfc ble_att_cmd_get + .text.ble_att_tx + 0x00000000400e1e18 0x44 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + 0x54 (size before relaxing) + 0x00000000400e1e18 ble_att_tx + .text.ble_hs_log_mbuf + 0x00000000400e1e5c 0x20 esp-idf/bt/libbt.a(ble_hs_log.c.obj) + 0x00000000400e1e5c ble_hs_log_mbuf + .text.ble_hs_startup_reset_tx + 0x00000000400e1e7c 0x18 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + .text.ble_hs_startup_read_sup_f_tx + 0x00000000400e1e94 0x34 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + 0x3c (size before relaxing) + .text.ble_hs_startup_set_evmask_tx + 0x00000000400e1ec8 0x42 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + 0x4a (size before relaxing) + *fill* 0x00000000400e1f0a 0x2 + .text.ble_hs_startup_le_set_evmask_tx + 0x00000000400e1f0c 0x40 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + 0x48 (size before relaxing) + .text.ble_hs_startup_le_read_buf_sz_tx + 0x00000000400e1f4c 0x26 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + *fill* 0x00000000400e1f72 0x2 + .text.ble_hs_startup_read_buf_sz_tx + 0x00000000400e1f74 0x2c esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + 0x30 (size before relaxing) + .text.ble_hs_startup_read_local_ver_tx + 0x00000000400e1fa0 0x1f esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + 0x23 (size before relaxing) + *fill* 0x00000000400e1fbf 0x1 + .text.ble_hs_startup_read_buf_sz + 0x00000000400e1fc0 0x44 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + 0x4c (size before relaxing) + .text.ble_hs_startup_le_read_sup_f_tx + 0x00000000400e2004 0x1e esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + 0x22 (size before relaxing) + *fill* 0x00000000400e2022 0x2 + .text.ble_hs_startup_read_bd_addr + 0x00000000400e2024 0x1e esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + 0x22 (size before relaxing) + *fill* 0x00000000400e2042 0x2 + .text.ble_hs_startup_go + 0x00000000400e2044 0x68 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + 0x90 (size before relaxing) + 0x00000000400e2044 ble_hs_startup_go + .text.ble_l2cap_sig_next_id + 0x00000000400e20ac 0x24 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + .text.ble_l2cap_sig_dispatch_get + 0x00000000400e20d0 0x18 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + .text.ble_l2cap_sig_check_conn_params + 0x00000000400e20e8 0x71 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + *fill* 0x00000000400e2159 0x3 + .text.ble_l2cap_sig_proc_insert + 0x00000000400e215c 0x1f esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x26 (size before relaxing) + *fill* 0x00000000400e217b 0x1 + .text.ble_l2cap_sig_proc_extract + 0x00000000400e217c 0x52 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x59 (size before relaxing) + *fill* 0x00000000400e21ce 0x2 + .text.ble_l2cap_sig_extract_expired + 0x00000000400e21d0 0x61 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + *fill* 0x00000000400e2231 0x3 + .text.ble_l2cap_sig_proc_alloc + 0x00000000400e2234 0x1c esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + .text.ble_l2cap_sig_proc_set_timer + 0x00000000400e2250 0x24 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x28 (size before relaxing) + .text.ble_l2cap_sig_proc_free + 0x00000000400e2274 0xf esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x12 (size before relaxing) + *fill* 0x00000000400e2283 0x1 + .text.ble_l2cap_sig_process_status + 0x00000000400e2284 0x1b esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x22 (size before relaxing) + *fill* 0x00000000400e229f 0x1 + .text.ble_l2cap_sig_rx_reject + 0x00000000400e22a0 0x19 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x1d (size before relaxing) + *fill* 0x00000000400e22b9 0x3 + .text.ble_l2cap_sig_update_rsp_rx + 0x00000000400e22bc 0x60 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x64 (size before relaxing) + .text.ble_l2cap_sig_rx + 0x00000000400e231c 0x76 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x82 (size before relaxing) + *fill* 0x00000000400e2392 0x2 + .text.ble_l2cap_sig_update_req_rx + 0x00000000400e2394 0xc4 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0xd4 (size before relaxing) + .text.ble_l2cap_sig_update + 0x00000000400e2458 0xbb esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0xcf (size before relaxing) + 0x00000000400e2458 ble_l2cap_sig_update + *fill* 0x00000000400e2513 0x1 + .text.ble_l2cap_sig_create_chan + 0x00000000400e2514 0x25 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x00000000400e2514 ble_l2cap_sig_create_chan + *fill* 0x00000000400e2539 0x3 + .text.ble_l2cap_sig_conn_broken + 0x00000000400e253c 0x37 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x00000000400e253c ble_l2cap_sig_conn_broken + *fill* 0x00000000400e2573 0x1 + .text.ble_l2cap_sig_timer + 0x00000000400e2574 0x35 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x39 (size before relaxing) + 0x00000000400e2574 ble_l2cap_sig_timer + *fill* 0x00000000400e25a9 0x3 + .text.ble_l2cap_sig_init + 0x00000000400e25ac 0x20 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x24 (size before relaxing) + 0x00000000400e25ac ble_l2cap_sig_init + .text.ble_gap_call_event_cb + 0x00000000400e25cc 0x2d esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x00000000400e25f9 0x3 + .text.ble_gap_is_preempted + 0x00000000400e25fc 0x2e esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x00000000400e262a 0x2 + .text.ble_gap_master_ticks_until_exp + 0x00000000400e262c 0x3e esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x00000000400e266a 0x2 + .text.ble_gap_slave_ticks_until_exp + 0x00000000400e266c 0x46 esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x00000000400e26b2 0x2 + .text.ble_gap_update_next_exp + 0x00000000400e26b4 0x3d esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x00000000400e26f1 0x3 + .text.ble_gap_adv_active_instance + 0x00000000400e26f4 0x19 esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x00000000400e270d 0x3 + .text.ble_gap_accept_master_conn + 0x00000000400e2710 0x15 esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x00000000400e2725 0x3 + .text.ble_gap_accept_slave_conn + 0x00000000400e2728 0x30 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_update_entry_find + 0x00000000400e2758 0x22 esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x00000000400e277a 0x2 + .text.ble_gap_validate_conn_params + 0x00000000400e277c 0x52 esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x00000000400e27ce 0x2 + .text.ble_gap_event_listener_call + 0x00000000400e27d0 0x1e esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x00000000400e27ee 0x2 + .text.ble_gap_extract_conn_cb + 0x00000000400e27f0 0x31 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x39 (size before relaxing) + *fill* 0x00000000400e2821 0x3 + .text.ble_gap_call_conn_event_cb + 0x00000000400e2824 0x1e esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x22 (size before relaxing) + *fill* 0x00000000400e2842 0x2 + .text.ble_gap_fill_conn_desc + 0x00000000400e2844 0xb3 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0xc3 (size before relaxing) + *fill* 0x00000000400e28f7 0x1 + .text.ble_gap_conn_to_snapshot + 0x00000000400e28f8 0x19 esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x00000000400e2911 0x3 + .text.ble_gap_find_snapshot + 0x00000000400e2914 0x24 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x30 (size before relaxing) + .text.ble_gap_rd_rem_sup_feat_tx + 0x00000000400e2938 0x18 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x1c (size before relaxing) + .text.ble_gap_conn_cancel_tx + 0x00000000400e2950 0x18 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_disc_enable_tx + 0x00000000400e2968 0x28 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_disc_disable_tx + 0x00000000400e2990 0x11 esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x00000000400e29a1 0x3 + .text.ble_gap_adv_enable_tx + 0x00000000400e29a4 0x20 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_adv_params_tx + 0x00000000400e29c4 0xb8 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0xbc (size before relaxing) + .text.ble_gap_tx_param_pos_reply + 0x00000000400e2a7c 0x3c esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x40 (size before relaxing) + .text.ble_gap_tx_param_neg_reply + 0x00000000400e2ab8 0x1e esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x00000000400e2ad6 0x2 + .text.ble_gap_update_tx + 0x00000000400e2ad8 0x3c esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x40 (size before relaxing) + .text.ble_gap_update_entry_remove + 0x00000000400e2b14 0x2b esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x2e (size before relaxing) + *fill* 0x00000000400e2b3f 0x1 + .text.ble_gap_slave_reset_state + 0x00000000400e2b40 0x23 esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x00000000400e2b63 0x1 + .text.ble_gap_slave_extract_cb + 0x00000000400e2b64 0x21 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x29 (size before relaxing) + *fill* 0x00000000400e2b85 0x3 + .text.ble_gap_adv_finished + 0x00000000400e2b88 0x43 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x4b (size before relaxing) + *fill* 0x00000000400e2bcb 0x1 + .text.ble_gap_slave_timer + 0x00000000400e2bcc 0x31 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x3d (size before relaxing) + *fill* 0x00000000400e2bfd 0x3 + .text.ble_gap_master_reset_state + 0x00000000400e2c00 0x26 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x2a (size before relaxing) + *fill* 0x00000000400e2c26 0x2 + .text.ble_gap_master_extract_state + 0x00000000400e2c28 0x26 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x2e (size before relaxing) + *fill* 0x00000000400e2c4e 0x2 + .text.ble_gap_master_connect_failure + 0x00000000400e2c50 0x4a esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x00000000400e2c9a 0x2 + .text.ble_gap_disc_complete + 0x00000000400e2c9c 0x4c esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x53 (size before relaxing) + *fill* 0x00000000400e2ce8 0x0 + .text.ble_gap_master_timer + 0x00000000400e2ce8 0x7d esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x00000000400e2d65 0x3 + .text.ble_gap_disc_report + 0x00000000400e2d68 0x59 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x5c (size before relaxing) + *fill* 0x00000000400e2dc1 0x3 + .text.ble_gap_master_connect_cancelled + 0x00000000400e2dc4 0x57 esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x00000000400e2e1b 0x1 + .text.ble_gap_master_failed + 0x00000000400e2e1c 0x20 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x2a (size before relaxing) + *fill* 0x00000000400e2e3c 0x0 + .text.ble_gap_slave_set_timer + 0x00000000400e2e3c 0x28 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_update_entry_free + 0x00000000400e2e64 0xf esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x12 (size before relaxing) + *fill* 0x00000000400e2e73 0x1 + .text.ble_gap_update_timer + 0x00000000400e2e74 0x30 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x43 (size before relaxing) + *fill* 0x00000000400e2ea4 0x0 + .text.ble_gap_rx_adv_report_sanity_check + 0x00000000400e2ea4 0x4a esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x4e (size before relaxing) + *fill* 0x00000000400e2eee 0x2 + .text.ble_gap_log_adv + 0x00000000400e2ef0 0x8a esp-idf/bt/libbt.a(ble_gap.c.obj) + 0xa2 (size before relaxing) + *fill* 0x00000000400e2f7a 0x2 + .text.ble_gap_log_update + 0x00000000400e2f7c 0x3a esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x3e (size before relaxing) + *fill* 0x00000000400e2fb6 0x2 + .text.ble_addr_cmp + 0x00000000400e2fb8 0x20 esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_adv_validate + 0x00000000400e2fd8 0x8e esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x92 (size before relaxing) + *fill* 0x00000000400e3066 0x2 + .text.ble_gap_update_entry_alloc + 0x00000000400e3068 0x1c esp-idf/bt/libbt.a(ble_gap.c.obj) + .text.ble_gap_conn_find + 0x00000000400e3084 0x39 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x41 (size before relaxing) + 0x00000000400e3084 ble_gap_conn_find + *fill* 0x00000000400e30bd 0x3 + .text.ble_gap_master_in_progress + 0x00000000400e30c0 0x12 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x00000000400e30c0 ble_gap_master_in_progress + *fill* 0x00000000400e30d2 0x2 + .text.ble_gap_rx_adv_report + 0x00000000400e30d4 0x16 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x1a (size before relaxing) + 0x00000000400e30d4 ble_gap_rx_adv_report + *fill* 0x00000000400e30ea 0x2 + .text.ble_gap_rx_rd_rem_sup_feat_complete + 0x00000000400e30ec 0x31 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x38 (size before relaxing) + 0x00000000400e30ec ble_gap_rx_rd_rem_sup_feat_complete + *fill* 0x00000000400e311d 0x3 + .text.ble_gap_rx_l2cap_update_req + 0x00000000400e3120 0x38 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x00000000400e3120 ble_gap_rx_l2cap_update_req + .text.ble_gap_rx_phy_update_complete + 0x00000000400e3158 0x54 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x58 (size before relaxing) + 0x00000000400e3158 ble_gap_rx_phy_update_complete + .text.ble_gap_timer + 0x00000000400e31ac 0x1b esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x27 (size before relaxing) + 0x00000000400e31ac ble_gap_timer + *fill* 0x00000000400e31c7 0x1 + .text.ble_gap_adv_start + 0x00000000400e31c8 0x105 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x12d (size before relaxing) + 0x00000000400e31c8 ble_gap_adv_start + *fill* 0x00000000400e32cd 0x3 + .text.ble_gap_adv_set_data + 0x00000000400e32d0 0x4f esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x53 (size before relaxing) + 0x00000000400e32d0 ble_gap_adv_set_data + *fill* 0x00000000400e331f 0x1 + .text.ble_gap_adv_rsp_set_data + 0x00000000400e3320 0x50 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x54 (size before relaxing) + 0x00000000400e3320 ble_gap_adv_rsp_set_data + .text.ble_gap_adv_set_fields + 0x00000000400e3370 0x2a esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x32 (size before relaxing) + 0x00000000400e3370 ble_gap_adv_set_fields + *fill* 0x00000000400e339a 0x2 + .text.ble_gap_adv_rsp_set_fields + 0x00000000400e339c 0x1e esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x22 (size before relaxing) + 0x00000000400e339c ble_gap_adv_rsp_set_fields + *fill* 0x00000000400e33ba 0x2 + .text.ble_gap_adv_active + 0x00000000400e33bc 0xc esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x10 (size before relaxing) + 0x00000000400e33bc ble_gap_adv_active + .text.ble_gap_rx_conn_complete + 0x00000000400e33c8 0x1dc esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x21c (size before relaxing) + 0x00000000400e33c8 ble_gap_rx_conn_complete + .text.ble_gap_adv_stop_no_lock + 0x00000000400e35a4 0x2e esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x3e (size before relaxing) + *fill* 0x00000000400e35d2 0x2 + .text.ble_gap_adv_stop + 0x00000000400e35d4 0x1c esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x28 (size before relaxing) + 0x00000000400e35d4 ble_gap_adv_stop + .text.ble_gap_disc_active + 0x00000000400e35f0 0x14 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x00000000400e35f0 ble_gap_disc_active + .text.ble_gap_disc_cancel_no_lock + 0x00000000400e3604 0x1c esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x24 (size before relaxing) + .text.ble_gap_conn_active + 0x00000000400e3620 0x15 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x00000000400e3620 ble_gap_conn_active + *fill* 0x00000000400e3635 0x3 + .text.ble_gap_conn_cancel_no_lock + 0x00000000400e3638 0x38 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x44 (size before relaxing) + .text.ble_gap_terminate_with_conn + 0x00000000400e3670 0x52 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x5a (size before relaxing) + 0x00000000400e3670 ble_gap_terminate_with_conn + *fill* 0x00000000400e36c2 0x2 + .text.ble_gap_terminate + 0x00000000400e36c4 0x30 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x40 (size before relaxing) + 0x00000000400e36c4 ble_gap_terminate + .text.ble_gap_update_notify + 0x00000000400e36f4 0x46 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x4e (size before relaxing) + *fill* 0x00000000400e373a 0x2 + .text.ble_gap_conn_broken + 0x00000000400e373c 0x86 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0xae (size before relaxing) + 0x00000000400e373c ble_gap_conn_broken + *fill* 0x00000000400e37c2 0x2 + .text.ble_gap_rx_disconn_complete + 0x00000000400e37c4 0x70 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x78 (size before relaxing) + 0x00000000400e37c4 ble_gap_rx_disconn_complete + .text.ble_gap_reset_state + 0x00000000400e3834 0x2f esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x3e (size before relaxing) + 0x00000000400e3834 ble_gap_reset_state + *fill* 0x00000000400e3863 0x1 + .text.ble_gap_rx_update_complete + 0x00000000400e3864 0xf8 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x10c (size before relaxing) + 0x00000000400e3864 ble_gap_rx_update_complete + .text.ble_gap_update_l2cap_cb + 0x00000000400e395c 0x28 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x34 (size before relaxing) + .text.ble_gap_update_failed + 0x00000000400e3984 0x1e esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x2e (size before relaxing) + *fill* 0x00000000400e39a2 0x2 + .text.ble_gap_rx_param_req + 0x00000000400e39a4 0xb3 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0xbe (size before relaxing) + 0x00000000400e39a4 ble_gap_rx_param_req + *fill* 0x00000000400e3a57 0x1 + .text.ble_gap_update_params + 0x00000000400e3a58 0x125 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x15d (size before relaxing) + 0x00000000400e3a58 ble_gap_update_params + *fill* 0x00000000400e3b7d 0x3 + .text.ble_gap_unpair + 0x00000000400e3b80 0x5a esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x6e (size before relaxing) + 0x00000000400e3b80 ble_gap_unpair + *fill* 0x00000000400e3bda 0x2 + .text.ble_gap_unpair_oldest_peer + 0x00000000400e3bdc 0x2e esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x36 (size before relaxing) + 0x00000000400e3bdc ble_gap_unpair_oldest_peer + *fill* 0x00000000400e3c0a 0x2 + .text.ble_gap_unpair_oldest_except + 0x00000000400e3c0c 0x56 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x5e (size before relaxing) + 0x00000000400e3c0c ble_gap_unpair_oldest_except + *fill* 0x00000000400e3c62 0x2 + .text.ble_gap_passkey_event + 0x00000000400e3c64 0x3c esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x00000000400e3c64 ble_gap_passkey_event + .text.ble_gap_enc_event + 0x00000000400e3ca0 0x54 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x5c (size before relaxing) + 0x00000000400e3ca0 ble_gap_enc_event + .text.ble_gap_identity_event + 0x00000000400e3cf4 0x34 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x00000000400e3cf4 ble_gap_identity_event + .text.ble_gap_repeat_pairing_event + 0x00000000400e3d28 0x45 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x00000000400e3d28 ble_gap_repeat_pairing_event + *fill* 0x00000000400e3d6d 0x3 + .text.ble_gap_notify_rx_event + 0x00000000400e3d70 0x54 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x5c (size before relaxing) + 0x00000000400e3d70 ble_gap_notify_rx_event + .text.ble_gap_notify_tx_event + 0x00000000400e3dc4 0x50 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x54 (size before relaxing) + 0x00000000400e3dc4 ble_gap_notify_tx_event + .text.ble_gap_subscribe_event + 0x00000000400e3e14 0x98 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x9c (size before relaxing) + 0x00000000400e3e14 ble_gap_subscribe_event + .text.ble_gap_mtu_event + 0x00000000400e3eac 0x40 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x44 (size before relaxing) + 0x00000000400e3eac ble_gap_mtu_event + .text.ble_gap_preempt_no_lock + 0x00000000400e3eec 0x38 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x3b (size before relaxing) + 0x00000000400e3eec ble_gap_preempt_no_lock + *fill* 0x00000000400e3f24 0x0 + .text.ble_gap_preempt + 0x00000000400e3f24 0x1a esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x20 (size before relaxing) + 0x00000000400e3f24 ble_gap_preempt + *fill* 0x00000000400e3f3e 0x2 + .text.ble_gap_preempt_done + 0x00000000400e3f40 0xca esp-idf/bt/libbt.a(ble_gap.c.obj) + 0xd6 (size before relaxing) + 0x00000000400e3f40 ble_gap_preempt_done + *fill* 0x00000000400e400a 0x2 + .text.ble_gap_event_listener_register + 0x00000000400e400c 0x58 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x00000000400e400c ble_gap_event_listener_register + .text.ble_gap_event_listener_unregister + 0x00000000400e4064 0x3a esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x00000000400e4064 ble_gap_event_listener_unregister + *fill* 0x00000000400e409e 0x2 + .text.ble_gap_init + 0x00000000400e40a0 0x7e esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x82 (size before relaxing) + 0x00000000400e40a0 ble_gap_init + *fill* 0x00000000400e411e 0x2 + .text.ble_gap_deinit + 0x00000000400e4120 0x13 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x00000000400e4120 ble_gap_deinit + *fill* 0x00000000400e4133 0x1 + .text.ble_uuid_init_from_buf + 0x00000000400e4134 0x51 esp-idf/bt/libbt.a(ble_uuid.c.obj) + 0x00000000400e4134 ble_uuid_init_from_buf + *fill* 0x00000000400e4185 0x3 + .text.ble_uuid_cmp + 0x00000000400e4188 0x4c esp-idf/bt/libbt.a(ble_uuid.c.obj) + 0x00000000400e4188 ble_uuid_cmp + .text.ble_uuid_init_from_att_buf + 0x00000000400e41d4 0x3a esp-idf/bt/libbt.a(ble_uuid.c.obj) + 0x00000000400e41d4 ble_uuid_init_from_att_buf + *fill* 0x00000000400e420e 0x2 + .text.ble_uuid_init_from_att_mbuf + 0x00000000400e4210 0x20 esp-idf/bt/libbt.a(ble_uuid.c.obj) + 0x24 (size before relaxing) + 0x00000000400e4210 ble_uuid_init_from_att_mbuf + .text.ble_uuid_flat + 0x00000000400e4230 0x55 esp-idf/bt/libbt.a(ble_uuid.c.obj) + 0x00000000400e4230 ble_uuid_flat + *fill* 0x00000000400e4285 0x3 + .text.ble_uuid_to_mbuf + 0x00000000400e4288 0x25 esp-idf/bt/libbt.a(ble_uuid.c.obj) + 0x2d (size before relaxing) + 0x00000000400e4288 ble_uuid_to_mbuf + *fill* 0x00000000400e42ad 0x3 + .text.ble_hs_pvcy_add_entry_hci + 0x00000000400e42b0 0x42 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + *fill* 0x00000000400e42f2 0x2 + .text.ble_hs_pvcy_set_addr_timeout + 0x00000000400e42f4 0xc esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + 0x10 (size before relaxing) + .text.ble_hs_pvcy_remove_entry + 0x00000000400e4300 0x26 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + 0x2a (size before relaxing) + 0x00000000400e4300 ble_hs_pvcy_remove_entry + *fill* 0x00000000400e4326 0x2 + .text.ble_hs_pvcy_add_entry + 0x00000000400e4328 0x14 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + 0x00000000400e4328 ble_hs_pvcy_add_entry + .text.ble_hs_pvcy_ensure_started + 0x00000000400e433c 0x2a esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + 0x2e (size before relaxing) + 0x00000000400e433c ble_hs_pvcy_ensure_started + *fill* 0x00000000400e4366 0x2 + .text.ble_hs_pvcy_set_our_irk + 0x00000000400e4368 0x84 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + 0x98 (size before relaxing) + 0x00000000400e4368 ble_hs_pvcy_set_our_irk + .text.ble_hs_pvcy_our_irk + 0x00000000400e43ec 0xc esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + 0x00000000400e43ec ble_hs_pvcy_our_irk + .text.ble_hs_pvcy_enabled + 0x00000000400e43f8 0x12 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + 0x00000000400e43f8 ble_hs_pvcy_enabled + *fill* 0x00000000400e440a 0x2 + .text.ble_hs_flow_tx_num_comp_pkts + 0x00000000400e440c 0x4d esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + 0x51 (size before relaxing) + *fill* 0x00000000400e4459 0x3 + .text.ble_hs_flow_event_cb + 0x00000000400e445c 0x25 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + 0x30 (size before relaxing) + *fill* 0x00000000400e4481 0x3 + .text.ble_hs_flow_inc_completed_pkts + 0x00000000400e4484 0x74 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + 0x78 (size before relaxing) + .text.ble_hs_flow_acl_free + 0x00000000400e44f8 0x3a esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + 0x46 (size before relaxing) + *fill* 0x00000000400e4532 0x2 + .text.ble_hs_flow_connection_broken + 0x00000000400e4534 0xf esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + 0x17 (size before relaxing) + 0x00000000400e4534 ble_hs_flow_connection_broken + *fill* 0x00000000400e4543 0x1 + .text.ble_hs_flow_track_data_mbuf + 0x00000000400e4544 0x24 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + 0x00000000400e4544 ble_hs_flow_track_data_mbuf + .text.ble_hs_flow_startup + 0x00000000400e4568 0xaa esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + 0xba (size before relaxing) + 0x00000000400e4568 ble_hs_flow_startup + *fill* 0x00000000400e4612 0x2 + .text.ble_hs_flow_init + 0x00000000400e4614 0x2f esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + 0x00000000400e4614 ble_hs_flow_init + *fill* 0x00000000400e4643 0x1 + .text.ble_hs_flow_deinit + 0x00000000400e4644 0x1e esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + 0x00000000400e4644 ble_hs_flow_deinit + *fill* 0x00000000400e4662 0x2 + .text.ble_l2cap_get_mtu + 0x00000000400e4664 0x19 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x1d (size before relaxing) + *fill* 0x00000000400e467d 0x3 + .text.ble_l2cap_append_rx + 0x00000000400e4680 0x1f esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x23 (size before relaxing) + *fill* 0x00000000400e469f 0x1 + .text.ble_l2cap_chan_alloc + 0x00000000400e46a0 0x22 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x00000000400e46a0 ble_l2cap_chan_alloc + *fill* 0x00000000400e46c2 0x2 + .text.ble_l2cap_chan_free + 0x00000000400e46c4 0x16 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x1a (size before relaxing) + 0x00000000400e46c4 ble_l2cap_chan_free + *fill* 0x00000000400e46da 0x2 + .text.ble_l2cap_parse_hdr + 0x00000000400e46dc 0x32 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x00000000400e46dc ble_l2cap_parse_hdr + *fill* 0x00000000400e470e 0x2 + .text.ble_l2cap_prepend_hdr + 0x00000000400e4710 0x42 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x46 (size before relaxing) + 0x00000000400e4710 ble_l2cap_prepend_hdr + *fill* 0x00000000400e4752 0x2 + .text.ble_l2cap_get_conn_handle + 0x00000000400e4754 0x11 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x00000000400e4754 ble_l2cap_get_conn_handle + *fill* 0x00000000400e4765 0x3 + .text.ble_l2cap_remove_rx + 0x00000000400e4768 0x13 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x17 (size before relaxing) + 0x00000000400e4768 ble_l2cap_remove_rx + *fill* 0x00000000400e477b 0x1 + .text.ble_l2cap_rx_payload + 0x00000000400e477c 0x59 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x5d (size before relaxing) + *fill* 0x00000000400e47d5 0x3 + .text.ble_l2cap_rx + 0x00000000400e47d8 0xe9 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0xf8 (size before relaxing) + 0x00000000400e47d8 ble_l2cap_rx + *fill* 0x00000000400e48c1 0x3 + .text.ble_l2cap_tx + 0x00000000400e48c4 0x42 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x46 (size before relaxing) + 0x00000000400e48c4 ble_l2cap_tx + *fill* 0x00000000400e4906 0x2 + .text.ble_l2cap_init + 0x00000000400e4908 0x2a esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x32 (size before relaxing) + 0x00000000400e4908 ble_l2cap_init + *fill* 0x00000000400e4932 0x2 + .text.ble_hs_misc_restore_one_irk + 0x00000000400e4934 0x2e esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + 0x36 (size before relaxing) + *fill* 0x00000000400e4962 0x2 + .text.ble_hs_misc_conn_chan_find + 0x00000000400e4964 0x32 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + 0x36 (size before relaxing) + 0x00000000400e4964 ble_hs_misc_conn_chan_find + *fill* 0x00000000400e4996 0x2 + .text.ble_hs_misc_conn_chan_find_reqd + 0x00000000400e4998 0x22 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + 0x26 (size before relaxing) + 0x00000000400e4998 ble_hs_misc_conn_chan_find_reqd + *fill* 0x00000000400e49ba 0x2 + .text.ble_hs_misc_restore_irks + 0x00000000400e49bc 0x14 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + 0x00000000400e49bc ble_hs_misc_restore_irks + .text.ble_gatts_find_svc_entry_idx + 0x00000000400e49d0 0x26 esp-idf/bt/libbt.a(ble_gatts.c.obj) + *fill* 0x00000000400e49f6 0x2 + .text.ble_gatts_svc_incs_satisfied + 0x00000000400e49f8 0x40 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .text.ble_gatts_clt_cfg_find_idx + 0x00000000400e4a38 0x21 esp-idf/bt/libbt.a(ble_gatts.c.obj) + *fill* 0x00000000400e4a59 0x3 + .text.ble_gatts_clt_cfg_find + 0x00000000400e4a5c 0x1a esp-idf/bt/libbt.a(ble_gatts.c.obj) + *fill* 0x00000000400e4a76 0x2 + .text.ble_gatts_svc_type_to_uuid + 0x00000000400e4a78 0x25 esp-idf/bt/libbt.a(ble_gatts.c.obj) + *fill* 0x00000000400e4a9d 0x3 + .text.ble_gatts_clt_cfg_size + 0x00000000400e4aa0 0xd esp-idf/bt/libbt.a(ble_gatts.c.obj) + *fill* 0x00000000400e4aad 0x3 + .text.ble_gatts_count_resources + 0x00000000400e4ab0 0xf5 esp-idf/bt/libbt.a(ble_gatts.c.obj) + *fill* 0x00000000400e4ba5 0x3 + .text.ble_gatts_clt_cfg_access_locked + 0x00000000400e4ba8 0xf3 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0xf7 (size before relaxing) + *fill* 0x00000000400e4c9b 0x1 + .text.ble_gatts_subscribe_event + 0x00000000400e4c9c 0x26 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x2a (size before relaxing) + *fill* 0x00000000400e4cc2 0x2 + .text.ble_gatts_clt_cfg_access + 0x00000000400e4cc4 0x87 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0xa2 (size before relaxing) + 0x00000000400e4cc4 ble_gatts_clt_cfg_access + *fill* 0x00000000400e4d4b 0x1 + .text.ble_gatts_register_inc + 0x00000000400e4d4c 0x18 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x1c (size before relaxing) + .text.ble_gatts_register_clt_cfg_dsc + 0x00000000400e4d64 0x18 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x1c (size before relaxing) + .text.ble_gatts_register_dsc + 0x00000000400e4d7c 0x4a esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x4e (size before relaxing) + *fill* 0x00000000400e4dc6 0x2 + .text.ble_gatts_register_chr + 0x00000000400e4dc8 0xe4 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0xf0 (size before relaxing) + .text.ble_gatts_register_svc + 0x00000000400e4eac 0xb5 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0xc5 (size before relaxing) + *fill* 0x00000000400e4f61 0x3 + .text.ble_gatts_register_round + 0x00000000400e4f64 0x5f esp-idf/bt/libbt.a(ble_gatts.c.obj) + *fill* 0x00000000400e4fc3 0x1 + .text.ble_gatts_svc_access + 0x00000000400e4fc4 0x29 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x2d (size before relaxing) + *fill* 0x00000000400e4fed 0x3 + .text.ble_gatts_chr_def_access + 0x00000000400e4ff0 0x52 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x5e (size before relaxing) + *fill* 0x00000000400e5042 0x2 + .text.ble_gatts_inc_access + 0x00000000400e5044 0x55 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x5d (size before relaxing) + *fill* 0x00000000400e5099 0x3 + .text.ble_gatts_val_access + 0x00000000400e509c 0xa2 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0xaa (size before relaxing) + *fill* 0x00000000400e513e 0x2 + .text.ble_gatts_chr_val_access + 0x00000000400e5140 0x35 esp-idf/bt/libbt.a(ble_gatts.c.obj) + *fill* 0x00000000400e5175 0x3 + .text.ble_gatts_dsc_access + 0x00000000400e5178 0x35 esp-idf/bt/libbt.a(ble_gatts.c.obj) + *fill* 0x00000000400e51ad 0x3 + .text.ble_gatts_free_mem + 0x00000000400e51b0 0x1d esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x21 (size before relaxing) + *fill* 0x00000000400e51cd 0x3 + .text.ble_gatts_free_svc_defs + 0x00000000400e51d0 0x19 esp-idf/bt/libbt.a(ble_gatts.c.obj) + *fill* 0x00000000400e51e9 0x3 + .text.ble_gatts_mutable + 0x00000000400e51ec 0x2a esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x32 (size before relaxing) + *fill* 0x00000000400e5216 0x2 + .text.ble_gatts_tx_notifications_one_chr + 0x00000000400e5218 0x6e esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x7a (size before relaxing) + *fill* 0x00000000400e5286 0x2 + .text.ble_gatts_register_svcs + 0x00000000400e5288 0x6a esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x00000000400e5288 ble_gatts_register_svcs + *fill* 0x00000000400e52f2 0x2 + .text.ble_gatts_connection_broken + 0x00000000400e52f4 0x5f esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x6a (size before relaxing) + 0x00000000400e52f4 ble_gatts_connection_broken + *fill* 0x00000000400e5353 0x1 + .text.ble_gatts_stop + 0x00000000400e5354 0x23 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x2b (size before relaxing) + 0x00000000400e5354 ble_gatts_stop + *fill* 0x00000000400e5377 0x1 + .text.ble_gatts_start + 0x00000000400e5378 0x135 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x164 (size before relaxing) + 0x00000000400e5378 ble_gatts_start + *fill* 0x00000000400e54ad 0x3 + .text.ble_gatts_conn_can_alloc + 0x00000000400e54b0 0x21 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x00000000400e54b0 ble_gatts_conn_can_alloc + *fill* 0x00000000400e54d1 0x3 + .text.ble_gatts_conn_init + 0x00000000400e54d4 0x48 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x4c (size before relaxing) + 0x00000000400e54d4 ble_gatts_conn_init + .text.ble_gatts_send_next_indicate + 0x00000000400e551c 0x62 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x6a (size before relaxing) + 0x00000000400e551c ble_gatts_send_next_indicate + *fill* 0x00000000400e557e 0x2 + .text.ble_gatts_rx_indicate_ack + 0x00000000400e5580 0xc2 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0xce (size before relaxing) + 0x00000000400e5580 ble_gatts_rx_indicate_ack + *fill* 0x00000000400e5642 0x2 + .text.ble_gatts_tx_notifications + 0x00000000400e5644 0x25 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x00000000400e5644 ble_gatts_tx_notifications + *fill* 0x00000000400e5669 0x3 + .text.ble_gatts_bonding_established + 0x00000000400e566c 0x6d esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x84 (size before relaxing) + 0x00000000400e566c ble_gatts_bonding_established + *fill* 0x00000000400e56d9 0x3 + .text.ble_gatts_bonding_restored + 0x00000000400e56dc 0xd6 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0xf6 (size before relaxing) + 0x00000000400e56dc ble_gatts_bonding_restored + *fill* 0x00000000400e57b2 0x2 + .text.ble_gatts_add_svcs + 0x00000000400e57b4 0x40 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x4b (size before relaxing) + 0x00000000400e57b4 ble_gatts_add_svcs + *fill* 0x00000000400e57f4 0x0 + .text.ble_gatts_count_cfg + 0x00000000400e57f4 0x46 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x00000000400e57f4 ble_gatts_count_cfg + *fill* 0x00000000400e583a 0x2 + .text.ble_gatts_init + 0x00000000400e583c 0x11 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x00000000400e583c ble_gatts_init + *fill* 0x00000000400e584d 0x3 + .text.ble_hs_adv_set_hdr + 0x00000000400e5850 0x66 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + 0x6a (size before relaxing) + *fill* 0x00000000400e58b6 0x2 + .text.ble_hs_adv_set_flat_mbuf + 0x00000000400e58b8 0x4a esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + 0x4e (size before relaxing) + *fill* 0x00000000400e5902 0x2 + .text.ble_hs_adv_set_array_uuid16 + 0x00000000400e5904 0x5c esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .text.ble_hs_adv_set_array_uuid128 + 0x00000000400e5960 0x5c esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + 0x68 (size before relaxing) + .text.ble_hs_adv_set_array_uuid32 + 0x00000000400e59bc 0x64 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + 0x68 (size before relaxing) + .text.ble_hs_adv_set_array16 + 0x00000000400e5a20 0x68 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + 0x6c (size before relaxing) + .text.adv_set_fields + 0x00000000400e5a88 0x20c esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + 0x23c (size before relaxing) + .text.ble_hs_adv_set_fields + 0x00000000400e5c94 0x18 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + 0x00000000400e5c94 ble_hs_adv_set_fields + .text.ble_hs_adv_find_field + 0x00000000400e5cac 0x2c esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + 0x00000000400e5cac ble_hs_adv_find_field + .text.ble_hs_hci_lock + 0x00000000400e5cd8 0x1e esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + *fill* 0x00000000400e5cf6 0x2 + .text.ble_hs_hci_unlock + 0x00000000400e5cf8 0x13 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + *fill* 0x00000000400e5d0b 0x1 + .text.ble_hs_hci_wait_for_ack + 0x00000000400e5d0c 0x2e esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + *fill* 0x00000000400e5d3a 0x2 + .text.ble_hs_hci_max_acl_payload_sz + 0x00000000400e5d3c 0xb esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + *fill* 0x00000000400e5d47 0x1 + .text.ble_hs_hci_rx_ack + 0x00000000400e5d48 0x32 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x36 (size before relaxing) + *fill* 0x00000000400e5d7a 0x2 + .text.ble_hs_hci_process_ack + 0x00000000400e5d7c 0x78 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .text.ble_hs_hci_frag_alloc + 0x00000000400e5df4 0x20 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x23 (size before relaxing) + *fill* 0x00000000400e5e14 0x0 + .text.ble_hs_hci_acl_hdr_prepend + 0x00000000400e5e14 0x5e esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x66 (size before relaxing) + *fill* 0x00000000400e5e72 0x2 + .text.ble_hs_hci_set_buf_sz + 0x00000000400e5e74 0x36 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x00000000400e5e74 ble_hs_hci_set_buf_sz + *fill* 0x00000000400e5eaa 0x2 + .text.ble_hs_hci_add_avail_pkts + 0x00000000400e5eac 0x26 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x2a (size before relaxing) + 0x00000000400e5eac ble_hs_hci_add_avail_pkts + *fill* 0x00000000400e5ed2 0x2 + .text.ble_hs_hci_cmd_tx_no_rsp + 0x00000000400e5ed4 0x1e esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x26 (size before relaxing) + 0x00000000400e5ed4 ble_hs_hci_cmd_tx_no_rsp + *fill* 0x00000000400e5ef2 0x2 + .text.ble_hs_hci_cmd_tx + 0x00000000400e5ef4 0x6d esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x88 (size before relaxing) + 0x00000000400e5ef4 ble_hs_hci_cmd_tx + *fill* 0x00000000400e5f61 0x3 + .text.ble_hs_hci_rx_evt + 0x00000000400e5f64 0x57 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x5a (size before relaxing) + 0x00000000400e5f64 ble_hs_hci_rx_evt + *fill* 0x00000000400e5fbb 0x1 + .text.ble_hs_hci_acl_tx_now + 0x00000000400e5fbc 0xb4 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0xc4 (size before relaxing) + 0x00000000400e5fbc ble_hs_hci_acl_tx_now + .text.ble_hs_hci_acl_tx + 0x00000000400e6070 0x1a esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x00000000400e6070 ble_hs_hci_acl_tx + *fill* 0x00000000400e608a 0x2 + .text.ble_hs_hci_set_le_supported_feat + 0x00000000400e608c 0xa esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x00000000400e608c ble_hs_hci_set_le_supported_feat + *fill* 0x00000000400e6096 0x2 + .text.ble_hs_hci_set_hci_version + 0x00000000400e6098 0xb esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x00000000400e6098 ble_hs_hci_set_hci_version + *fill* 0x00000000400e60a3 0x1 + .text.ble_hs_hci_get_hci_version + 0x00000000400e60a4 0xb esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x00000000400e60a4 ble_hs_hci_get_hci_version + *fill* 0x00000000400e60af 0x1 + .text.ble_hs_hci_init + 0x00000000400e60b0 0x36 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x3a (size before relaxing) + 0x00000000400e60b0 ble_hs_hci_init + *fill* 0x00000000400e60e6 0x2 + .text.ble_hs_hci_deinit + 0x00000000400e60e8 0x1e esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x00000000400e60e8 ble_hs_hci_deinit + *fill* 0x00000000400e6106 0x2 + .text.ble_hs_hci_util_read_adv_tx_pwr + 0x00000000400e6108 0x3e esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + 0x46 (size before relaxing) + 0x00000000400e6108 ble_hs_hci_util_read_adv_tx_pwr + *fill* 0x00000000400e6146 0x2 + .text.ble_hs_hci_util_rand + 0x00000000400e6148 0x36 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + 0x3a (size before relaxing) + 0x00000000400e6148 ble_hs_hci_util_rand + *fill* 0x00000000400e617e 0x2 + .text.ble_hs_hci_util_set_random_addr + 0x00000000400e6180 0x26 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + 0x00000000400e6180 ble_hs_hci_util_set_random_addr + *fill* 0x00000000400e61a6 0x2 + .text.ble_hs_hci_util_data_hdr_strip + 0x00000000400e61a8 0x3a esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + 0x42 (size before relaxing) + 0x00000000400e61a8 ble_hs_hci_util_data_hdr_strip + *fill* 0x00000000400e61e2 0x2 + .text.is_ble_hs_resolv_enabled + 0x00000000400e61e4 0xb esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + *fill* 0x00000000400e61ef 0x1 + .text.ble_hs_is_on_resolv_list + 0x00000000400e61f0 0x36 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + *fill* 0x00000000400e6226 0x2 + .text.ble_rpa_find_peer_dev_by_irk + 0x00000000400e6228 0x36 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + *fill* 0x00000000400e625e 0x2 + .text.ble_rpa_peer_dev_rec_clear_all + 0x00000000400e6260 0x4e esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + *fill* 0x00000000400e62ae 0x2 + .text.ble_hs_rand_prand_get + 0x00000000400e62b0 0x3e esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x42 (size before relaxing) + *fill* 0x00000000400e62ee 0x2 + .text.ble_hs_resolv_gen_priv_addr + 0x00000000400e62f0 0xa0 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0xa8 (size before relaxing) + .text.ble_rpa_remove_peer_dev_rec + 0x00000000400e6390 0x9a esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x00000000400e6390 ble_rpa_remove_peer_dev_rec + *fill* 0x00000000400e642a 0x2 + .text.ble_rpa_find_peer_dev_rec + 0x00000000400e642c 0x50 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x00000000400e642c ble_rpa_find_peer_dev_rec + .text.ble_rpa_replace_id_with_rand_addr + 0x00000000400e647c 0x78 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x80 (size before relaxing) + .text.ble_rpa_resolv_add_peer_rec + 0x00000000400e64f4 0x48 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x00000000400e64f4 ble_rpa_resolv_add_peer_rec + .text.ble_host_rpa_enabled + 0x00000000400e653c 0x1e esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x22 (size before relaxing) + 0x00000000400e653c ble_host_rpa_enabled + *fill* 0x00000000400e655a 0x2 + .text.ble_hs_gen_own_private_rnd + 0x00000000400e655c 0x25 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x2d (size before relaxing) + 0x00000000400e655c ble_hs_gen_own_private_rnd + *fill* 0x00000000400e6581 0x3 + .text.ble_hs_resolv_rpa_timer_cb + 0x00000000400e6584 0x34 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x3c (size before relaxing) + .text.ble_hs_get_rpa_local + 0x00000000400e65b8 0x8 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x00000000400e65b8 ble_hs_get_rpa_local + .text.ble_hs_resolv_list_find + 0x00000000400e65c0 0x4c esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x00000000400e65c0 ble_hs_resolv_list_find + .text.ble_hs_resolv_list_add + 0x00000000400e660c 0xd6 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0xea (size before relaxing) + 0x00000000400e660c ble_hs_resolv_list_add + *fill* 0x00000000400e66e2 0x2 + .text.ble_hs_resolv_list_rmv + 0x00000000400e66e4 0x56 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x00000000400e66e4 ble_hs_resolv_list_rmv + *fill* 0x00000000400e673a 0x2 + .text.ble_hs_resolv_list_clear_all + 0x00000000400e673c 0x21 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x00000000400e673c ble_hs_resolv_list_clear_all + *fill* 0x00000000400e675d 0x3 + .text.ble_hs_resolv_enable + 0x00000000400e6760 0x3e esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x00000000400e6760 ble_hs_resolv_enable + *fill* 0x00000000400e679e 0x2 + .text.ble_hs_resolv_set_rpa_tmo + 0x00000000400e67a0 0x56 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x5a (size before relaxing) + 0x00000000400e67a0 ble_hs_resolv_set_rpa_tmo + *fill* 0x00000000400e67f6 0x2 + .text.ble_hs_resolv_rpa + 0x00000000400e67f8 0xa6 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0xaa (size before relaxing) + 0x00000000400e67f8 ble_hs_resolv_rpa + *fill* 0x00000000400e689e 0x2 + .text.is_rpa_resolvable_by_peer_rec + 0x00000000400e68a0 0x25 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + *fill* 0x00000000400e68c5 0x3 + .text.ble_rpa_find_rl_from_peer_records + 0x00000000400e68c8 0x144 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x158 (size before relaxing) + .text.ble_rpa_replace_peer_params_with_rl + 0x00000000400e6a0c 0x30 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x00000000400e6a0c ble_rpa_replace_peer_params_with_rl + .text.ble_hs_resolv_init + 0x00000000400e6a3c 0x30 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x00000000400e6a3c ble_hs_resolv_init + .text.ble_hs_resolv_deinit + 0x00000000400e6a6c 0x1e esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x00000000400e6a6c ble_hs_resolv_deinit + *fill* 0x00000000400e6a8a 0x2 + .text.ble_addr_cmp + 0x00000000400e6a8c 0x20 esp-idf/bt/libbt.a(ble_store_config.c.obj) + .text.ble_store_config_find_sec + 0x00000000400e6aac 0x6e esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x72 (size before relaxing) + *fill* 0x00000000400e6b1a 0x2 + .text.ble_store_config_read_peer_sec + 0x00000000400e6b1c 0x31 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x35 (size before relaxing) + *fill* 0x00000000400e6b4d 0x3 + .text.ble_store_config_read_our_sec + 0x00000000400e6b50 0x31 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x35 (size before relaxing) + *fill* 0x00000000400e6b81 0x3 + .text.ble_store_config_find_cccd + 0x00000000400e6b84 0x5f esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x67 (size before relaxing) + *fill* 0x00000000400e6be3 0x1 + .text.ble_store_config_read_cccd + 0x00000000400e6be4 0x2c esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x30 (size before relaxing) + .text.ble_store_config_print_key_sec + 0x00000000400e6c10 0x32 esp-idf/bt/libbt.a(ble_store_config.c.obj) + *fill* 0x00000000400e6c42 0x2 + .text.ble_store_config_read + 0x00000000400e6c44 0x48 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x50 (size before relaxing) + 0x00000000400e6c44 ble_store_config_read + .text.ble_store_config_print_value_sec + 0x00000000400e6c8c 0x38 esp-idf/bt/libbt.a(ble_store_config.c.obj) + .text.ble_store_config_write_peer_sec + 0x00000000400e6cc4 0x4e esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x5a (size before relaxing) + *fill* 0x00000000400e6d12 0x2 + .text.ble_store_config_write_our_sec + 0x00000000400e6d14 0x4e esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x5a (size before relaxing) + *fill* 0x00000000400e6d62 0x2 + .text.ble_store_config_write_cccd + 0x00000000400e6d64 0x45 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x49 (size before relaxing) + *fill* 0x00000000400e6da9 0x3 + .text.ble_store_config_write + 0x00000000400e6dac 0x34 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x38 (size before relaxing) + 0x00000000400e6dac ble_store_config_write + .text.ble_store_config_delete_obj + 0x00000000400e6de0 0x24 esp-idf/bt/libbt.a(ble_store_config.c.obj) + .text.ble_store_config_delete_sec + 0x00000000400e6e04 0x26 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x2a (size before relaxing) + *fill* 0x00000000400e6e2a 0x2 + .text.ble_store_config_delete_peer_sec + 0x00000000400e6e2c 0x15 esp-idf/bt/libbt.a(ble_store_config.c.obj) + *fill* 0x00000000400e6e41 0x3 + .text.ble_store_config_delete_our_sec + 0x00000000400e6e44 0x15 esp-idf/bt/libbt.a(ble_store_config.c.obj) + *fill* 0x00000000400e6e59 0x3 + .text.ble_store_config_delete_cccd + 0x00000000400e6e5c 0x21 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x29 (size before relaxing) + *fill* 0x00000000400e6e7d 0x3 + .text.ble_store_config_delete + 0x00000000400e6e80 0x34 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x38 (size before relaxing) + 0x00000000400e6e80 ble_store_config_delete + .text.ble_store_config_init + 0x00000000400e6eb4 0x28 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x00000000400e6eb4 ble_store_config_init + .text.ble_hs_stop_cb + 0x00000000400e6edc 0x13 esp-idf/bt/libbt.a(nimble_port.c.obj) + *fill* 0x00000000400e6eef 0x1 + .text.nimble_port_stop_cb + 0x00000000400e6ef0 0x13 esp-idf/bt/libbt.a(nimble_port.c.obj) + *fill* 0x00000000400e6f03 0x1 + .text.esp_nimble_init + 0x00000000400e6f04 0x41 esp-idf/bt/libbt.a(nimble_port.c.obj) + 0x59 (size before relaxing) + 0x00000000400e6f04 esp_nimble_init + *fill* 0x00000000400e6f45 0x3 + .text.esp_nimble_deinit + 0x00000000400e6f48 0x3b esp-idf/bt/libbt.a(nimble_port.c.obj) + 0x47 (size before relaxing) + 0x00000000400e6f48 esp_nimble_deinit + *fill* 0x00000000400e6f83 0x1 + .text.nimble_port_init + 0x00000000400e6f84 0x74 esp-idf/bt/libbt.a(nimble_port.c.obj) + 0x94 (size before relaxing) + 0x00000000400e6f84 nimble_port_init + .text.nimble_port_deinit + 0x00000000400e6ff8 0x5c esp-idf/bt/libbt.a(nimble_port.c.obj) + 0x78 (size before relaxing) + 0x00000000400e6ff8 nimble_port_deinit + .text.nimble_port_stop + 0x00000000400e7054 0xb7 esp-idf/bt/libbt.a(nimble_port.c.obj) + 0xbf (size before relaxing) + 0x00000000400e7054 nimble_port_stop + *fill* 0x00000000400e710b 0x1 + .text.esp_nimble_enable + 0x00000000400e710c 0x20 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + 0x00000000400e710c esp_nimble_enable + .text.esp_nimble_disable + 0x00000000400e712c 0x1c esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + 0x00000000400e712c esp_nimble_disable + .text.nimble_port_freertos_init + 0x00000000400e7148 0xa esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + 0xe (size before relaxing) + 0x00000000400e7148 nimble_port_freertos_init + *fill* 0x00000000400e7152 0x2 + .text.nimble_port_freertos_deinit + 0x00000000400e7154 0x8 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + 0xb (size before relaxing) + 0x00000000400e7154 nimble_port_freertos_deinit + *fill* 0x00000000400e715c 0x0 + .text.os_mempool_init_internal + 0x00000000400e715c 0x88 esp-idf/bt/libbt.a(os_mempool.c.obj) + .text.os_mempool_init + 0x00000000400e71e4 0x1a esp-idf/bt/libbt.a(os_mempool.c.obj) + 0x00000000400e71e4 os_mempool_init + *fill* 0x00000000400e71fe 0x2 + .text.os_mempool_ext_init + 0x00000000400e7200 0x22 esp-idf/bt/libbt.a(os_mempool.c.obj) + 0x00000000400e7200 os_mempool_ext_init + *fill* 0x00000000400e7222 0x2 + .text.os_mempool_ext_clear + 0x00000000400e7224 0x1a esp-idf/bt/libbt.a(os_mempool.c.obj) + 0x00000000400e7224 os_mempool_ext_clear + *fill* 0x00000000400e723e 0x2 + .text.os_memblock_get + 0x00000000400e7240 0x4a esp-idf/bt/libbt.a(os_mempool.c.obj) + 0x00000000400e7240 os_memblock_get + *fill* 0x00000000400e728a 0x2 + .text.os_memblock_put_from_cb + 0x00000000400e728c 0x28 esp-idf/bt/libbt.a(os_mempool.c.obj) + 0x00000000400e728c os_memblock_put_from_cb + .text.os_memblock_put + 0x00000000400e72b4 0x41 esp-idf/bt/libbt.a(os_mempool.c.obj) + 0x00000000400e72b4 os_memblock_put + *fill* 0x00000000400e72f5 0x3 + .text.os_mempool_module_init + 0x00000000400e72f8 0xe esp-idf/bt/libbt.a(os_mempool.c.obj) + 0x00000000400e72f8 os_mempool_module_init + *fill* 0x00000000400e7306 0x2 + .text.mem_init_mbuf_pool + 0x00000000400e7308 0x28 esp-idf/bt/libbt.a(mem.c.obj) + 0x2c (size before relaxing) + 0x00000000400e7308 mem_init_mbuf_pool + .text.mem_split_frag + 0x00000000400e7330 0x4d esp-idf/bt/libbt.a(mem.c.obj) + 0x55 (size before relaxing) + 0x00000000400e7330 mem_split_frag + *fill* 0x00000000400e737d 0x3 + .text._os_msys_find_pool + 0x00000000400e7380 0x2e esp-idf/bt/libbt.a(os_mbuf.c.obj) + *fill* 0x00000000400e73ae 0x2 + .text._os_mbuf_copypkthdr + 0x00000000400e73b0 0x34 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x38 (size before relaxing) + .text.os_msys_register + 0x00000000400e73e4 0x41 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x00000000400e73e4 os_msys_register + *fill* 0x00000000400e7425 0x3 + .text.os_msys_reset + 0x00000000400e7428 0xe esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x00000000400e7428 os_msys_reset + *fill* 0x00000000400e7436 0x2 + .text.os_mbuf_get + 0x00000000400e7438 0x36 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x00000000400e7438 os_mbuf_get + *fill* 0x00000000400e746e 0x2 + .text.os_mbuf_get_pkthdr + 0x00000000400e7470 0x44 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x00000000400e7470 os_mbuf_get_pkthdr + .text.os_msys_get_pkthdr + 0x00000000400e74b4 0x24 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x28 (size before relaxing) + 0x00000000400e74b4 os_msys_get_pkthdr + .text.os_mbuf_free + 0x00000000400e74d8 0x1a esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x00000000400e74d8 os_mbuf_free + *fill* 0x00000000400e74f2 0x2 + .text.os_mbuf_free_chain + 0x00000000400e74f4 0x1c esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x00000000400e74f4 os_mbuf_free_chain + .text.os_mbuf_append + 0x00000000400e7510 0xac esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0xb0 (size before relaxing) + 0x00000000400e7510 os_mbuf_append + .text.os_mbuf_appendfrom + 0x00000000400e75bc 0x55 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x00000000400e75bc os_mbuf_appendfrom + *fill* 0x00000000400e7611 0x3 + .text.os_mbuf_copydata + 0x00000000400e7614 0x6a esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x00000000400e7614 os_mbuf_copydata + *fill* 0x00000000400e767e 0x2 + .text.os_mbuf_adj + 0x00000000400e7680 0xca esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x00000000400e7680 os_mbuf_adj + *fill* 0x00000000400e774a 0x2 + .text.os_mbuf_cmpf + 0x00000000400e774c 0x66 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x00000000400e774c os_mbuf_cmpf + *fill* 0x00000000400e77b2 0x2 + .text.os_mbuf_cmpm + 0x00000000400e77b4 0xc0 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x00000000400e77b4 os_mbuf_cmpm + .text.os_mbuf_prepend + 0x00000000400e7874 0xaa esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0xb2 (size before relaxing) + 0x00000000400e7874 os_mbuf_prepend + *fill* 0x00000000400e791e 0x2 + .text.os_mbuf_copyinto + 0x00000000400e7920 0x7f esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x00000000400e7920 os_mbuf_copyinto + *fill* 0x00000000400e799f 0x1 + .text.os_mbuf_extend + 0x00000000400e79a0 0x62 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x66 (size before relaxing) + 0x00000000400e79a0 os_mbuf_extend + *fill* 0x00000000400e7a02 0x2 + .text.os_mbuf_pullup + 0x00000000400e7a04 0x104 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x110 (size before relaxing) + 0x00000000400e7a04 os_mbuf_pullup + .text.os_mbuf_prepend_pullup + 0x00000000400e7b08 0x1a esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x1e (size before relaxing) + 0x00000000400e7b08 os_mbuf_prepend_pullup + *fill* 0x00000000400e7b22 0x2 + .text.os_mbuf_trim_front + 0x00000000400e7b24 0x58 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x5c (size before relaxing) + 0x00000000400e7b24 os_mbuf_trim_front + .text.os_mbuf_pack_chains + 0x00000000400e7b7c 0xd2 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x00000000400e7b7c os_mbuf_pack_chains + *fill* 0x00000000400e7c4e 0x2 + .text.os_msys_init_once + 0x00000000400e7c50 0x3f esp-idf/bt/libbt.a(os_msys_init.c.obj) + 0x47 (size before relaxing) + *fill* 0x00000000400e7c8f 0x1 + .text.os_msys_buf_alloc + 0x00000000400e7c90 0x3d esp-idf/bt/libbt.a(os_msys_init.c.obj) + 0x45 (size before relaxing) + 0x00000000400e7c90 os_msys_buf_alloc + *fill* 0x00000000400e7ccd 0x3 + .text.os_msys_buf_free + 0x00000000400e7cd0 0x1d esp-idf/bt/libbt.a(os_msys_init.c.obj) + 0x21 (size before relaxing) + 0x00000000400e7cd0 os_msys_buf_free + *fill* 0x00000000400e7ced 0x3 + .text.os_msys_init + 0x00000000400e7cf0 0x37 esp-idf/bt/libbt.a(os_msys_init.c.obj) + 0x3f (size before relaxing) + 0x00000000400e7cf0 os_msys_init + *fill* 0x00000000400e7d27 0x1 + .text.npl_freertos_funcs_init + 0x00000000400e7d28 0x38 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x3c (size before relaxing) + 0x00000000400e7d28 npl_freertos_funcs_init + .text.npl_freertos_mempool_init + 0x00000000400e7d60 0x91 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0xa5 (size before relaxing) + 0x00000000400e7d60 npl_freertos_mempool_init + *fill* 0x00000000400e7df1 0x3 + .text.npl_freertos_funcs_deinit + 0x00000000400e7df4 0x16 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x19 (size before relaxing) + 0x00000000400e7df4 npl_freertos_funcs_deinit + *fill* 0x00000000400e7e0a 0x2 + .text.controller_rcv_pkt_ready + 0x00000000400e7e0c 0x18 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .text.ble_hci_rx_acl + 0x00000000400e7e24 0x72 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + 0x82 (size before relaxing) + *fill* 0x00000000400e7e96 0x2 + .text.ble_hci_trans_hs_cmd_tx + 0x00000000400e7e98 0x4c esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + 0x54 (size before relaxing) + 0x00000000400e7e98 ble_hci_trans_hs_cmd_tx + .text.ble_hci_trans_ll_evt_tx + 0x00000000400e7ee4 0xc esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + 0x10 (size before relaxing) + 0x00000000400e7ee4 ble_hci_trans_ll_evt_tx + .text.host_rcv_pkt + 0x00000000400e7ef0 0x108 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + 0x12c (size before relaxing) + .text.ble_hci_trans_hs_acl_tx + 0x00000000400e7ff8 0x5c esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + 0x68 (size before relaxing) + 0x00000000400e7ff8 ble_hci_trans_hs_acl_tx + .text.esp_nimble_hci_init + 0x00000000400e8054 0x3d esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + 0x50 (size before relaxing) + 0x00000000400e8054 esp_nimble_hci_init + *fill* 0x00000000400e8091 0x3 + .text.esp_nimble_hci_deinit + 0x00000000400e8094 0x35 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + 0x41 (size before relaxing) + 0x00000000400e8094 esp_nimble_hci_deinit + *fill* 0x00000000400e80c9 0x3 + .text.ble_transport_acl_put + 0x00000000400e80cc 0x1d esp-idf/bt/libbt.a(transport.c.obj) + *fill* 0x00000000400e80e9 0x3 + .text.ble_transport_alloc_cmd + 0x00000000400e80ec 0xd esp-idf/bt/libbt.a(transport.c.obj) + 0x10 (size before relaxing) + 0x00000000400e80ec ble_transport_alloc_cmd + *fill* 0x00000000400e80f9 0x3 + .text.ble_transport_alloc_evt + 0x00000000400e80fc 0x26 esp-idf/bt/libbt.a(transport.c.obj) + 0x29 (size before relaxing) + 0x00000000400e80fc ble_transport_alloc_evt + *fill* 0x00000000400e8122 0x2 + .text.ble_transport_alloc_acl_from_ll + 0x00000000400e8124 0x19 esp-idf/bt/libbt.a(transport.c.obj) + 0x00000000400e8124 ble_transport_alloc_acl_from_ll + *fill* 0x00000000400e813d 0x3 + .text.ble_transport_free + 0x00000000400e8140 0x65 esp-idf/bt/libbt.a(transport.c.obj) + 0x6c (size before relaxing) + 0x00000000400e8140 ble_transport_free + *fill* 0x00000000400e81a5 0x3 + .text.ble_buf_free + 0x00000000400e81a8 0x32 esp-idf/bt/libbt.a(transport.c.obj) + 0x42 (size before relaxing) + 0x00000000400e81a8 ble_buf_free + *fill* 0x00000000400e81da 0x2 + .text.ble_buf_alloc + 0x00000000400e81dc 0x66 esp-idf/bt/libbt.a(transport.c.obj) + 0x76 (size before relaxing) + 0x00000000400e81dc ble_buf_alloc + *fill* 0x00000000400e8242 0x2 + .text.ble_transport_init + 0x00000000400e8244 0xc3 esp-idf/bt/libbt.a(transport.c.obj) + 0xda (size before relaxing) + 0x00000000400e8244 ble_transport_init + *fill* 0x00000000400e8307 0x1 + .text.ble_transport_deinit + 0x00000000400e8308 0x74 esp-idf/bt/libbt.a(transport.c.obj) + 0x7a (size before relaxing) + 0x00000000400e8308 ble_transport_deinit + *fill* 0x00000000400e837c 0x0 + .text.ble_transport_register_put_acl_from_ll_cb + 0x00000000400e837c 0xc esp-idf/bt/libbt.a(transport.c.obj) + 0x00000000400e837c ble_transport_register_put_acl_from_ll_cb + .text.ble_addr_cmp + 0x00000000400e8388 0x20 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + .text.ble_hs_conn_can_alloc + 0x00000000400e83a8 0x2e esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x00000000400e83a8 ble_hs_conn_can_alloc + *fill* 0x00000000400e83d6 0x2 + .text.ble_hs_conn_delete_chan + 0x00000000400e83d8 0x2f esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x00000000400e83d8 ble_hs_conn_delete_chan + *fill* 0x00000000400e8407 0x1 + .text.ble_hs_conn_foreach + 0x00000000400e8408 0x1e esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x00000000400e8408 ble_hs_conn_foreach + *fill* 0x00000000400e8426 0x2 + .text.ble_hs_conn_free + 0x00000000400e8428 0x44 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x48 (size before relaxing) + 0x00000000400e8428 ble_hs_conn_free + .text.ble_hs_conn_alloc + 0x00000000400e846c 0x7c esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x90 (size before relaxing) + 0x00000000400e846c ble_hs_conn_alloc + .text.ble_hs_conn_remove + 0x00000000400e84e8 0x22 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x00000000400e84e8 ble_hs_conn_remove + *fill* 0x00000000400e850a 0x2 + .text.ble_hs_conn_find + 0x00000000400e850c 0x1e esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x00000000400e850c ble_hs_conn_find + *fill* 0x00000000400e852a 0x2 + .text.ble_hs_conn_insert + 0x00000000400e852c 0x17 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x00000000400e852c ble_hs_conn_insert + *fill* 0x00000000400e8543 0x1 + .text.ble_hs_conn_find_assert + 0x00000000400e8544 0xd esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x10 (size before relaxing) + 0x00000000400e8544 ble_hs_conn_find_assert + *fill* 0x00000000400e8551 0x3 + .text.ble_hs_conn_find_by_idx + 0x00000000400e8554 0x1c esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x00000000400e8554 ble_hs_conn_find_by_idx + .text.ble_hs_conn_exists + 0x00000000400e8570 0x15 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x00000000400e8570 ble_hs_conn_exists + *fill* 0x00000000400e8585 0x3 + .text.ble_hs_conn_first + 0x00000000400e8588 0xa esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x00000000400e8588 ble_hs_conn_first + *fill* 0x00000000400e8592 0x2 + .text.ble_hs_conn_addrs + 0x00000000400e8594 0x116 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x126 (size before relaxing) + 0x00000000400e8594 ble_hs_conn_addrs + *fill* 0x00000000400e86aa 0x2 + .text.ble_hs_conn_find_by_addr + 0x00000000400e86ac 0x5c esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x64 (size before relaxing) + 0x00000000400e86ac ble_hs_conn_find_by_addr + .text.ble_hs_conn_timer + 0x00000000400e8708 0x7e esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x86 (size before relaxing) + 0x00000000400e8708 ble_hs_conn_timer + *fill* 0x00000000400e8786 0x2 + .text.ble_hs_conn_init + 0x00000000400e8788 0x24 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x28 (size before relaxing) + 0x00000000400e8788 ble_hs_conn_init + .text.ble_sm_dispatch_get + 0x00000000400e87ac 0x18 esp-idf/bt/libbt.a(ble_sm.c.obj) + .text.ble_sm_proc_remove + 0x00000000400e87c4 0x27 esp-idf/bt/libbt.a(ble_sm.c.obj) + *fill* 0x00000000400e87eb 0x1 + .text.ble_sm_insert + 0x00000000400e87ec 0x18 esp-idf/bt/libbt.a(ble_sm.c.obj) + .text.ble_sm_build_authreq + 0x00000000400e8804 0x2b esp-idf/bt/libbt.a(ble_sm.c.obj) + *fill* 0x00000000400e882f 0x1 + .text.ble_sm_pair_base_fill + 0x00000000400e8830 0x24 esp-idf/bt/libbt.a(ble_sm.c.obj) + .text.ble_sm_pair_req_fill + 0x00000000400e8854 0x1f esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x22 (size before relaxing) + *fill* 0x00000000400e8873 0x1 + .text.ble_sm_pair_rsp_fill + 0x00000000400e8874 0x2b esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x2e (size before relaxing) + *fill* 0x00000000400e889f 0x1 + .text.ble_sm_gen_ediv + 0x00000000400e88a0 0x11 esp-idf/bt/libbt.a(ble_sm.c.obj) + *fill* 0x00000000400e88b1 0x3 + .text.ble_sm_gen_master_id_rand + 0x00000000400e88b4 0x11 esp-idf/bt/libbt.a(ble_sm.c.obj) + *fill* 0x00000000400e88c5 0x3 + .text.ble_sm_gen_csrk + 0x00000000400e88c8 0x11 esp-idf/bt/libbt.a(ble_sm.c.obj) + *fill* 0x00000000400e88d9 0x3 + .text.ble_sm_io_action + 0x00000000400e88dc 0x1a esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x21 (size before relaxing) + *fill* 0x00000000400e88f6 0x2 + .text.ble_sm_pair_cfg + 0x00000000400e88f8 0xa6 esp-idf/bt/libbt.a(ble_sm.c.obj) + *fill* 0x00000000400e899e 0x2 + .text.ble_sm_extract_expired + 0x00000000400e89a0 0x76 esp-idf/bt/libbt.a(ble_sm.c.obj) + *fill* 0x00000000400e8a16 0x2 + .text.ble_sm_gen_ltk + 0x00000000400e8a18 0x28 esp-idf/bt/libbt.a(ble_sm.c.obj) + .text.ble_sm_exec + 0x00000000400e8a40 0x36 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x3a (size before relaxing) + *fill* 0x00000000400e8a76 0x2 + .text.ble_sm_sec_req_exec + 0x00000000400e8a78 0x2e esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x36 (size before relaxing) + *fill* 0x00000000400e8aa6 0x2 + .text.ble_sm_fill_store_value + 0x00000000400e8aa8 0xce esp-idf/bt/libbt.a(ble_sm.c.obj) + *fill* 0x00000000400e8b76 0x2 + .text.ble_sm_update_sec_state + 0x00000000400e8b78 0x48 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x4c (size before relaxing) + .text.ble_sm_key_exch_success + 0x00000000400e8bc0 0x40 esp-idf/bt/libbt.a(ble_sm.c.obj) + .text.ble_sm_key_exch_exec + 0x00000000400e8c00 0x28c esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x2cc (size before relaxing) + .text.ble_sm_key_rxed + 0x00000000400e8e8c 0x28 esp-idf/bt/libbt.a(ble_sm.c.obj) + .text.ble_sm_start_encrypt_tx + 0x00000000400e8eb4 0x46 esp-idf/bt/libbt.a(ble_sm.c.obj) + *fill* 0x00000000400e8efa 0x2 + .text.ble_sm_enc_restore_exec + 0x00000000400e8efc 0xc esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x10 (size before relaxing) + .text.ble_sm_enc_start_exec + 0x00000000400e8f08 0x3f esp-idf/bt/libbt.a(ble_sm.c.obj) + *fill* 0x00000000400e8f47 0x1 + .text.ble_sm_ltk_req_reply_tx + 0x00000000400e8f48 0x32 esp-idf/bt/libbt.a(ble_sm.c.obj) + *fill* 0x00000000400e8f7a 0x2 + .text.ble_sm_ltk_start_exec + 0x00000000400e8f7c 0x29 esp-idf/bt/libbt.a(ble_sm.c.obj) + *fill* 0x00000000400e8fa5 0x3 + .text.ble_sm_ltk_req_neg_reply_tx + 0x00000000400e8fa8 0x22 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x26 (size before relaxing) + *fill* 0x00000000400e8fca 0x2 + .text.ble_sm_ltk_restore_exec + 0x00000000400e8fcc 0x60 esp-idf/bt/libbt.a(ble_sm.c.obj) + .text.ble_sm_random_exec + 0x00000000400e902c 0x19 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x20 (size before relaxing) + *fill* 0x00000000400e9045 0x3 + .text.ble_sm_confirm_exec + 0x00000000400e9048 0x19 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x20 (size before relaxing) + *fill* 0x00000000400e9061 0x3 + .text.ble_sm_proc_set_timer + 0x00000000400e9064 0x24 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x28 (size before relaxing) + .text.ble_sm_pair_fail_tx + 0x00000000400e9088 0x32 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x42 (size before relaxing) + *fill* 0x00000000400e90ba 0x2 + .text.ble_sm_persist_keys + 0x00000000400e90bc 0x166 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x18a (size before relaxing) + *fill* 0x00000000400e9222 0x2 + .text.ble_sm_proc_free + 0x00000000400e9224 0xf esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x12 (size before relaxing) + *fill* 0x00000000400e9233 0x1 + .text.ble_sm_proc_alloc + 0x00000000400e9234 0x1a esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x1e (size before relaxing) + *fill* 0x00000000400e924e 0x2 + .text.ble_sm_retrieve_ltk + 0x00000000400e9250 0x45 esp-idf/bt/libbt.a(ble_sm.c.obj) + *fill* 0x00000000400e9295 0x3 + .text.ble_sm_fail_rx + 0x00000000400e9298 0x2c esp-idf/bt/libbt.a(ble_sm.c.obj) + .text.ble_sm_read_bond + 0x00000000400e92c4 0x3a esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x3e (size before relaxing) + *fill* 0x00000000400e92fe 0x2 + .text.ble_sm_chk_repeat_pairing + 0x00000000400e9300 0x86 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x8a (size before relaxing) + *fill* 0x00000000400e9386 0x2 + .text.ble_sm_num_procs + 0x00000000400e9388 0x16 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x00000000400e9388 ble_sm_num_procs + *fill* 0x00000000400e939e 0x2 + .text.ble_sm_chk_store_overflow_by_type + 0x00000000400e93a0 0x32 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x42 (size before relaxing) + *fill* 0x00000000400e93d2 0x2 + .text.ble_sm_chk_store_overflow + 0x00000000400e93d4 0x19 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x1d (size before relaxing) + *fill* 0x00000000400e93ed 0x3 + .text.ble_sm_gen_pair_rand + 0x00000000400e93f0 0x11 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x00000000400e93f0 ble_sm_gen_pair_rand + *fill* 0x00000000400e9401 0x3 + .text.ble_sm_ia_ra + 0x00000000400e9404 0x6a esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x72 (size before relaxing) + 0x00000000400e9404 ble_sm_ia_ra + *fill* 0x00000000400e946e 0x2 + .text.ble_sm_proc_find + 0x00000000400e9470 0x36 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x00000000400e9470 ble_sm_proc_find + *fill* 0x00000000400e94a6 0x2 + .text.ble_sm_sign_info_rx + 0x00000000400e94a8 0x7d esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x89 (size before relaxing) + *fill* 0x00000000400e9525 0x3 + .text.ble_sm_id_addr_info_rx + 0x00000000400e9528 0x84 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x90 (size before relaxing) + .text.ble_sm_id_info_rx + 0x00000000400e95ac 0x7d esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x89 (size before relaxing) + *fill* 0x00000000400e9629 0x3 + .text.ble_sm_master_id_rx + 0x00000000400e962c 0xc0 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0xc8 (size before relaxing) + .text.ble_sm_enc_info_rx + 0x00000000400e96ec 0x85 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x8d (size before relaxing) + *fill* 0x00000000400e9771 0x3 + .text.ble_sm_pair_req_rx + 0x00000000400e9774 0x137 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x163 (size before relaxing) + *fill* 0x00000000400e98ab 0x1 + .text.ble_sm_proc_can_advance + 0x00000000400e98ac 0x35 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x00000000400e98ac ble_sm_proc_can_advance + *fill* 0x00000000400e98e1 0x3 + .text.ble_sm_confirm_rx + 0x00000000400e98e4 0xac esp-idf/bt/libbt.a(ble_sm.c.obj) + 0xb4 (size before relaxing) + .text.ble_sm_pair_rsp_rx + 0x00000000400e9990 0xe9 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0xf8 (size before relaxing) + *fill* 0x00000000400e9a79 0x3 + .text.ble_sm_process_result + 0x00000000400e9a7c 0xd4 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0xf0 (size before relaxing) + 0x00000000400e9a7c ble_sm_process_result + .text.ble_sm_enc_event_rx + 0x00000000400e9b50 0xff esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x10b (size before relaxing) + *fill* 0x00000000400e9c4f 0x1 + .text.ble_sm_rx + 0x00000000400e9c50 0x68 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x78 (size before relaxing) + .text.ble_sm_enc_change_rx + 0x00000000400e9cb8 0x1d esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x20 (size before relaxing) + 0x00000000400e9cb8 ble_sm_enc_change_rx + *fill* 0x00000000400e9cd5 0x3 + .text.ble_sm_enc_key_refresh_rx + 0x00000000400e9cd8 0x19 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x1c (size before relaxing) + 0x00000000400e9cd8 ble_sm_enc_key_refresh_rx + *fill* 0x00000000400e9cf1 0x3 + .text.ble_sm_ltk_req_rx + 0x00000000400e9cf4 0x14c esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x15c (size before relaxing) + 0x00000000400e9cf4 ble_sm_ltk_req_rx + .text.ble_sm_pair_exec + 0x00000000400e9e40 0xaa esp-idf/bt/libbt.a(ble_sm.c.obj) + 0xb2 (size before relaxing) + *fill* 0x00000000400e9eea 0x2 + .text.ble_sm_random_rx + 0x00000000400e9eec 0x7c esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x88 (size before relaxing) + .text.ble_sm_timer + 0x00000000400e9f68 0x35 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x39 (size before relaxing) + 0x00000000400e9f68 ble_sm_timer + *fill* 0x00000000400e9f9d 0x3 + .text.ble_sm_pair_initiate + 0x00000000400e9fa0 0x82 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x9a (size before relaxing) + 0x00000000400e9fa0 ble_sm_pair_initiate + *fill* 0x00000000400ea022 0x2 + .text.ble_sm_enc_initiate + 0x00000000400ea024 0xa8 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0xb8 (size before relaxing) + 0x00000000400ea024 ble_sm_enc_initiate + .text.ble_sm_sec_req_rx + 0x00000000400ea0cc 0xd8 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0xe8 (size before relaxing) + .text.ble_sm_connection_broken + 0x00000000400ea1a4 0x2a esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x2e (size before relaxing) + 0x00000000400ea1a4 ble_sm_connection_broken + *fill* 0x00000000400ea1ce 0x2 + .text.ble_sm_init + 0x00000000400ea1d0 0x28 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x2c (size before relaxing) + 0x00000000400ea1d0 ble_sm_init + .text.ble_sm_create_chan + 0x00000000400ea1f8 0x24 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x00000000400ea1f8 ble_sm_create_chan + .text.ble_l2cap_sig_tx + 0x00000000400ea21c 0x34 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + 0x40 (size before relaxing) + 0x00000000400ea21c ble_l2cap_sig_tx + .text.ble_l2cap_sig_cmd_get + 0x00000000400ea250 0x43 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + 0x4b (size before relaxing) + 0x00000000400ea250 ble_l2cap_sig_cmd_get + *fill* 0x00000000400ea293 0x1 + .text.ble_l2cap_sig_reject_tx + 0x00000000400ea294 0x40 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + 0x48 (size before relaxing) + 0x00000000400ea294 ble_l2cap_sig_reject_tx + .text.ble_l2cap_sig_reject_invalid_cid_tx + 0x00000000400ea2d4 0x1c esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + 0x20 (size before relaxing) + 0x00000000400ea2d4 ble_l2cap_sig_reject_invalid_cid_tx + .text.ble_hs_hci_cmd_transport + 0x00000000400ea2f0 0x18 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + 0x1c (size before relaxing) + .text.ble_hs_hci_cmd_send + 0x00000000400ea308 0x3c esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + 0x40 (size before relaxing) + .text.ble_hs_hci_cmd_send_buf + 0x00000000400ea344 0x3a esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + 0x3e (size before relaxing) + 0x00000000400ea344 ble_hs_hci_cmd_send_buf + *fill* 0x00000000400ea37e 0x2 + .text.ble_att_svr_next_id + 0x00000000400ea380 0x13 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + *fill* 0x00000000400ea393 0x1 + .text.ble_att_svr_entry_alloc + 0x00000000400ea394 0x1c esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .text.ble_att_svr_get_sec_state + 0x00000000400ea3b0 0x16 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x1e (size before relaxing) + *fill* 0x00000000400ea3c6 0x2 + .text.ble_att_svr_check_perms + 0x00000000400ea3c8 0xfc esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x10c (size before relaxing) + .text.ble_att_svr_read + 0x00000000400ea4c4 0x44 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x48 (size before relaxing) + .text.ble_att_svr_write + 0x00000000400ea508 0x44 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .text.ble_att_svr_pullup_req_base + 0x00000000400ea54c 0x20 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .text.ble_att_svr_build_mtu_rsp + 0x00000000400ea56c 0x5b esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x67 (size before relaxing) + *fill* 0x00000000400ea5c7 0x1 + .text.ble_att_svr_pkt + 0x00000000400ea5c8 0x24 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .text.ble_att_svr_build_write_rsp + 0x00000000400ea5ec 0x2b esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x2f (size before relaxing) + *fill* 0x00000000400ea617 0x1 + .text.ble_att_svr_build_indicate_rsp + 0x00000000400ea618 0x2b esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x2f (size before relaxing) + *fill* 0x00000000400ea643 0x1 + .text.ble_att_svr_fill_info + 0x00000000400ea644 0xa8 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0xac (size before relaxing) + .text.ble_att_svr_build_find_info_rsp + 0x00000000400ea6ec 0x54 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x5c (size before relaxing) + .text.ble_att_svr_read_group_type_entry_write + 0x00000000400ea740 0x4a esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x4e (size before relaxing) + *fill* 0x00000000400ea78a 0x2 + .text.ble_att_svr_is_valid_find_group_type + 0x00000000400ea78c 0x2d esp-idf/bt/libbt.a(ble_att_svr.c.obj) + *fill* 0x00000000400ea7b9 0x3 + .text.ble_att_svr_is_valid_group_end + 0x00000000400ea7bc 0x6c esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .text.ble_att_svr_is_valid_read_group_type + 0x00000000400ea828 0x1b esp-idf/bt/libbt.a(ble_att_svr.c.obj) + *fill* 0x00000000400ea843 0x1 + .text.ble_att_svr_read_flat + 0x00000000400ea844 0x51 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x58 (size before relaxing) + *fill* 0x00000000400ea895 0x3 + .text.ble_att_svr_fill_type_value_entry + 0x00000000400ea898 0x59 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + *fill* 0x00000000400ea8f1 0x3 + .text.ble_att_svr_fill_type_value + 0x00000000400ea8f4 0xdc esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0xec (size before relaxing) + .text.ble_att_svr_build_find_type_value_rsp + 0x00000000400ea9d0 0x52 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x5a (size before relaxing) + *fill* 0x00000000400eaa22 0x2 + .text.ble_att_svr_service_uuid + 0x00000000400eaa24 0x2a esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x2e (size before relaxing) + *fill* 0x00000000400eaa4e 0x2 + .text.ble_att_svr_build_read_group_type_rsp + 0x00000000400eaa50 0x168 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x17c (size before relaxing) + .text.ble_att_svr_prep_free + 0x00000000400eabb8 0x16 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x1a (size before relaxing) + *fill* 0x00000000400eabce 0x2 + .text.ble_att_svr_prep_alloc + 0x00000000400eabd0 0x5a esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x5e (size before relaxing) + *fill* 0x00000000400eac2a 0x2 + .text.ble_att_svr_insert_prep_entry + 0x00000000400eac2c 0x7f esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x8f (size before relaxing) + *fill* 0x00000000400eacab 0x1 + .text.ble_att_svr_prep_extract + 0x00000000400eacac 0x40 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x44 (size before relaxing) + .text.ble_att_svr_free_start_mem + 0x00000000400eacec 0x14 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .text.ble_att_svr_register + 0x00000000400ead00 0x4d esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x55 (size before relaxing) + 0x00000000400ead00 ble_att_svr_register + *fill* 0x00000000400ead4d 0x3 + .text.ble_att_svr_prev_handle + 0x00000000400ead50 0xb esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x00000000400ead50 ble_att_svr_prev_handle + *fill* 0x00000000400ead5b 0x1 + .text.ble_att_svr_find_by_handle + 0x00000000400ead5c 0x1e esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x00000000400ead5c ble_att_svr_find_by_handle + *fill* 0x00000000400ead7a 0x2 + .text.ble_att_svr_write_handle + 0x00000000400ead7c 0x2a esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x2e (size before relaxing) + *fill* 0x00000000400eada6 0x2 + .text.ble_att_svr_prep_write + 0x00000000400eada8 0x53 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x5f (size before relaxing) + *fill* 0x00000000400eadfb 0x1 + .text.ble_att_svr_find_by_uuid + 0x00000000400eadfc 0x32 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x00000000400eadfc ble_att_svr_find_by_uuid + *fill* 0x00000000400eae2e 0x2 + .text.ble_att_svr_build_read_type_rsp + 0x00000000400eae30 0x145 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x14d (size before relaxing) + *fill* 0x00000000400eaf75 0x3 + .text.ble_att_svr_ticks_until_tmo + 0x00000000400eaf78 0x1e esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x00000000400eaf78 ble_att_svr_ticks_until_tmo + *fill* 0x00000000400eaf96 0x2 + .text.ble_att_svr_read_handle + 0x00000000400eaf98 0x31 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x35 (size before relaxing) + 0x00000000400eaf98 ble_att_svr_read_handle + *fill* 0x00000000400eafc9 0x3 + .text.ble_att_svr_build_read_mult_rsp + 0x00000000400eafcc 0xaa esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0xb2 (size before relaxing) + *fill* 0x00000000400eb076 0x2 + .text.ble_att_svr_tx_error_rsp + 0x00000000400eb078 0x39 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x41 (size before relaxing) + 0x00000000400eb078 ble_att_svr_tx_error_rsp + *fill* 0x00000000400eb0b1 0x3 + .text.ble_att_svr_tx_rsp + 0x00000000400eb0b4 0x8e esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0xa2 (size before relaxing) + *fill* 0x00000000400eb142 0x2 + .text.ble_att_svr_rx_mtu + 0x00000000400eb144 0x8a esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0xaa (size before relaxing) + 0x00000000400eb144 ble_att_svr_rx_mtu + *fill* 0x00000000400eb1ce 0x2 + .text.ble_att_svr_rx_find_info + 0x00000000400eb1d0 0x84 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x8c (size before relaxing) + 0x00000000400eb1d0 ble_att_svr_rx_find_info + .text.ble_att_svr_rx_find_type_value + 0x00000000400eb254 0xa4 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0xac (size before relaxing) + 0x00000000400eb254 ble_att_svr_rx_find_type_value + .text.ble_att_svr_rx_read_type + 0x00000000400eb2f8 0xd2 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0xd6 (size before relaxing) + 0x00000000400eb2f8 ble_att_svr_rx_read_type + *fill* 0x00000000400eb3ca 0x2 + .text.ble_att_svr_rx_read + 0x00000000400eb3cc 0x74 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x84 (size before relaxing) + 0x00000000400eb3cc ble_att_svr_rx_read + .text.ble_att_svr_rx_read_blob + 0x00000000400eb440 0x84 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x90 (size before relaxing) + 0x00000000400eb440 ble_att_svr_rx_read_blob + .text.ble_att_svr_rx_read_mult + 0x00000000400eb4c4 0x34 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x38 (size before relaxing) + 0x00000000400eb4c4 ble_att_svr_rx_read_mult + .text.ble_att_svr_rx_read_group_type + 0x00000000400eb4f8 0xea esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0xf2 (size before relaxing) + 0x00000000400eb4f8 ble_att_svr_rx_read_group_type + *fill* 0x00000000400eb5e2 0x2 + .text.ble_att_svr_rx_write + 0x00000000400eb5e4 0x64 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x70 (size before relaxing) + 0x00000000400eb5e4 ble_att_svr_rx_write + .text.ble_att_svr_rx_write_no_rsp + 0x00000000400eb648 0x38 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x40 (size before relaxing) + 0x00000000400eb648 ble_att_svr_rx_write_no_rsp + .text.ble_att_svr_prep_clear + 0x00000000400eb680 0x17 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x00000000400eb680 ble_att_svr_prep_clear + *fill* 0x00000000400eb697 0x1 + .text.ble_att_svr_rx_prep_write + 0x00000000400eb698 0xb4 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0xc8 (size before relaxing) + 0x00000000400eb698 ble_att_svr_rx_prep_write + .text.ble_att_svr_rx_exec_write + 0x00000000400eb74c 0x90 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0xac (size before relaxing) + 0x00000000400eb74c ble_att_svr_rx_exec_write + .text.ble_att_svr_rx_notify + 0x00000000400eb7dc 0x4e esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x5a (size before relaxing) + 0x00000000400eb7dc ble_att_svr_rx_notify + *fill* 0x00000000400eb82a 0x2 + .text.ble_att_svr_rx_indicate + 0x00000000400eb82c 0x74 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x88 (size before relaxing) + 0x00000000400eb82c ble_att_svr_rx_indicate + .text.ble_att_svr_start + 0x00000000400eb8a0 0x4d esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x55 (size before relaxing) + 0x00000000400eb8a0 ble_att_svr_start + *fill* 0x00000000400eb8ed 0x3 + .text.ble_att_svr_stop + 0x00000000400eb8f0 0x8 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0xb (size before relaxing) + 0x00000000400eb8f0 ble_att_svr_stop + *fill* 0x00000000400eb8f8 0x0 + .text.ble_att_svr_init + 0x00000000400eb8f8 0x35 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x00000000400eb8f8 ble_att_svr_init + *fill* 0x00000000400eb92d 0x3 + .text.ble_hs_atomic_conn_delete + 0x00000000400eb930 0x2c esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + 0x3c (size before relaxing) + 0x00000000400eb930 ble_hs_atomic_conn_delete + .text.ble_hs_atomic_conn_flags + 0x00000000400eb95c 0x2c esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + 0x33 (size before relaxing) + 0x00000000400eb95c ble_hs_atomic_conn_flags + *fill* 0x00000000400eb988 0x0 + .text.ble_hs_atomic_first_conn_handle + 0x00000000400eb988 0x1c esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + 0x23 (size before relaxing) + 0x00000000400eb988 ble_hs_atomic_first_conn_handle + *fill* 0x00000000400eb9a4 0x0 + .text.ble_sm_alg_log_buf + 0x00000000400eb9a4 0xf esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + *fill* 0x00000000400eb9b3 0x1 + .text.ble_sm_alg_aes_cmac + 0x00000000400eb9b4 0x5b esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x72 (size before relaxing) + *fill* 0x00000000400eba0f 0x1 + .text.mbedtls_gen_keypair + 0x00000000400eba10 0xcc esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0xf0 (size before relaxing) + .text.ble_sm_alg_encrypt + 0x00000000400ebadc 0x82 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x92 (size before relaxing) + 0x00000000400ebadc ble_sm_alg_encrypt + *fill* 0x00000000400ebb5e 0x2 + .text.ble_sm_alg_s1 + 0x00000000400ebb60 0x56 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x5a (size before relaxing) + 0x00000000400ebb60 ble_sm_alg_s1 + *fill* 0x00000000400ebbb6 0x2 + .text.ble_sm_alg_c1 + 0x00000000400ebbb8 0xf1 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0xf9 (size before relaxing) + 0x00000000400ebbb8 ble_sm_alg_c1 + *fill* 0x00000000400ebca9 0x3 + .text.ble_sm_alg_f4 + 0x00000000400ebcac 0x7c esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x80 (size before relaxing) + 0x00000000400ebcac ble_sm_alg_f4 + .text.ble_sm_alg_f5 + 0x00000000400ebd28 0xfe esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x11e (size before relaxing) + 0x00000000400ebd28 ble_sm_alg_f5 + *fill* 0x00000000400ebe26 0x2 + .text.ble_sm_alg_f6 + 0x00000000400ebe28 0x120 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x144 (size before relaxing) + 0x00000000400ebe28 ble_sm_alg_f6 + .text.ble_sm_alg_g2 + 0x00000000400ebf48 0x9c esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0xb8 (size before relaxing) + 0x00000000400ebf48 ble_sm_alg_g2 + .text.ble_sm_alg_gen_dhkey + 0x00000000400ebfe4 0x1e8 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x234 (size before relaxing) + 0x00000000400ebfe4 ble_sm_alg_gen_dhkey + .text.ble_sm_alg_gen_key_pair + 0x00000000400ec1cc 0x4c esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x50 (size before relaxing) + 0x00000000400ec1cc ble_sm_alg_gen_key_pair + .text.ble_hs_stop_register_listener + 0x00000000400ec218 0x12 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + *fill* 0x00000000400ec22a 0x2 + .text.ble_hs_stop_terminate_conn + 0x00000000400ec22c 0x3a esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + 0x3e (size before relaxing) + *fill* 0x00000000400ec266 0x2 + .text.ble_hs_stop_begin + 0x00000000400ec268 0x5c esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + 0x68 (size before relaxing) + .text.ble_hs_stop_done + 0x00000000400ec2c4 0x40 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + 0x48 (size before relaxing) + .text.ble_hs_stop_gap_event + 0x00000000400ec304 0x3a esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + *fill* 0x00000000400ec33e 0x2 + .text.ble_hs_stop_terminate_timeout_cb + 0x00000000400ec340 0x23 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + 0x2b (size before relaxing) + *fill* 0x00000000400ec363 0x1 + .text.ble_hs_stop + 0x00000000400ec364 0x73 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + 0x92 (size before relaxing) + 0x00000000400ec364 ble_hs_stop + *fill* 0x00000000400ec3d7 0x1 + .text.ble_hs_stop_init + 0x00000000400ec3d8 0x20 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + 0x00000000400ec3d8 ble_hs_stop_init + .text.ble_hs_stop_deinit + 0x00000000400ec3f8 0x13 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + 0x00000000400ec3f8 ble_hs_stop_deinit + *fill* 0x00000000400ec40b 0x1 + .text.ble_sm_gen_stk + 0x00000000400ec40c 0x3d esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + *fill* 0x00000000400ec449 0x3 + .text.ble_sm_lgcy_io_action + 0x00000000400ec44c 0xbd esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + 0x00000000400ec44c ble_sm_lgcy_io_action + *fill* 0x00000000400ec509 0x3 + .text.ble_sm_lgcy_confirm_exec + 0x00000000400ec50c 0x8a esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + 0x96 (size before relaxing) + 0x00000000400ec50c ble_sm_lgcy_confirm_exec + *fill* 0x00000000400ec596 0x2 + .text.ble_sm_lgcy_random_exec + 0x00000000400ec598 0x6e esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + 0x72 (size before relaxing) + 0x00000000400ec598 ble_sm_lgcy_random_exec + *fill* 0x00000000400ec606 0x2 + .text.ble_sm_lgcy_random_rx + 0x00000000400ec608 0xb9 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + 0xc1 (size before relaxing) + 0x00000000400ec608 ble_sm_lgcy_random_rx + *fill* 0x00000000400ec6c1 0x3 + .text.ble_sm_cmd_get + 0x00000000400ec6c4 0x2f esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + 0x37 (size before relaxing) + 0x00000000400ec6c4 ble_sm_cmd_get + *fill* 0x00000000400ec6f3 0x1 + .text.ble_sm_tx + 0x00000000400ec6f4 0x2b esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + 0x32 (size before relaxing) + 0x00000000400ec6f4 ble_sm_tx + *fill* 0x00000000400ec71f 0x1 + .text.ble_sm_sc_random_advance + 0x00000000400ec720 0x32 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x36 (size before relaxing) + *fill* 0x00000000400ec752 0x2 + .text.ble_sm_sc_gen_numcmp + 0x00000000400ec754 0x40 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + .text.ble_sm_gen_pub_priv + 0x00000000400ec794 0x11 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + *fill* 0x00000000400ec7a5 0x3 + .text.ble_sm_sc_ensure_keys_generated + 0x00000000400ec7a8 0x3c esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x40 (size before relaxing) + .text.ble_sm_sc_dhkey_addrs + 0x00000000400ec7e4 0x2e esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x32 (size before relaxing) + *fill* 0x00000000400ec812 0x2 + .text.ble_sm_sc_io_action + 0x00000000400ec814 0xd5 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x00000000400ec814 ble_sm_sc_io_action + *fill* 0x00000000400ec8e9 0x3 + .text.ble_sm_dhkey_check_process + 0x00000000400ec8ec 0x13e esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x14a (size before relaxing) + *fill* 0x00000000400eca2a 0x2 + .text.ble_sm_sc_confirm_exec + 0x00000000400eca2c 0xbe esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0xc2 (size before relaxing) + 0x00000000400eca2c ble_sm_sc_confirm_exec + *fill* 0x00000000400ecaea 0x2 + .text.ble_sm_sc_random_exec + 0x00000000400ecaec 0xaf esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0xb7 (size before relaxing) + 0x00000000400ecaec ble_sm_sc_random_exec + *fill* 0x00000000400ecb9b 0x1 + .text.ble_sm_sc_random_rx + 0x00000000400ecb9c 0x1bd esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x1d1 (size before relaxing) + 0x00000000400ecb9c ble_sm_sc_random_rx + *fill* 0x00000000400ecd59 0x3 + .text.ble_sm_sc_public_key_exec + 0x00000000400ecd5c 0xdb esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x00000000400ecd5c ble_sm_sc_public_key_exec + *fill* 0x00000000400ece37 0x1 + .text.ble_sm_sc_public_key_rx + 0x00000000400ece38 0x131 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x138 (size before relaxing) + 0x00000000400ece38 ble_sm_sc_public_key_rx + *fill* 0x00000000400ecf69 0x3 + .text.ble_sm_sc_dhkey_check_exec + 0x00000000400ecf6c 0xcc esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0xdc (size before relaxing) + 0x00000000400ecf6c ble_sm_sc_dhkey_check_exec + .text.ble_sm_sc_dhkey_check_rx + 0x00000000400ed038 0x54 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x5c (size before relaxing) + 0x00000000400ed038 ble_sm_sc_dhkey_check_rx + .text.ble_sm_sc_init + 0x00000000400ed08c 0x13 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x00000000400ed08c ble_sm_sc_init + *fill* 0x00000000400ed09f 0x1 + .text 0x00000000400ed0a0 0x1436 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + 0x17b5 (size before relaxing) + 0x00000000400ed0a0 register_chipv7_phy_empty + 0x00000000400ed0a8 slv_ana_v7_init_empty + 0x00000000400ed1cc r_dump_data + 0x00000000400ed228 API_btdm_get_version + 0x00000000400ed234 r_get_stack_usage + 0x00000000400ed24c r_platform_reset + 0x00000000400ed274 btdm_lpclk_select_src + 0x00000000400ed2d4 btdm_lpclk_set_div + 0x00000000400ed318 btdm_wakeup_request + 0x00000000400ed384 btdm_in_wakeup_requesting_set + 0x00000000400ed3c0 btdm_app_ref_init + 0x00000000400ed414 btdm_rom_ref_init + 0x00000000400ed620 r_rw_schedule + 0x00000000400ed734 btdm_controller_task + 0x00000000400edca4 r_rw_main + 0x00000000400edcb0 r_rw_stop + 0x00000000400edcb8 btdm_controller_enable + 0x00000000400edd00 btdm_controller_disable + 0x00000000400edd50 btdm_controller_init + 0x00000000400ee0cc btdm_controller_deinit + 0x00000000400ee100 btdm_controller_get_mode + 0x00000000400ee10c btdm_controller_set_mode + 0x00000000400ee118 btdm_controller_compile_version_check + 0x00000000400ee124 btdm_controller_get_compile_version + 0x00000000400ee12c btdm_controller_enable_sleep + 0x00000000400ee160 btdm_controller_set_sleep_mode + 0x00000000400ee16c btdm_controller_get_sleep_mode + 0x00000000400ee17c r_rwip_eif_get + 0x00000000400ee1b0 btdm_controller_scan_duplicate_list_clear + 0x00000000400ee1dc esp_bt_controller_shutdown + 0x00000000400ee42c esp_ble_disable_adv_delay + 0x00000000400ee438 esp_ble_switch_phy_coded + 0x00000000400ee440 esp_ble_enable_scan_continue + 0x00000000400ee448 esp_ble_dis_privacy_err_report + 0x00000000400ee450 esp_ble_enable_scan_forever + 0x00000000400ee45c esp_ble_qa_test_enable + 0x00000000400ee468 esp_ble_qa_set_scan_perfer_addr + 0x00000000400ee4b4 esp_ble_qa_get_adv_txed_cnt + 0x00000000400ee4c0 esp_ble_qa_get_scan_rxed_cnt + 0x00000000400ee4cc esp_ble_clear_rand_addr + *fill* 0x00000000400ee4d6 0x2 + .text 0x00000000400ee4d8 0x2ba /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + 0x306 (size before relaxing) + 0x00000000400ee55c coex_schm_wakeup_flag_get + 0x00000000400ee568 coex_schm_wifi_channel_changed_flag_set + 0x00000000400ee578 coex_schm_wifi_channel_changed_flag_get + 0x00000000400ee590 coex_schm_process_in_active + 0x00000000400ee63c coex_schm_process + 0x00000000400ee66c coex_schm_btdm_callback_v2 + 0x00000000400ee688 coex_schm_btdm_callback_v1 + 0x00000000400ee694 coex_wifi_channel_change_btdm_callback + 0x00000000400ee6ac coex_schm_wifi_channel_change_btdm_set_afh + *fill* 0x00000000400ee792 0x2 + .text 0x00000000400ee794 0xa6 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) + 0x1ca (size before relaxing) + 0x00000000400ee798 config_funcs_reset + *fill* 0x00000000400ee83a 0x2 + .text 0x00000000400ee83c 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(co_utils.o) + 0x18 (size before relaxing) + 0x00000000400ee840 config_co_utils_funcs_reset + .text 0x00000000400ee850 0x44 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg.o) + 0x4c (size before relaxing) + 0x00000000400ee854 r_dbg_init + 0x00000000400ee884 config_dbg_funcs_reset + .text 0x00000000400ee894 0x320 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg_task.o) + 0x394 (size before relaxing) + .text 0x00000000400eebb4 0xfe /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) + 0x106 (size before relaxing) + 0x00000000400eebb8 r_ea_interval_duration_req + 0x00000000400eec78 config_ea_funcs_reset + *fill* 0x00000000400eecb2 0x2 + .text 0x00000000400eecb4 0xb8 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) + 0x133 (size before relaxing) + 0x00000000400eecb4 r_eif_init + 0x00000000400eeccc r_eif_deinit + 0x00000000400eece4 r_eif_finish_transfers + 0x00000000400eecfc r_eif_isr + 0x00000000400eed14 r_eif_recv + 0x00000000400eed34 r_eif_send + 0x00000000400eed54 r_eif_flow_off + *fill* 0x00000000400eed6c 0x0 + .text 0x00000000400eed6c 0xba /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_msg.o) + 0xbe (size before relaxing) + 0x00000000400eed7c r_hci_look_for_cmd_desc_hack + 0x00000000400eedcc patch_hci_look_for_dbg_evt_desc + 0x00000000400eede8 hci_look_for_le_evt_desc_esp + 0x00000000400eee08 config_hci_msg_funcs_reset + *fill* 0x00000000400eee26 0x2 + .text 0x00000000400eee28 0x330 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) + 0x380 (size before relaxing) + 0x00000000400eee30 r_hci_bt_acl_bdaddr_unregister_hack + 0x00000000400eeeb0 r_hci_send_2_host_hack + 0x00000000400eefd4 r_hci_bt_acl_bdaddr_register_hack + 0x00000000400ef0cc hci_bt_acl_bdaddr_registered + 0x00000000400ef110 config_hci_funcs_reset + .text 0x00000000400ef158 0x78e /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) + 0x802 (size before relaxing) + 0x00000000400ef72c r_hci_tl_send + 0x00000000400ef8a4 hci_tl_tx_trigger_on_acl_fc + 0x00000000400ef8c8 config_hci_tl_funcs_reset + *fill* 0x00000000400ef8e6 0x2 + .text 0x00000000400ef8e8 0x575 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + 0x6c5 (size before relaxing) + 0x00000000400ef928 r_huart_init + 0x00000000400efc40 r_huart_deinit + 0x00000000400efd80 huart_write + *fill* 0x00000000400efe5d 0x3 + .text 0x00000000400efe60 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_msg.o) + 0x18 (size before relaxing) + 0x00000000400efe64 config_ke_msg_funcs_reset + .text 0x00000000400efe74 0x40 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) + 0x4c (size before relaxing) + 0x00000000400efe7c r_ke_task_init + 0x00000000400efea4 config_ke_task_funcs_reset + .text 0x00000000400efeb4 0x17c /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_lmppdu.o) + 0x1b8 (size before relaxing) + 0x00000000400efec0 lc_lmp_tx_stored + 0x00000000400eff3c r_lc_send_lmp + 0x00000000400effd8 lc_lmp_tx_stored_send + 0x00000000400f0010 lc_lmp_tx_stored_clear + 0x00000000400f0020 config_lc_lmppdu_funcs_reset + .text 0x00000000400f0030 0xa70 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) + 0xb24 (size before relaxing) + 0x00000000400f0038 r_lc_calc_link_key + 0x00000000400f01ac r_lc_end_of_sniff_nego + 0x00000000400f02c4 r_lc_mutual_auth_end2 + 0x00000000400f0490 r_lc_afh_start + 0x00000000400f0504 r_lc_ptt_cmp + 0x00000000400f0588 r_lc_hl_connect + 0x00000000400f05fc r_lc_init_hack + 0x00000000400f0628 r_lc_reset_hack + 0x00000000400f0654 r_lc_start_hack + 0x00000000400f06bc r_lc_rem_sniff + 0x00000000400f07f8 r_lc_enter_sniff_mode + 0x00000000400f094c patch_lc_auth_cmp + 0x00000000400f09b8 lc_get_sniff_timing_control_flag + 0x00000000400f09fc config_lc_funcs_reset + .text 0x00000000400f0aa0 0x131 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sco.o) + 0x171 (size before relaxing) + 0x00000000400f0aa4 r_lc_sco_reset + 0x00000000400f0b00 r_lc_sco_init + 0x00000000400f0b78 bredr_sco_datapath_set + 0x00000000400f0bb0 config_lc_sco_funcs_reset + *fill* 0x00000000400f0bd1 0x3 + .text 0x00000000400f0bd4 0x5d3 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sniff.o) + 0x5eb (size before relaxing) + 0x00000000400f0be0 r_LM_AddSniff + 0x00000000400f1194 config_lc_sniff_funcs_reset + *fill* 0x00000000400f11a7 0x1 + .text 0x00000000400f11a8 0x2e0f /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) + 0x3033 (size before relaxing) + 0x00000000400f11ac lmp_enc_key_size_req_handler + 0x00000000400f1d7c lmp_unsniff_req_handler + 0x00000000400f1eec lmp_sniff_req_handler + 0x00000000400f20c4 lmp_ch_class_req_handler + 0x00000000400f21b4 lc_afh_update_ind_handler + 0x00000000400f223c lc_lmp_rx_handler + 0x00000000400f235c hci_refresh_enc_key_cmd_handler + 0x00000000400f246c lmp_combkey_handler + 0x00000000400f26c8 lmp_feats_res_ext_handler + 0x00000000400f2948 lmp_set_afh_handler + 0x00000000400f2a90 lc_acl_rx_ind_handler + 0x00000000400f2bb4 lmp_not_accepted_ext_handler + 0x00000000400f30b8 hci_rd_rem_ext_feats_cmd_handler + 0x00000000400f3284 lmp_aurand_handler_hack + 0x00000000400f35c0 lc_sync_rx_ind_handler + 0x00000000400f3684 lc_lmp_tx_cfm_handler + 0x00000000400f3b84 hci_create_con_cancel_cmd_handler + 0x00000000400f3be4 hci_sniff_mode_cmd_handler + 0x00000000400f3d00 hci_user_cfm_req_reply_cmd_handler + 0x00000000400f3dc4 hci_user_passkey_req_reply_cmd_handler + 0x00000000400f3e5c lc_reset_lc_default_state_funcs + 0x00000000400f3f30 lc_reset_hci_cmd_handler_table_funcs + 0x00000000400f3fac config_lc_task_funcs_reset + *fill* 0x00000000400f3fb7 0x1 + .text 0x00000000400f3fb8 0x1234 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + 0x1340 (size before relaxing) + 0x00000000400f3fbc r_ld_acl_ssr_set + 0x00000000400f4024 r_ld_sco_stop + 0x00000000400f40b0 r_ld_acl_slot_offset_get + 0x00000000400f4218 r_ld_acl_data_tx + 0x00000000400f4690 r_ld_acl_lmp_flush + 0x00000000400f47c0 r_ld_acl_sniff_wrapper + 0x00000000400f4930 r_ld_acl_start + 0x00000000400f4ff4 ld_acl_all_in_sniff + 0x00000000400f502c r_ld_acl_stop + 0x00000000400f511c ld_lmp_rx_flooding_search + 0x00000000400f516c config_ld_acl_funcs_reset + .text 0x00000000400f51ec 0x5f /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + 0x63 (size before relaxing) + 0x00000000400f5200 config_ld_fm_funcs_reset + *fill* 0x00000000400f524b 0x1 + .text 0x00000000400f524c 0x18d /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld.o) + 0x1b5 (size before relaxing) + 0x00000000400f5290 r_ld_init_hark + 0x00000000400f52f4 r_ld_reset_hark + 0x00000000400f53b8 config_ld_funcs_reset + *fill* 0x00000000400f53d9 0x3 + .text 0x00000000400f53dc 0xfa /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_pscan.o) + 0x11a (size before relaxing) + 0x00000000400f53e8 r_ld_pscan_stop + 0x00000000400f54c4 config_ld_pscan_funcs_reset + *fill* 0x00000000400f54d6 0x2 + .text 0x00000000400f54d8 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sched.o) + 0x2d (size before relaxing) + 0x00000000400f54e0 config_ld_sched_funcs_reset + *fill* 0x00000000400f5501 0x3 + .text 0x00000000400f5504 0x4f /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sscan.o) + 0x57 (size before relaxing) + 0x00000000400f5508 r_ld_sscan_start_hark + 0x00000000400f5540 config_ld_sscan_funcs_reset + *fill* 0x00000000400f5553 0x1 + .text 0x00000000400f5554 0x893 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) + 0x917 (size before relaxing) + 0x00000000400f5d6c config_llc_hci_funcs_reset + *fill* 0x00000000400f5de7 0x1 + .text 0x00000000400f5de8 0x6c9 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) + 0x6ed (size before relaxing) + 0x00000000400f5df0 llcp_length_rsp_pre_handler + 0x00000000400f641c llcp_defalut_state_tab_reset + 0x00000000400f649c config_llc_llcp_funcs_reset + *fill* 0x00000000400f64b1 0x3 + .text 0x00000000400f64b4 0x381 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) + 0x3c5 (size before relaxing) + 0x00000000400f64b8 r_llc_common_nb_of_pkt_comp_evt_send + 0x00000000400f6524 r_llc_stop_hack + 0x00000000400f6540 llc_peer_conn_param_req_not_support_clear + 0x00000000400f6590 r_llc_start + 0x00000000400f67ac llc_peer_conn_param_req_not_support_get + 0x00000000400f67d4 llc_get_hci_pending_pkts + 0x00000000400f67e4 llc_hci_pending_pkts_inc + 0x00000000400f6808 config_llc_funcs_reset + *fill* 0x00000000400f6835 0x3 + .text 0x00000000400f6838 0x158 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_task.o) + 0x174 (size before relaxing) + 0x00000000400f6940 llc_defalut_state_tab_reset + 0x00000000400f6988 config_llc_task_funcs_reset + .text 0x00000000400f6990 0x2d1 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_util.o) + 0x30d (size before relaxing) + 0x00000000400f6990 r_llc_util_set_auth_payl_to_margin + 0x00000000400f69bc r_llc_util_bw_mgt + 0x00000000400f6a84 r_llc_pdu_defer + 0x00000000400f6bc0 r_llc_util_get_free_conhdl + 0x00000000400f6c24 config_llc_util_funcs_reset + *fill* 0x00000000400f6c61 0x3 + .text 0x00000000400f6c64 0x1073 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + 0x113f (size before relaxing) + 0x00000000400f6c80 r_lld_evt_move_to_slave + 0x00000000400f70d4 r_lld_evt_schedule_next + 0x00000000400f7214 r_lld_evt_update_create + 0x00000000400f73ec r_lld_evt_elt_delete + 0x00000000400f7694 r_lld_evt_deffered_elt_handler + 0x00000000400f790c r_lld_evt_init_wrapper + 0x00000000400f7930 btdm_enable_scan_forever + 0x00000000400f7944 ble_ll_qa_test_enable + 0x00000000400f7960 ble_ll_get_adv_txed_cnt + 0x00000000400f796c lld_evt_elt_remove + 0x00000000400f79b0 lld_con_llcp_ind_init + 0x00000000400f79d0 lld_con_term_info_init + 0x00000000400f79f4 lld_evt_adv_delay_time + 0x00000000400f7a10 btdm_disable_adv_delay + 0x00000000400f7a30 coex_ble_lld_last_active_evt_counter_set + 0x00000000400f7a70 coex_ble_lld_last_terminate_evt_wait_reset + 0x00000000400f7aa0 coex_ble_scan_abort_set + 0x00000000400f7ac0 coex_schm_ble_scan_start + 0x00000000400f7b50 coex_schm_ble_scan_stop + 0x00000000400f7c1c config_lld_evt_funcs_reset + *fill* 0x00000000400f7cd7 0x1 + .text 0x00000000400f7cd8 0x2869 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + 0x2bcd (size before relaxing) + 0x00000000400f7cdc r_lld_con_update_after_param_req + 0x00000000400f80a8 r_lld_adv_start + 0x00000000400f8658 r_lld_init + 0x00000000400f8d6c r_lld_con_start + 0x00000000400f987c r_lld_adv_stop_hack + 0x00000000400f98b4 r_lld_scan_stop_hack + 0x00000000400f9914 r_lld_move_to_slave_hack + 0x00000000400f9d60 r_lld_move_to_master_hack + 0x00000000400f9f50 esp_ble_scan_aa_setting + 0x00000000400f9f7c esp_ble_adv_aa_setting + 0x00000000400f9fb0 scan_channel_setting + 0x00000000400f9ff8 esp_ble_scan_channel_setting + 0x00000000400fa018 r_lld_scan_start + 0x00000000400fa400 r_lld_scan_start_hack + 0x00000000400fa4b4 config_lld_funcs_reset + *fill* 0x00000000400fa541 0x3 + .text 0x00000000400fa544 0x369 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + 0x3b5 (size before relaxing) + 0x00000000400fa54c r_lld_pdu_check + 0x00000000400fa7b4 lld_pdu_get_tx_flush_nb + 0x00000000400fa870 config_lld_pdu_funcs_reset + *fill* 0x00000000400fa8ad 0x3 + .text 0x00000000400fa8b0 0x37 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_util.o) + 0x3b (size before relaxing) + 0x00000000400fa8b0 r_lld_util_instant_get + 0x00000000400fa8d4 config_lld_util_funcs_reset + *fill* 0x00000000400fa8e7 0x1 + .text 0x00000000400fa8e8 0xaa4 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_hci.o) + 0xbc0 (size before relaxing) + 0x00000000400fb184 ble_ll_reset_rand_addr + 0x00000000400fb220 llm_hci_cmd_handler_tab_reset + 0x00000000400fb384 config_llm_hci_funcs_reset + .text 0x00000000400fb38c 0x2021 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + 0x230d (size before relaxing) + 0x00000000400fb3f8 r_llm_create_con + 0x00000000400fb5c4 r_llm_init_hack + 0x00000000400fb6dc r_llm_set_scan_en + 0x00000000400fb8a4 r_llm_le_adv_report_ind + 0x00000000400fc194 r_llm_con_req_tx_cfm + 0x00000000400fc364 r_llm_set_adv_en + 0x00000000400fc57c r_llm_test_mode_start_tx + 0x00000000400fc828 r_llm_test_mode_start_rx + 0x00000000400fc924 r_llm_set_scan_param + 0x00000000400fca1c r_llm_set_adv_param + 0x00000000400fcc90 ble_ll_scan_set_perfer_addr + 0x00000000400fcca8 ble_ll_get_scan_rxed_cnt + 0x00000000400fccb4 llm_update_duplicate_scan_exceptional_list + 0x00000000400fcecc r_llm_con_req_ind + 0x00000000400fd170 llm_reset_scan_procedure + 0x00000000400fd1ac llm_set_long_adv_data + 0x00000000400fd294 llm_init_ble_adv_report_flow_contol + 0x00000000400fd2c8 llm_ble_update_adv_flow_control + 0x00000000400fd310 config_llm_funcs_reset + *fill* 0x00000000400fd3ad 0x3 + .text 0x00000000400fd3b0 0x174 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_task.o) + 0x190 (size before relaxing) + 0x00000000400fd4e0 llm_task_default_state_tab_reset + 0x00000000400fd51c config_llm_task_funcs_reset + .text 0x00000000400fd524 0x2f9 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) + 0x371 (size before relaxing) + 0x00000000400fd528 r_llm_end_evt_defer + 0x00000000400fd634 r_llm_pdu_defer + 0x00000000400fd7fc config_llm_util_funcs_reset + *fill* 0x00000000400fd81d 0x3 + .text 0x00000000400fd820 0x193 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) + 0x1c7 (size before relaxing) + 0x00000000400fd824 r_lm_get_nb_acl + 0x00000000400fd884 r_lm_init_wrap + 0x00000000400fd900 r_LM_GetLocalNameSeg + 0x00000000400fd96c r_lm_err_data_rep_en_get + 0x00000000400fd984 config_lm_funcs_reset + *fill* 0x00000000400fd9b3 0x1 + .text 0x00000000400fd9b4 0x11c7 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + 0x1307 (size before relaxing) + 0x00000000400fd9b4 hci_rd_clk_cmd_handler + 0x00000000400fda6c lm_afh_to_handler + 0x00000000400fdd58 hci_wr_scan_en_cmd_handler + 0x00000000400fdf28 hci_host_nb_cmp_pkts_cmd_handler + 0x00000000400fdfd0 hci_set_afh_host_ch_class_cmd_handler + 0x00000000400fe0d8 lm_page_end_ind_handler + 0x00000000400fe4a8 hci_create_con_cancel_cmd_handler_lm + 0x00000000400fe5a0 lm_inq_res_ind_handler + 0x00000000400fe844 lm_page_scan_end_ind_handler + 0x00000000400fea04 coex_schm_set_afh_ch_class + 0x00000000400fea8c lm_reset_hci_cmd_handler_tab + 0x00000000400feb10 lm_reset_lm_default_state_funcs + 0x00000000400feb70 config_lm_task_funcs_reset + *fill* 0x00000000400feb7b 0x1 + .text 0x00000000400feb7c 0xf4 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) + 0x110 (size before relaxing) + 0x00000000400feba8 r_nvds_init + 0x00000000400fec60 config_nvds_funcs_reset + .text 0x00000000400fec70 0x4a /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(osi.o) + 0x56 (size before relaxing) + 0x00000000400fec7c btdm_osi_funcs_register + *fill* 0x00000000400fecba 0x2 + .text 0x00000000400fecbc 0x8d0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + 0x9bc (size before relaxing) + 0x00000000400fedf8 bredr_txpwr_set + 0x00000000400fee40 bredr_txpwr_set_inter + 0x00000000400feeb0 bredr_txpwr_get + 0x00000000400feee0 ble_txpwr_set + 0x00000000400fef48 ble_txpwr_set_inter + 0x00000000400ff03c ble_txpwr_get + 0x00000000400ff0cc r_rf_rw_bt_init + 0x00000000400ff298 r_rf_rw_le_init + 0x00000000400ff424 r_rf_rw_init + 0x00000000400ff53c btdm_rf_bb_init_phase2 + 0x00000000400ff57c config_rf2_espressif_funcs_reset + .text 0x00000000400ff58c 0x167 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) + 0x16b (size before relaxing) + 0x00000000400ff590 esp_get_ble_isr_err_counter + 0x00000000400ff6e0 config_rwble_funcs_reset + *fill* 0x00000000400ff6f3 0x1 + .text 0x00000000400ff6f4 0x1a9 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) + 0x1ad (size before relaxing) + 0x00000000400ff6f8 esp_get_bt_isr_err_counter + 0x00000000400ff87c config_rwbt_funcs_reset + *fill* 0x00000000400ff89d 0x3 + .text 0x00000000400ff8a0 0x634 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + 0x6c0 (size before relaxing) + 0x00000000400ff8bc r_rwip_init + 0x00000000400ffa84 r_rwip_reset_ext + 0x00000000400ffafc r_rwip_sleep + 0x00000000400ffe58 btdm_power_state_active + 0x00000000400ffe6c btdm_get_prevent_sleep_flag + 0x00000000400ffe8c config_rwip_funcs_reset + .text 0x00000000400ffed4 0x62 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(sdk_config.o) + 0x66 (size before relaxing) + 0x00000000400ffed8 sdk_config_set_mask + 0x00000000400ffee8 sdk_config_set_opts + 0x00000000400fff00 sdk_config_set_bt_mode + 0x00000000400fff14 sdk_config_set_bt_sleep_mode + 0x00000000400fff28 sdk_config_set_bt_sleep_enable + *fill* 0x00000000400fff36 0x2 + .text 0x00000000400fff38 0xbe /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + 0xda (size before relaxing) + 0x00000000400fff3c btdm_task_post + 0x00000000400fffc8 btdm_dispatch_work_to_controller + 0x00000000400fffe0 btdm_task_recycle + *fill* 0x00000000400ffff6 0x2 + .text 0x00000000400ffff8 0x126 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vflash.o) + 0x152 (size before relaxing) + 0x0000000040100004 r_flash_init + 0x0000000040100034 r_flash_identify + 0x000000004010009c r_flash_erase + 0x00000000401000c8 r_flash_write + 0x00000000401000f4 r_flash_read + *fill* 0x000000004010011e 0x2 + .text 0x0000000040100120 0x354 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + 0x3d0 (size before relaxing) + 0x0000000040100124 vhci_notify_host_send_available + 0x0000000040100174 vhci_send + 0x0000000040100264 r_vhci_init + 0x00000000401002d8 r_vhci_deinit + 0x0000000040100300 API_vhci_host_check_send_available + 0x000000004010032c API_vhci_host_send_packet + 0x000000004010045c API_vhci_host_register_callback + .text 0x0000000040100474 0x385 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) + 0x3bd (size before relaxing) + 0x0000000040100478 bt_util_buf_lmp_tx_stored_set + 0x00000000401004fc bt_util_buf_lmp_tx_stored_get + 0x0000000040100510 bt_util_buf_lmp_tx_stored_clear + 0x000000004010055c bt_util_buf_lmp_tx_stored_clear_all + 0x00000000401005e4 r_bt_util_buf_init + 0x000000004010079c config_bt_util_buf_funcs_reset + *fill* 0x00000000401007f9 0x3 + .text 0x00000000401007fc 0x1d8 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_sp.o) + 0x214 (size before relaxing) + 0x000000004010080c r_lm_dhkey_calc_init + 0x00000000401009c4 config_bt_util_sp_funcs_reset + .text 0x00000000401009d4 0x422 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ecc_p256.o) + 0x48e (size before relaxing) + 0x00000000401009ec r_ecc_generate_key256_with_check + *fill* 0x0000000040100df6 0x2 + .text 0x0000000040100df8 0x13e /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(intc.o) + 0x16a (size before relaxing) + 0x0000000040100e14 r_intc_init + *fill* 0x0000000040100f36 0x2 + .text.int32_size + 0x0000000040100f38 0x3d esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x0000000040100f75 0x3 + .text.sint32_size + 0x0000000040100f78 0x3c esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.uint64_size + 0x0000000040100fb4 0x6e esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x0000000040101022 0x2 + .text.field_is_zeroish + 0x0000000040101024 0xf4 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.unknown_field_get_packed_size + 0x0000000040101118 0x39 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x0000000040101151 0x3 + .text.int32_pack + 0x0000000040101154 0x5c esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.uint64_pack + 0x00000000401011b0 0x93 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x0000000040101243 0x1 + .text.tag_pack + 0x0000000040101244 0x2c esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.get_type_min_size + 0x0000000040101270 0x30 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.count_packed_elements + 0x00000000401012a0 0x7d esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x000000004010131d 0x3 + .text.parse_uint32 + 0x0000000040101320 0x4f esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x000000004010136f 0x1 + .text.parse_uint64 + 0x0000000040101370 0x8b esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x00000000401013fb 0x1 + .text.binary_data_pack + 0x00000000401013fc 0x22 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x000000004010141e 0x2 + .text.copy_to_little_endian_32 + 0x0000000040101420 0x12 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x0000000040101432 0x2 + .text.copy_to_little_endian_64 + 0x0000000040101434 0x12 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x0000000040101446 0x2 + .text.unknown_field_pack + 0x0000000040101448 0x2c esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.system_free + 0x0000000040101474 0xe esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x0000000040101482 0x2 + .text.system_alloc + 0x0000000040101484 0x10 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.sizeof_elt_in_repeated_array + 0x0000000040101494 0x41 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x00000000401014d5 0x3 + .text.parse_packed_repeated_member + 0x00000000401014d8 0x240 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x248 (size before relaxing) + .text.string_pack + 0x0000000040101718 0x32 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x000000004010174a 0x2 + .text.message_init_generic + 0x000000004010174c 0xce esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x000000004010181a 0x2 + .text.merge_messages + 0x000000004010181c 0x1cd esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x1d1 (size before relaxing) + *fill* 0x00000000401019e9 0x3 + .text.protobuf_c_message_get_packed_size + 0x00000000401019ec 0xce esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x00000000401019ec protobuf_c_message_get_packed_size + *fill* 0x0000000040101aba 0x2 + .text.required_field_get_packed_size + 0x0000000040101abc 0x236 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x0000000040101cf2 0x2 + .text.oneof_field_get_packed_size + 0x0000000040101cf4 0x4a esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x0000000040101d3e 0x2 + .text.optional_field_get_packed_size + 0x0000000040101d40 0x4a esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x0000000040101d8a 0x2 + .text.unlabeled_field_get_packed_size + 0x0000000040101d8c 0x1e esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x22 (size before relaxing) + *fill* 0x0000000040101daa 0x2 + .text.repeated_field_get_packed_size + 0x0000000040101dac 0x2fd esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x00000000401020a9 0x3 + .text.protobuf_c_message_pack + 0x00000000401020ac 0xdd esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x00000000401020ac protobuf_c_message_pack + *fill* 0x0000000040102189 0x3 + .text.prefixed_message_pack + 0x000000004010218c 0x5e esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x00000000401021ea 0x2 + .text.required_field_pack + 0x00000000401021ec 0x1d6 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x00000000401023c2 0x2 + .text.oneof_field_pack + 0x00000000401023c4 0x4c esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.optional_field_pack + 0x0000000040102410 0x4c esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.unlabeled_field_pack + 0x000000004010245c 0x21 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x25 (size before relaxing) + *fill* 0x000000004010247d 0x3 + .text.repeated_field_pack + 0x0000000040102480 0x298 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x2a4 (size before relaxing) + .text.protobuf_c_message_free_unpacked + 0x0000000040102718 0x173 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x0000000040102718 protobuf_c_message_free_unpacked + *fill* 0x000000004010288b 0x1 + .text.protobuf_c_message_unpack + 0x000000004010288c 0x543 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x54b (size before relaxing) + 0x000000004010288c protobuf_c_message_unpack + *fill* 0x0000000040102dcf 0x1 + .text.parse_required_member + 0x0000000040102dd0 0x2e5 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x2f1 (size before relaxing) + *fill* 0x00000000401030b5 0x3 + .text.parse_oneof_member + 0x00000000401030b8 0xa6 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0xae (size before relaxing) + *fill* 0x000000004010315e 0x2 + .text.parse_optional_member + 0x0000000040103160 0x28 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.parse_repeated_member + 0x0000000040103188 0x30 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x34 (size before relaxing) + .text.parse_member + 0x00000000401031b8 0xe9 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x00000000401032a1 0x3 + .text.compare_double + 0x00000000401032a4 0x7b esp-idf/json/libjson.a(cJSON.c.obj) + *fill* 0x000000004010331f 0x1 + .text.add_item_to_array + 0x0000000040103320 0x4c esp-idf/json/libjson.a(cJSON.c.obj) + .text.update_offset + 0x000000004010336c 0x1a esp-idf/json/libjson.a(cJSON.c.obj) + *fill* 0x0000000040103386 0x2 + .text.cJSON_strdup + 0x0000000040103388 0x2e esp-idf/json/libjson.a(cJSON.c.obj) + *fill* 0x00000000401033b6 0x2 + .text.add_item_to_object + 0x00000000401033b8 0x8c esp-idf/json/libjson.a(cJSON.c.obj) + .text.ensure 0x0000000040103444 0xb4 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_New_Item + 0x00000000401034f8 0x1a esp-idf/json/libjson.a(cJSON.c.obj) + *fill* 0x0000000040103512 0x2 + .text.print_string_ptr + 0x0000000040103514 0x17c esp-idf/json/libjson.a(cJSON.c.obj) + 0x180 (size before relaxing) + .text.print_string + 0x0000000040103690 0x11 esp-idf/json/libjson.a(cJSON.c.obj) + *fill* 0x00000000401036a1 0x3 + .text.print_number + 0x00000000401036a4 0x10d esp-idf/json/libjson.a(cJSON.c.obj) + 0x119 (size before relaxing) + *fill* 0x00000000401037b1 0x3 + .text.print_value + 0x00000000401037b4 0x138 esp-idf/json/libjson.a(cJSON.c.obj) + .text.print 0x00000000401038ec 0xb0 esp-idf/json/libjson.a(cJSON.c.obj) + 0xb4 (size before relaxing) + .text.print_array + 0x000000004010399c 0xb2 esp-idf/json/libjson.a(cJSON.c.obj) + 0xba (size before relaxing) + *fill* 0x0000000040103a4e 0x2 + .text.print_object + 0x0000000040103a50 0x172 esp-idf/json/libjson.a(cJSON.c.obj) + 0x182 (size before relaxing) + *fill* 0x0000000040103bc2 0x2 + .text.cJSON_Delete + 0x0000000040103bc4 0x49 esp-idf/json/libjson.a(cJSON.c.obj) + 0x0000000040103bc4 cJSON_Delete + *fill* 0x0000000040103c0d 0x3 + .text.cJSON_Print + 0x0000000040103c10 0x14 esp-idf/json/libjson.a(cJSON.c.obj) + 0x0000000040103c10 cJSON_Print + .text.cJSON_AddItemToArray + 0x0000000040103c24 0x11 esp-idf/json/libjson.a(cJSON.c.obj) + 0x0000000040103c24 cJSON_AddItemToArray + *fill* 0x0000000040103c35 0x3 + .text.cJSON_AddItemToObject + 0x0000000040103c38 0x18 esp-idf/json/libjson.a(cJSON.c.obj) + 0x0000000040103c38 cJSON_AddItemToObject + .text.cJSON_CreateNumber + 0x0000000040103c50 0x62 esp-idf/json/libjson.a(cJSON.c.obj) + 0x0000000040103c50 cJSON_CreateNumber + *fill* 0x0000000040103cb2 0x2 + .text.cJSON_AddNumberToObject + 0x0000000040103cb4 0x2a esp-idf/json/libjson.a(cJSON.c.obj) + 0x32 (size before relaxing) + 0x0000000040103cb4 cJSON_AddNumberToObject + *fill* 0x0000000040103cde 0x2 + .text.cJSON_CreateString + 0x0000000040103ce0 0x2c esp-idf/json/libjson.a(cJSON.c.obj) + 0x34 (size before relaxing) + 0x0000000040103ce0 cJSON_CreateString + .text.cJSON_AddStringToObject + 0x0000000040103d0c 0x26 esp-idf/json/libjson.a(cJSON.c.obj) + 0x2e (size before relaxing) + 0x0000000040103d0c cJSON_AddStringToObject + *fill* 0x0000000040103d32 0x2 + .text.cJSON_CreateArray + 0x0000000040103d34 0x16 esp-idf/json/libjson.a(cJSON.c.obj) + 0x0000000040103d34 cJSON_CreateArray + *fill* 0x0000000040103d4a 0x2 + .text.cJSON_CreateObject + 0x0000000040103d4c 0x16 esp-idf/json/libjson.a(cJSON.c.obj) + 0x0000000040103d4c cJSON_CreateObject + *fill* 0x0000000040103d62 0x2 + .text.cJSON_Duplicate + 0x0000000040103d64 0x8c esp-idf/json/libjson.a(cJSON.c.obj) + 0x94 (size before relaxing) + 0x0000000040103d64 cJSON_Duplicate + .text.esp_qrcode_print_console + 0x0000000040103df0 0x96 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + 0xa2 (size before relaxing) + 0x0000000040103df0 esp_qrcode_print_console + *fill* 0x0000000040103e86 0x2 + .text.esp_qrcode_generate + 0x0000000040103e88 0xe0 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + 0xe4 (size before relaxing) + 0x0000000040103e88 esp_qrcode_generate + .text.getAlignmentPatternPositions + 0x0000000040103f68 0x56 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x0000000040103fbe 0x2 + .text.calcSegmentBitLength + 0x0000000040103fc0 0x9e esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000004010405e 0x2 + .text.numCharCountBits + 0x0000000040104060 0x91 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x00000000401040f1 0x3 + .text.getTotalBits + 0x00000000401040f4 0xe8 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .text.appendBitsToBuffer + 0x00000000401041dc 0x70 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .text.getNumRawDataModules + 0x000000004010424c 0x84 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .text.getNumDataCodewords + 0x00000000401042d0 0x56 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x0000000040104326 0x2 + .text.getModule + 0x0000000040104328 0x6c esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .text.setModule + 0x0000000040104394 0x92 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x0000000040104426 0x2 + .text.setModuleBounded + 0x0000000040104428 0x3f esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x0000000040104467 0x1 + .text.fillRectangle + 0x0000000040104468 0x2b esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x0000000040104493 0x1 + .text.finderPenaltyCountPatterns + 0x0000000040104494 0x97 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x000000004010452b 0x1 + .text.reedSolomonComputeDivisor + 0x000000004010452c 0x80 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .text.initializeFunctionModules + 0x00000000401045ac 0xda esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0xf2 (size before relaxing) + *fill* 0x0000000040104686 0x2 + .text.reedSolomonComputeRemainder + 0x0000000040104688 0x8a esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x0000000040104712 0x2 + .text.addEccAndInterleave + 0x0000000040104714 0x101 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x109 (size before relaxing) + *fill* 0x0000000040104815 0x3 + .text.finderPenaltyAddHistory + 0x0000000040104818 0x14 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .text.finderPenaltyTerminateAndCount + 0x000000004010482c 0x22 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x2a (size before relaxing) + *fill* 0x000000004010484e 0x2 + .text.qrcodegen_getSize + 0x0000000040104850 0x3e esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x0000000040104850 qrcodegen_getSize + *fill* 0x000000004010488e 0x2 + .text.drawCodewords + 0x0000000040104890 0xaa esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0xae (size before relaxing) + *fill* 0x000000004010493a 0x2 + .text.drawWhiteFunctionModules + 0x000000004010493c 0x189 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x199 (size before relaxing) + *fill* 0x0000000040104ac5 0x3 + .text.getPenaltyScore + 0x0000000040104ac8 0x1e6 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x206 (size before relaxing) + *fill* 0x0000000040104cae 0x2 + .text.applyMask + 0x0000000040104cb0 0x1bb esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x1c3 (size before relaxing) + *fill* 0x0000000040104e6b 0x1 + .text.drawFormatBits + 0x0000000040104e6c 0x15a esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x16e (size before relaxing) + *fill* 0x0000000040104fc6 0x2 + .text.qrcodegen_encodeSegmentsAdvanced + 0x0000000040104fc8 0x328 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x368 (size before relaxing) + 0x0000000040104fc8 qrcodegen_encodeSegmentsAdvanced + .text.qrcodegen_getModule + 0x00000000401052f0 0x66 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x6a (size before relaxing) + 0x00000000401052f0 qrcodegen_getModule + *fill* 0x0000000040105356 0x2 + .text.qrcodegen_isAlphanumeric + 0x0000000040105358 0x34 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x0000000040105358 qrcodegen_isAlphanumeric + .text.qrcodegen_isNumeric + 0x000000004010538c 0x34 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x000000004010538c qrcodegen_isNumeric + .text.qrcodegen_calcSegmentBufferSize + 0x00000000401053c0 0x3a esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x00000000401053c0 qrcodegen_calcSegmentBufferSize + *fill* 0x00000000401053fa 0x2 + .text.qrcodegen_makeNumeric + 0x00000000401053fc 0xe8 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0xf0 (size before relaxing) + 0x00000000401053fc qrcodegen_makeNumeric + .text.qrcodegen_makeAlphanumeric + 0x00000000401054e4 0xec esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0xf0 (size before relaxing) + 0x00000000401054e4 qrcodegen_makeAlphanumeric + .text.qrcodegen_encodeText + 0x00000000401055d0 0xeb esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0xff (size before relaxing) + 0x00000000401055d0 qrcodegen_encodeText + *fill* 0x00000000401056bb 0x1 + .text.esp_efuse_read_field_blob + 0x00000000401056bc 0x61 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x65 (size before relaxing) + 0x00000000401056bc esp_efuse_read_field_blob + *fill* 0x000000004010571d 0x3 + .text.esp_efuse_check_errors + 0x0000000040105720 0xd esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x0000000040105720 esp_efuse_check_errors + *fill* 0x000000004010572d 0x3 + .text.check_range_of_bits + 0x0000000040105730 0x52 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x56 (size before relaxing) + *fill* 0x0000000040105782 0x2 + .text.esp_efuse_utility_process + 0x0000000040105784 0x15c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x160 (size before relaxing) + 0x0000000040105784 esp_efuse_utility_process + .text.esp_efuse_utility_read_reg + 0x00000000401058e0 0x77 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x00000000401058e0 esp_efuse_utility_read_reg + *fill* 0x0000000040105957 0x1 + .text.esp_efuse_utility_fill_buff + 0x0000000040105958 0xbe esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x0000000040105958 esp_efuse_utility_fill_buff + *fill* 0x0000000040105a16 0x2 + .text.esp_efuse_utility_count_once + 0x0000000040105a18 0x32 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x0000000040105a18 esp_efuse_utility_count_once + *fill* 0x0000000040105a4a 0x2 + .text.esp_efuse_get_coding_scheme + 0x0000000040105a4c 0x36 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + 0x0000000040105a4c esp_efuse_get_coding_scheme + *fill* 0x0000000040105a82 0x2 + .text.uart_pattern_queue_update + 0x0000000040105a84 0x41 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x0000000040105ac5 0x3 + .text.uart_reenable_intr_mask + 0x0000000040105ac8 0x70 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_word_length + 0x0000000040105b38 0x80 esp-idf/driver/libdriver.a(uart.c.obj) + 0x0000000040105b38 uart_set_word_length + .text.uart_get_word_length + 0x0000000040105bb8 0x40 esp-idf/driver/libdriver.a(uart.c.obj) + 0x0000000040105bb8 uart_get_word_length + .text.uart_set_stop_bits + 0x0000000040105bf8 0x7e esp-idf/driver/libdriver.a(uart.c.obj) + 0x0000000040105bf8 uart_set_stop_bits + *fill* 0x0000000040105c76 0x2 + .text.uart_get_stop_bits + 0x0000000040105c78 0x56 esp-idf/driver/libdriver.a(uart.c.obj) + 0x0000000040105c78 uart_get_stop_bits + *fill* 0x0000000040105cce 0x2 + .text.uart_set_parity + 0x0000000040105cd0 0x56 esp-idf/driver/libdriver.a(uart.c.obj) + 0x0000000040105cd0 uart_set_parity + *fill* 0x0000000040105d26 0x2 + .text.uart_get_parity + 0x0000000040105d28 0x56 esp-idf/driver/libdriver.a(uart.c.obj) + 0x0000000040105d28 uart_get_parity + *fill* 0x0000000040105d7e 0x2 + .text.uart_set_baudrate + 0x0000000040105d80 0xa0 esp-idf/driver/libdriver.a(uart.c.obj) + 0xa4 (size before relaxing) + 0x0000000040105d80 uart_set_baudrate + .text.uart_get_baudrate + 0x0000000040105e20 0xa0 esp-idf/driver/libdriver.a(uart.c.obj) + 0xa4 (size before relaxing) + 0x0000000040105e20 uart_get_baudrate + .text.uart_wait_tx_done + 0x0000000040105ec0 0x1fe esp-idf/driver/libdriver.a(uart.c.obj) + 0x0000000040105ec0 uart_wait_tx_done + *fill* 0x00000000401060be 0x2 + .text.uart_get_buffered_data_len + 0x00000000401060c0 0x88 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000401060c0 uart_get_buffered_data_len + .text.uart_flush_input + 0x0000000040106148 0x1e8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x1f4 (size before relaxing) + 0x0000000040106148 uart_flush_input + 0x0000000040106148 uart_flush + .text.uart_is_driver_installed + 0x0000000040106330 0x1d esp-idf/driver/libdriver.a(uart.c.obj) + 0x0000000040106330 uart_is_driver_installed + *fill* 0x000000004010634d 0x3 + .text.uart_set_select_notif_callback + 0x0000000040106350 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + 0x0000000040106350 uart_set_select_notif_callback + *fill* 0x0000000040106366 0x2 + .text.uart_get_selectlock + 0x0000000040106368 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x0000000040106368 uart_get_selectlock + .text.bootloader_init_mem + 0x0000000040106370 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0xb (size before relaxing) + 0x0000000040106370 bootloader_init_mem + *fill* 0x0000000040106378 0x0 + .text.bootloader_flash_update_id + 0x0000000040106378 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x0000000040106378 bootloader_flash_update_id + .text.bootloader_flash_get_wp_pin + 0x0000000040106388 0x49 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x0000000040106388 bootloader_flash_get_wp_pin + *fill* 0x00000000401063d1 0x3 + .text.s_reserve_irom_region + 0x00000000401063d4 0x14b esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x000000004010651f 0x1 + .text.s_reserve_drom_region + 0x0000000040106520 0x14b esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x000000004010666b 0x1 + .text.esp_mmu_map_init + 0x000000004010666c 0x198 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x19c (size before relaxing) + 0x000000004010666c esp_mmu_map_init + .text.esp_mmu_map + 0x0000000040106804 0x402 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x0000000040106804 esp_mmu_map + *fill* 0x0000000040106c06 0x2 + .text.esp_mmu_unmap + 0x0000000040106c08 0x128 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x0000000040106c08 esp_mmu_unmap + .text.esp_mmu_vaddr_to_paddr + 0x0000000040106d30 0xca esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x0000000040106d30 esp_mmu_vaddr_to_paddr + *fill* 0x0000000040106dfa 0x2 + .text.spi_flash_init_lock + 0x0000000040106dfc 0x27 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x0000000040106dfc spi_flash_init_lock + *fill* 0x0000000040106e23 0x1 + .text.spi_flash_op_lock + 0x0000000040106e24 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x0000000040106e24 spi_flash_op_lock + *fill* 0x0000000040106e36 0x2 + .text.spi_flash_op_unlock + 0x0000000040106e38 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x0000000040106e38 spi_flash_op_unlock + .text.spi_flash_mmap + 0x0000000040106e48 0x95 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x0000000040106e48 spi_flash_mmap + *fill* 0x0000000040106edd 0x3 + .text.spi_flash_munmap + 0x0000000040106ee0 0x43 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x46 (size before relaxing) + 0x0000000040106ee0 spi_flash_munmap + *fill* 0x0000000040106f23 0x1 + .text.spi_flash_cache2phys + 0x0000000040106f24 0x25 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x29 (size before relaxing) + 0x0000000040106f24 spi_flash_cache2phys + *fill* 0x0000000040106f49 0x3 + .text.esp_mspi_get_io + 0x0000000040106f4c 0x58 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x0000000040106f4c esp_mspi_get_io + .text.esp_flash_read_chip_id + 0x0000000040106fa4 0x14 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x0000000040106fa4 esp_flash_read_chip_id + .text.esp_flash_init_default_chip + 0x0000000040106fb8 0xd2 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x0000000040106fb8 esp_flash_init_default_chip + *fill* 0x000000004010708a 0x2 + .text.esp_flash_app_init + 0x000000004010708c 0x1b esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x1f (size before relaxing) + 0x000000004010708c esp_flash_app_init + *fill* 0x00000000401070a7 0x1 + .text.esp_flash_app_enable_os_functions + 0x00000000401070a8 0x22 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x00000000401070a8 esp_flash_app_enable_os_functions + *fill* 0x00000000401070ca 0x2 + .text.esp_crosscore_int_init + 0x00000000401070cc 0x72 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x76 (size before relaxing) + 0x00000000401070cc esp_crosscore_int_init + *fill* 0x000000004010713e 0x2 + .text.esp_ipc_call_and_wait + 0x0000000040107140 0xd1 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + *fill* 0x0000000040107211 0x3 + .text.esp_ipc_init + 0x0000000040107214 0x94 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .text.esp_ipc_call + 0x00000000401072a8 0x15 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x00000000401072a8 esp_ipc_call + *fill* 0x00000000401072bd 0x3 + .text.esp_ipc_call_blocking + 0x00000000401072c0 0x15 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x00000000401072c0 esp_ipc_call_blocking + *fill* 0x00000000401072d5 0x3 + .text.find_entry_and_check_all_reset + 0x00000000401072d8 0x36 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000004010730e 0x2 + .text.find_entry_from_task_handle_and_check_all_reset + 0x0000000040107310 0x37 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x0000000040107347 0x1 + .text.task_wdt_timer_feed + 0x0000000040107348 0x24 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.add_entry + 0x000000004010736c 0x111 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x11d (size before relaxing) + *fill* 0x000000004010747d 0x3 + .text.task_wdt_timeout_abort_xtensa + 0x0000000040107480 0xb7 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x0000000040107480 task_wdt_timeout_abort_xtensa + *fill* 0x0000000040107537 0x1 + .text.task_wdt_timeout_handling + 0x0000000040107538 0xc2 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xc6 (size before relaxing) + *fill* 0x00000000401075fa 0x2 + .text.task_wdt_isr + 0x00000000401075fc 0x178 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x17c (size before relaxing) + .text.esp_task_wdt_add + 0x0000000040107774 0x4d esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x0000000040107774 esp_task_wdt_add + *fill* 0x00000000401077c1 0x3 + .text.subscribe_idle + 0x00000000401077c4 0x6a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x6e (size before relaxing) + *fill* 0x000000004010782e 0x2 + .text.esp_task_wdt_init + 0x0000000040107830 0xf0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xf8 (size before relaxing) + 0x0000000040107830 esp_task_wdt_init + .text.esp_task_wdt_reset + 0x0000000040107920 0x9e esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xa2 (size before relaxing) + 0x0000000040107920 esp_task_wdt_reset + *fill* 0x00000000401079be 0x2 + .text.idle_hook_cb + 0x00000000401079c0 0xa esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xd (size before relaxing) + *fill* 0x00000000401079ca 0x2 + .text.esp_task_wdt_impl_timer_allocate + 0x00000000401079cc 0x7d esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x00000000401079cc esp_task_wdt_impl_timer_allocate + *fill* 0x0000000040107a49 0x3 + .text.esp_task_wdt_impl_timer_feed + 0x0000000040107a4c 0x29 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x0000000040107a4c esp_task_wdt_impl_timer_feed + *fill* 0x0000000040107a75 0x3 + .text.esp_task_wdt_impl_timeout_triggered + 0x0000000040107a78 0x1f esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x0000000040107a78 esp_task_wdt_impl_timeout_triggered + *fill* 0x0000000040107a97 0x1 + .text.esp_task_wdt_impl_timer_restart + 0x0000000040107a98 0x2f esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x0000000040107a98 esp_task_wdt_impl_timer_restart + *fill* 0x0000000040107ac7 0x1 + .text.uart_hal_set_baudrate + 0x0000000040107ac8 0x42 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x0000000040107ac8 uart_hal_set_baudrate + *fill* 0x0000000040107b0a 0x2 + .text.uart_hal_get_baudrate + 0x0000000040107b0c 0x32 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x0000000040107b0c uart_hal_get_baudrate + *fill* 0x0000000040107b3e 0x2 + .text.spi_flash_ll_calculate_clock_reg + 0x0000000040107b40 0x2d esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + *fill* 0x0000000040107b6d 0x3 + .text.get_flash_clock_divider + 0x0000000040107b70 0xa8 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0xb0 (size before relaxing) + .text.spi_flash_cal_clock + 0x0000000040107c18 0x19 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x1d (size before relaxing) + *fill* 0x0000000040107c31 0x3 + .text.spi_flash_hal_init + 0x0000000040107c34 0xe0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x0000000040107c34 spi_flash_hal_init + .text.spi_flash_hal_supports_direct_write + 0x0000000040107d14 0x14 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x0000000040107d14 spi_flash_hal_supports_direct_write + .text.spi_flash_hal_supports_direct_read + 0x0000000040107d28 0x14 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x0000000040107d28 spi_flash_hal_supports_direct_read + .text.esp_cpu_configure_region_protection + 0x0000000040107d3c 0x33 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x0000000040107d3c esp_cpu_configure_region_protection + *fill* 0x0000000040107d6f 0x1 + .text.esp_fill_random + 0x0000000040107d70 0x3b esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + 0x0000000040107d70 esp_fill_random + *fill* 0x0000000040107dab 0x1 + .text.get_idx 0x0000000040107dac 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.generate_mac + 0x0000000040107de8 0x95 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + *fill* 0x0000000040107e7d 0x3 + .text.get_efuse_mac_custom + 0x0000000040107e80 0x8b esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x93 (size before relaxing) + *fill* 0x0000000040107f0b 0x1 + .text.get_efuse_mac_get_default + 0x0000000040107f0c 0xb0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0xb4 (size before relaxing) + .text.get_mac_addr_from_mac_table + 0x0000000040107fbc 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0xa4 (size before relaxing) + .text.esp_efuse_mac_get_default + 0x000000004010805c 0xc esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x10 (size before relaxing) + 0x000000004010805c esp_efuse_mac_get_default + .text.esp_read_mac + 0x0000000040108068 0xc6 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0xd6 (size before relaxing) + 0x0000000040108068 esp_read_mac + *fill* 0x000000004010812e 0x2 + .text.esp_clk_tree_src_get_freq_hz + 0x0000000040108130 0x186 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + 0x1a6 (size before relaxing) + 0x0000000040108130 esp_clk_tree_src_get_freq_hz + *fill* 0x00000000401082b6 0x2 + .text.clk_tree_rtc_slow_calibration + 0x00000000401082b8 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .text.esp_clk_tree_rc_fast_d256_get_freq_hz + 0x0000000040108304 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x0000000040108304 esp_clk_tree_rc_fast_d256_get_freq_hz + *fill* 0x000000004010835e 0x2 + .text.esp_clk_tree_xtal32k_get_freq_hz + 0x0000000040108360 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x0000000040108360 esp_clk_tree_xtal32k_get_freq_hz + *fill* 0x00000000401083ba 0x2 + .text.esp_clk_tree_lp_slow_get_freq_hz + 0x00000000401083bc 0x41 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x00000000401083bc esp_clk_tree_lp_slow_get_freq_hz + *fill* 0x00000000401083fd 0x3 + .text.esp_clk_tree_rc_fast_get_freq_hz + 0x0000000040108400 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x0000000040108400 esp_clk_tree_rc_fast_get_freq_hz + *fill* 0x0000000040108419 0x3 + .text.esp_clk_tree_lp_fast_get_freq_hz + 0x000000004010841c 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x000000004010841c esp_clk_tree_lp_fast_get_freq_hz + *fill* 0x0000000040108472 0x2 + .text.esp_err_to_name + 0x0000000040108474 0x2b esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x0000000040108474 esp_err_to_name + *fill* 0x000000004010849f 0x1 + .text.ets_timer_setfn + 0x00000000401084a0 0x56 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x5a (size before relaxing) + 0x00000000401084a0 os_timer_setfn + 0x00000000401084a0 ets_timer_setfn + *fill* 0x00000000401084f6 0x2 + .text.ets_timer_done + 0x00000000401084f8 0x1a esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x1e (size before relaxing) + 0x00000000401084f8 ets_timer_done + 0x00000000401084f8 os_timer_done + *fill* 0x0000000040108512 0x2 + .text._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleEEUlRS1_E_ET_SA_SA_T0_ + 0x0000000040108514 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleE + 0x0000000040108528 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + *fill* 0x000000004010854a 0x2 + .text._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZ9nvs_closeEUlRS1_E_ET_S6_S6_T0_ + 0x000000004010854c 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZZL24close_handles_and_deinitPKcENKUlR14NVSHandleEntryE_clES2_ + 0x0000000040108560 0x1f esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + *fill* 0x000000004010857f 0x1 + .text._ZSt9__find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZL24close_handles_and_deinitPKcEUlRS1_E_EEET_SC_SC_T0_St18input_iterator_tag + 0x0000000040108580 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + *fill* 0x000000004010859e 0x2 + .text._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZL24close_handles_and_deinitPKcEUlRS1_E_ET_S8_S8_T0_ + 0x00000000401085a0 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + *fill* 0x00000000401085b5 0x3 + .text._ZN3nvs4LockC2Ev + 0x00000000401085b8 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000401085b8 _ZN3nvs4LockC2Ev + 0x00000000401085b8 _ZN3nvs4LockC1Ev + .text._ZN3nvs4LockD2Ev + 0x00000000401085cc 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000401085cc _ZN3nvs4LockD2Ev + 0x00000000401085cc _ZN3nvs4LockD1Ev + .text._ZL19nvs_get_str_or_blobmN3nvs8ItemTypeEPKcPvPj + 0x00000000401085e4 0x64 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x6b (size before relaxing) + *fill* 0x0000000040108648 0x0 + .text._ZN3nvs4Lock4initEv + 0x0000000040108648 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040108648 _ZN3nvs4Lock4initEv + *fill* 0x0000000040108672 0x2 + .text.nvs_flash_init_partition + 0x0000000040108674 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + 0x0000000040108674 nvs_flash_init_partition + *fill* 0x0000000040108696 0x2 + .text.nvs_flash_init + 0x0000000040108698 0xd esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + 0x0000000040108698 nvs_flash_init + *fill* 0x00000000401086a5 0x3 + .text.nvs_erase_key + 0x00000000401086a8 0x27 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + 0x00000000401086a8 nvs_erase_key + *fill* 0x00000000401086cf 0x1 + .text.nvs_commit + 0x00000000401086d0 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x30 (size before relaxing) + 0x00000000401086d0 nvs_commit + *fill* 0x00000000401086f5 0x3 + .text.nvs_set_blob + 0x00000000401086f8 0x2b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x36 (size before relaxing) + 0x00000000401086f8 nvs_set_blob + *fill* 0x0000000040108723 0x1 + .text.nvs_get_blob + 0x0000000040108724 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x18 (size before relaxing) + 0x0000000040108724 nvs_get_blob + .text._ZL24close_handles_and_deinitPKc + 0x0000000040108738 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x46 (size before relaxing) + *fill* 0x0000000040108772 0x2 + .text.nvs_flash_erase_partition + 0x0000000040108774 0x4b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x62 (size before relaxing) + 0x0000000040108774 nvs_flash_erase_partition + *fill* 0x00000000401087bf 0x1 + .text.nvs_flash_erase + 0x00000000401087c0 0xd esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + 0x00000000401087c0 nvs_flash_erase + *fill* 0x00000000401087cd 0x3 + .text.nvs_close + 0x00000000401087d0 0x4a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x52 (size before relaxing) + 0x00000000401087d0 nvs_close + *fill* 0x000000004010881a 0x2 + .text.nvs_open_from_partition + 0x000000004010881c 0x6b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x76 (size before relaxing) + 0x000000004010881c nvs_open_from_partition + *fill* 0x0000000040108887 0x1 + .text.nvs_open + 0x0000000040108888 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040108888 nvs_open + *fill* 0x000000004010889e 0x2 + .text._Z7nvs_setIaEimPKcT_ + 0x00000000401088a0 0x2f esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x36 (size before relaxing) + *fill* 0x00000000401088cf 0x1 + .text.nvs_set_i8 + 0x00000000401088d0 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000401088d0 nvs_set_i8 + .text._Z7nvs_setIhEimPKcT_ + 0x00000000401088e4 0x2b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + *fill* 0x000000004010890f 0x1 + .text.nvs_set_u8 + 0x0000000040108910 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040108910 nvs_set_u8 + .text._Z7nvs_setItEimPKcT_ + 0x0000000040108924 0x2b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + *fill* 0x000000004010894f 0x1 + .text.nvs_set_u16 + 0x0000000040108950 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040108950 nvs_set_u16 + .text._Z7nvs_setImEimPKcT_ + 0x0000000040108964 0x2b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + *fill* 0x000000004010898f 0x1 + .text.nvs_set_u32 + 0x0000000040108990 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x0000000040108990 nvs_set_u32 + .text._Z7nvs_getIaEimPKcPT_ + 0x00000000401089a0 0x2b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + *fill* 0x00000000401089cb 0x1 + .text.nvs_get_i8 + 0x00000000401089cc 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x00000000401089cc nvs_get_i8 + .text._Z7nvs_getIhEimPKcPT_ + 0x00000000401089dc 0x2b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + *fill* 0x0000000040108a07 0x1 + .text.nvs_get_u8 + 0x0000000040108a08 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x0000000040108a08 nvs_get_u8 + .text._Z7nvs_getItEimPKcPT_ + 0x0000000040108a18 0x2b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + *fill* 0x0000000040108a43 0x1 + .text.nvs_get_u16 + 0x0000000040108a44 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x0000000040108a44 nvs_get_u16 + .text._Z7nvs_getImEimPKcPT_ + 0x0000000040108a54 0x2b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + *fill* 0x0000000040108a7f 0x1 + .text.nvs_get_u32 + 0x0000000040108a80 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x0000000040108a80 nvs_get_u32 + .text._ZN9__gnu_cxx5__ops11__pred_iterIZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS3_13BlobIndexNodeEEEUlRKS5_E_EENS0_10_Iter_predIT_EESC_ + 0x0000000040108a90 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEEENKUlRKS2_E_clES6_ + 0x0000000040108ab0 0x45 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x0000000040108af5 0x3 + .text._ZSt9__find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS2_20eraseOrphanDataBlobsERS4_EUlRKS3_E_EEET_SE_SE_T0_St18input_iterator_tag + 0x0000000040108af8 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x1e (size before relaxing) + *fill* 0x0000000040108b12 0x2 + .text._ZSt7find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEZNS2_20eraseOrphanDataBlobsERS4_EUlRKS3_E_ET_SA_SA_T0_ + 0x0000000040108b14 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4c (size before relaxing) + .text._ZSt9__find_ifIN14intrusive_listIN3nvs7Storage14NamespaceEntryEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS2_21createOrOpenNamespaceEPKcbRhEUlRKS3_E_EEET_SG_SG_T0_St18input_iterator_tag + 0x0000000040108b5c 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x0000000040108b7a 0x2 + .text._ZSt7find_ifIN14intrusive_listIN3nvs7Storage14NamespaceEntryEE8iteratorEZNS2_21createOrOpenNamespaceEPKcbRhEUlRKS3_E_ET_SC_SC_T0_ + 0x0000000040108b7c 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x0000000040108b91 0x3 + .text._ZN3nvs4Item6getKeyEPcj + 0x0000000040108b94 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x0000000040108b94 _ZN3nvs4Item6getKeyEPcj + *fill* 0x0000000040108bc1 0x3 + .text._ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE + 0x0000000040108bc4 0x7b esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x7f (size before relaxing) + 0x0000000040108bc4 _ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE + *fill* 0x0000000040108c3f 0x1 + .text._ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetE + 0x0000000040108c40 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x0000000040108c40 _ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetE + .text._ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj + 0x0000000040108c88 0xc0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc8 (size before relaxing) + 0x0000000040108c88 _ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj + .text._ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE + 0x0000000040108d48 0xe3 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xeb (size before relaxing) + 0x0000000040108d48 _ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE + *fill* 0x0000000040108e2b 0x1 + .text._ZN3nvs7Storage17readMultiPageBlobEhPKcPvj + 0x0000000040108e2c 0xe4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xec (size before relaxing) + 0x0000000040108e2c _ZN3nvs7Storage17readMultiPageBlobEhPKcPvj + .text._ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj + 0x0000000040108f10 0x68 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x70 (size before relaxing) + 0x0000000040108f10 _ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj + .text._ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc + 0x0000000040108f78 0x90 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x9c (size before relaxing) + 0x0000000040108f78 _ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc + .text._ZN3nvs7Storage14eraseNamespaceEh + 0x0000000040109008 0x43 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x0000000040109008 _ZN3nvs7Storage14eraseNamespaceEh + *fill* 0x000000004010904b 0x1 + .text._ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj + 0x000000004010904c 0x64 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x68 (size before relaxing) + 0x000000004010904c _ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj + .text._ZN3nvs7Storage22calcEntriesInNamespaceEhRj + 0x00000000401090b0 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x64 (size before relaxing) + 0x00000000401090b0 _ZN3nvs7Storage22calcEntriesInNamespaceEhRj + .text._ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE + 0x0000000040109110 0x84 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x0000000040109110 _ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE + .text._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x0000000040109194 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x3e (size before relaxing) + 0x0000000040109194 _ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + *fill* 0x00000000401091ce 0x2 + .text._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED2Ev + 0x00000000401091d0 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x16 (size before relaxing) + 0x00000000401091d0 _ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED1Ev + 0x00000000401091d0 _ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED2Ev + *fill* 0x00000000401091e2 0x2 + .text._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + 0x00000000401091e4 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000401091e4 _ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + *fill* 0x0000000040109205 0x3 + .text._ZN3nvs7Storage15clearNamespacesEv + 0x0000000040109208 0xb esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xe (size before relaxing) + 0x0000000040109208 _ZN3nvs7Storage15clearNamespacesEv + *fill* 0x0000000040109213 0x1 + .text._ZN3nvs7StorageD2Ev + 0x0000000040109214 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x17 (size before relaxing) + 0x0000000040109214 _ZN3nvs7StorageD2Ev + 0x0000000040109214 _ZN3nvs7StorageD1Ev + *fill* 0x0000000040109224 0x0 + .text._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE17clearAndFreeNodesEv + 0x0000000040109224 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x0000000040109224 _ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE17clearAndFreeNodesEv + *fill* 0x0000000040109245 0x3 + .text._ZN3nvs7Storage4initEmm + 0x0000000040109248 0x135 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x141 (size before relaxing) + 0x0000000040109248 _ZN3nvs7Storage4initEmm + *fill* 0x000000004010937d 0x3 + .text._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE17clearAndFreeNodesEv + 0x0000000040109380 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x0000000040109380 _ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE17clearAndFreeNodesEv + *fill* 0x00000000401093a1 0x3 + .text._ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE + 0x00000000401093a4 0x1e1 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x1ed (size before relaxing) + 0x00000000401093a4 _ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE + *fill* 0x0000000040109585 0x3 + .text._ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj + 0x0000000040109588 0x248 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x268 (size before relaxing) + 0x0000000040109588 _ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj + .text._ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh + 0x00000000401097d0 0xda esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xe2 (size before relaxing) + 0x00000000401097d0 _ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh + *fill* 0x00000000401098aa 0x2 + .text._ZN3nvs15NVSHandleSimple6commitEv + 0x00000000401098ac 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000401098ac _ZN3nvs15NVSHandleSimple6commitEv + *fill* 0x00000000401098be 0x2 + .text._ZN3nvs15NVSHandleSimpleD2Ev + 0x00000000401098c0 0x19 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x1d (size before relaxing) + 0x00000000401098c0 _ZN3nvs15NVSHandleSimpleD2Ev + 0x00000000401098c0 _ZN3nvs15NVSHandleSimpleD1Ev + *fill* 0x00000000401098d9 0x3 + .text._ZN3nvs15NVSHandleSimpleD0Ev + 0x00000000401098dc 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x16 (size before relaxing) + 0x00000000401098dc _ZN3nvs15NVSHandleSimpleD0Ev + *fill* 0x00000000401098ee 0x2 + .text._ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj + 0x00000000401098f0 0x35 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000401098f0 _ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj + *fill* 0x0000000040109925 0x3 + .text._ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj + 0x0000000040109928 0x31 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x0000000040109928 _ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj + *fill* 0x0000000040109959 0x3 + .text._ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj + 0x000000004010995c 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x000000004010995c _ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj + *fill* 0x0000000040109982 0x2 + .text._ZN3nvs15NVSHandleSimple10get_stringEPKcPcj + 0x0000000040109984 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x26 (size before relaxing) + 0x0000000040109984 _ZN3nvs15NVSHandleSimple10get_stringEPKcPcj + *fill* 0x00000000401099a6 0x2 + .text._ZN3nvs15NVSHandleSimple8get_blobEPKcPvj + 0x00000000401099a8 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x26 (size before relaxing) + 0x00000000401099a8 _ZN3nvs15NVSHandleSimple8get_blobEPKcPvj + *fill* 0x00000000401099ca 0x2 + .text._ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ + 0x00000000401099cc 0x3d esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000401099cc _ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ + *fill* 0x0000000040109a09 0x3 + .text._ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj + 0x0000000040109a0c 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x0000000040109a0c _ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj + *fill* 0x0000000040109a31 0x3 + .text._ZN3nvs15NVSHandleSimple10erase_itemEPKc + 0x0000000040109a34 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x0000000040109a34 _ZN3nvs15NVSHandleSimple10erase_itemEPKc + *fill* 0x0000000040109a61 0x3 + .text._ZN3nvs15NVSHandleSimple9erase_allEv + 0x0000000040109a64 0x29 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x0000000040109a64 _ZN3nvs15NVSHandleSimple9erase_allEv + *fill* 0x0000000040109a8d 0x3 + .text._ZN3nvs15NVSHandleSimple20get_used_entry_countERj + 0x0000000040109a90 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x0000000040109a90 _ZN3nvs15NVSHandleSimple20get_used_entry_countERj + *fill* 0x0000000040109aba 0x2 + .text._ZN3nvs12NVSPartitionD2Ev + 0x0000000040109abc 0xf esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x0000000040109abc _ZN3nvs12NVSPartitionD2Ev + 0x0000000040109abc _ZN3nvs12NVSPartitionD1Ev + *fill* 0x0000000040109acb 0x1 + .text._ZN3nvs12NVSPartition8read_rawEjPvj + 0x0000000040109acc 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x0000000040109acc _ZN3nvs12NVSPartition8read_rawEjPvj + *fill* 0x0000000040109ae1 0x3 + .text._ZN3nvs12NVSPartition4readEjPvj + 0x0000000040109ae4 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x0000000040109ae4 _ZN3nvs12NVSPartition4readEjPvj + *fill* 0x0000000040109b05 0x3 + .text._ZN3nvs12NVSPartition9write_rawEjPKvj + 0x0000000040109b08 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x0000000040109b08 _ZN3nvs12NVSPartition9write_rawEjPKvj + *fill* 0x0000000040109b1d 0x3 + .text._ZN3nvs12NVSPartition5writeEjPKvj + 0x0000000040109b20 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x0000000040109b20 _ZN3nvs12NVSPartition5writeEjPKvj + *fill* 0x0000000040109b41 0x3 + .text._ZN3nvs12NVSPartition11erase_rangeEjj + 0x0000000040109b44 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x14 (size before relaxing) + 0x0000000040109b44 _ZN3nvs12NVSPartition11erase_rangeEjj + .text._ZN3nvs12NVSPartitionD0Ev + 0x0000000040109b54 0x17 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x0000000040109b54 _ZN3nvs12NVSPartitionD0Ev + *fill* 0x0000000040109b6b 0x1 + .text._ZN3nvs12NVSPartitionC2EPK15esp_partition_t + 0x0000000040109b6c 0x1f esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x0000000040109b6c _ZN3nvs12NVSPartitionC2EPK15esp_partition_t + 0x0000000040109b6c _ZN3nvs12NVSPartitionC1EPK15esp_partition_t + *fill* 0x0000000040109b8b 0x1 + .text._ZN3nvs19NVSPartitionManagerD2Ev + 0x0000000040109b8c 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x0000000040109b8c _ZN3nvs19NVSPartitionManagerD2Ev + 0x0000000040109b8c _ZN3nvs19NVSPartitionManagerD1Ev + *fill* 0x0000000040109b96 0x2 + .text._ZN3nvs19NVSPartitionManagerD0Ev + 0x0000000040109b98 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x0000000040109b98 _ZN3nvs19NVSPartitionManagerD0Ev + *fill* 0x0000000040109baa 0x2 + .text._ZZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKcENKUlRNS_7StorageEE_clES4_ + 0x0000000040109bac 0x1d esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + *fill* 0x0000000040109bc9 0x3 + .text._ZSt9__find_ifIN14intrusive_listIN3nvs7StorageEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS1_19NVSPartitionManager24lookup_storage_from_nameEPKcEUlRS2_E_EEET_SE_SE_T0_St18input_iterator_tag + 0x0000000040109bcc 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + *fill* 0x0000000040109bea 0x2 + .text._ZSt7find_ifIN14intrusive_listIN3nvs7StorageEE8iteratorEZNS1_19NVSPartitionManager24lookup_storage_from_nameEPKcEUlRS2_E_ET_SA_SA_T0_ + 0x0000000040109bec 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + *fill* 0x0000000040109c01 0x3 + .text._ZN3nvs7StorageC2EPNS_9PartitionE + 0x0000000040109c04 0x2e esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x0000000040109c04 _ZN3nvs7StorageC1EPNS_9PartitionE + 0x0000000040109c04 _ZN3nvs7StorageC2EPNS_9PartitionE + *fill* 0x0000000040109c32 0x2 + .text._ZN3nvs19NVSPartitionManager12get_instanceEv + 0x0000000040109c34 0x39 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x0000000040109c34 _ZN3nvs19NVSPartitionManager12get_instanceEv + *fill* 0x0000000040109c6d 0x3 + .text._ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc + 0x0000000040109c70 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x14 (size before relaxing) + 0x0000000040109c70 _ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc + .text._ZN3nvs19NVSPartitionManager11init_customEPNS_9PartitionEmm + 0x0000000040109c80 0x94 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x9c (size before relaxing) + 0x0000000040109c80 _ZN3nvs19NVSPartitionManager11init_customEPNS_9PartitionEmm + .text._ZN3nvs19NVSPartitionManager14init_partitionEPKc + 0x0000000040109d14 0x70 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x7c (size before relaxing) + 0x0000000040109d14 _ZN3nvs19NVSPartitionManager14init_partitionEPKc + .text._ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE + 0x0000000040109d84 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x0000000040109d84 _ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE + .text._ZN3nvs19NVSPartitionManager16deinit_partitionEPKc + 0x0000000040109da8 0x91 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x0000000040109da8 _ZN3nvs19NVSPartitionManager16deinit_partitionEPKc + *fill* 0x0000000040109e39 0x3 + .text._ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE + 0x0000000040109e3c 0x90 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x94 (size before relaxing) + 0x0000000040109e3c _ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE + .text._ZN3nvs8HashList4findEjRKNS_4ItemE + 0x0000000040109ecc 0x46 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4a (size before relaxing) + 0x0000000040109ecc _ZN3nvs8HashList4findEjRKNS_4ItemE + *fill* 0x0000000040109f12 0x2 + .text._ZN3nvs8HashList5clearEv + 0x0000000040109f14 0x23 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x0000000040109f14 _ZN3nvs8HashList5clearEv + *fill* 0x0000000040109f37 0x1 + .text._ZN3nvs8HashListD2Ev + 0x0000000040109f38 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0xe (size before relaxing) + 0x0000000040109f38 _ZN3nvs8HashListD2Ev + 0x0000000040109f38 _ZN3nvs8HashListD1Ev + *fill* 0x0000000040109f42 0x2 + .text._ZN3nvs8HashList5eraseEj + 0x0000000040109f44 0x6e esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x0000000040109f44 _ZN3nvs8HashList5eraseEj + *fill* 0x0000000040109fb2 0x2 + .text._ZN3nvs8HashList6insertERKNS_4ItemEj + 0x0000000040109fb4 0x75 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x79 (size before relaxing) + 0x0000000040109fb4 _ZN3nvs8HashList6insertERKNS_4ItemEj + *fill* 0x000000004010a029 0x3 + .text._ZN3nvs4ItemC2EhNS_8ItemTypeEhPKch + 0x000000004010a02c 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x000000004010a02c _ZN3nvs4ItemC1EhNS_8ItemTypeEhPKch + 0x000000004010a02c _ZN3nvs4ItemC2EhNS_8ItemTypeEhPKch + .text._ZN3nvs4PageC2Ev + 0x000000004010a07c 0x2e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x000000004010a07c _ZN3nvs4PageC1Ev + 0x000000004010a07c _ZN3nvs4PageC2Ev + *fill* 0x000000004010a0aa 0x2 + .text._ZN3nvs4Page6Header14calculateCrc32Ev + 0x000000004010a0ac 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x000000004010a0ac _ZN3nvs4Page6Header14calculateCrc32Ev + .text._ZN3nvs4Page10initializeEv + 0x000000004010a0c0 0x6f esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x000000004010a0c0 _ZN3nvs4Page10initializeEv + *fill* 0x000000004010a12f 0x1 + .text._ZNK3nvs4Page12getSeqNumberERm + 0x000000004010a130 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x000000004010a130 _ZNK3nvs4Page12getSeqNumberERm + *fill* 0x000000004010a15d 0x3 + .text._ZN3nvs4Page12setSeqNumberEm + 0x000000004010a160 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x000000004010a160 _ZN3nvs4Page12setSeqNumberEm + *fill* 0x000000004010a175 0x3 + .text._ZN3nvs4Page5eraseEv + 0x000000004010a178 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x000000004010a178 _ZN3nvs4Page5eraseEv + *fill* 0x000000004010a1b2 0x2 + .text._ZN3nvs4Page11markFreeingEv + 0x000000004010a1b4 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x000000004010a1b4 _ZN3nvs4Page11markFreeingEv + *fill* 0x000000004010a1e1 0x3 + .text._ZN3nvs4Page8markFullEv + 0x000000004010a1e4 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x000000004010a1e4 _ZN3nvs4Page8markFullEv + *fill* 0x000000004010a202 0x2 + .text._ZNK3nvs4Page18getVarDataTailroomEv + 0x000000004010a204 0x31 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x000000004010a204 _ZNK3nvs4Page18getVarDataTailroomEv + *fill* 0x000000004010a235 0x3 + .text._ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE + 0x000000004010a238 0x4c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x000000004010a238 _ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE + .text._ZN3nvs4Page10writeEntryERKNS_4ItemE + 0x000000004010a284 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x000000004010a284 _ZN3nvs4Page10writeEntryERKNS_4ItemE + .text._ZN3nvs4Page9copyItemsERS0_ + 0x000000004010a2e0 0xb8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0xc0 (size before relaxing) + 0x000000004010a2e0 _ZN3nvs4Page9copyItemsERS0_ + .text._ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE + 0x000000004010a398 0x70 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x000000004010a398 _ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE + .text._ZN3nvs4Page14writeEntryDataEPKhj + 0x000000004010a408 0x7c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x000000004010a408 _ZN3nvs4Page14writeEntryDataEPKhj + .text._ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh + 0x000000004010a484 0x1c8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x1e8 (size before relaxing) + 0x000000004010a484 _ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh + .text._ZN3nvs4Page17eraseEntryAndSpanEj + 0x000000004010a64c 0x124 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x134 (size before relaxing) + 0x000000004010a64c _ZN3nvs4Page17eraseEntryAndSpanEj + .text._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE + 0x000000004010a770 0x230 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x238 (size before relaxing) + 0x000000004010a770 _ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE + .text._ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE + 0x000000004010a9a0 0xfd esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x101 (size before relaxing) + 0x000000004010a9a0 _ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE + *fill* 0x000000004010aa9d 0x3 + .text._ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE + 0x000000004010aaa0 0xf9 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x101 (size before relaxing) + 0x000000004010aaa0 _ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE + *fill* 0x000000004010ab99 0x3 + .text._ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x000000004010ab9c 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x38 (size before relaxing) + 0x000000004010ab9c _ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + .text._ZN3nvs4Page15mLoadEntryTableEv + 0x000000004010abd0 0x3e0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x3fc (size before relaxing) + 0x000000004010abd0 _ZN3nvs4Page15mLoadEntryTableEv + .text._ZN3nvs4Page4loadEPNS_9PartitionEm + 0x000000004010afb0 0x120 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x128 (size before relaxing) + 0x000000004010afb0 _ZN3nvs4Page4loadEPNS_9PartitionEm + .text._ZZN3nvs11PageManager4loadEPNS_9PartitionEmmENKUlRKNS_4PageEE_clES5_ + 0x000000004010b0d0 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + *fill* 0x000000004010b0f5 0x3 + .text._ZSt9__find_ifIN14intrusive_listIN3nvs4PageEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS1_11PageManager4loadEPNS1_9PartitionEmmEUlRKS2_E_EEET_SF_SF_T0_St18input_iterator_tag + 0x000000004010b0f8 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + *fill* 0x000000004010b116 0x2 + .text._ZSt7find_ifIN14intrusive_listIN3nvs4PageEE8iteratorEZNS1_11PageManager4loadEPNS1_9PartitionEmmEUlRKS2_E_ET_SB_SB_T0_ + 0x000000004010b118 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + *fill* 0x000000004010b12d 0x3 + .text._ZN14intrusive_listIN3nvs4PageEE5clearEv + 0x000000004010b130 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x000000004010b130 _ZN14intrusive_listIN3nvs4PageEE5clearEv + *fill* 0x000000004010b145 0x3 + .text._ZN3nvs11PageManager12activatePageEv + 0x000000004010b148 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x4c (size before relaxing) + 0x000000004010b148 _ZN3nvs11PageManager12activatePageEv + .text._ZN3nvs11PageManager14requestNewPageEv + 0x000000004010b190 0xb0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0xc0 (size before relaxing) + 0x000000004010b190 _ZN3nvs11PageManager14requestNewPageEv + .text._ZN14intrusive_listIN3nvs4PageEE6insertENS2_8iteratorEPS1_ + 0x000000004010b240 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x000000004010b240 _ZN14intrusive_listIN3nvs4PageEE6insertENS2_8iteratorEPS1_ + .text._ZN3nvs11PageManager4loadEPNS_9PartitionEmm + 0x000000004010b278 0x246 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x26e (size before relaxing) + 0x000000004010b278 _ZN3nvs11PageManager4loadEPNS_9PartitionEmm + *fill* 0x000000004010b4be 0x2 + .text._ZN3nvs16partition_lookup20lookup_nvs_partitionEPKcPPNS_12NVSPartitionE + 0x000000004010b4c0 0x45 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + 0x49 (size before relaxing) + 0x000000004010b4c0 _ZN3nvs16partition_lookup20lookup_nvs_partitionEPKcPPNS_12NVSPartitionE + *fill* 0x000000004010b505 0x3 + .text._ZNK3nvs4Item14calculateCrc32Ev + 0x000000004010b508 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x000000004010b508 _ZNK3nvs4Item14calculateCrc32Ev + .text._ZNK3nvs4Item26calculateCrc32WithoutValueEv + 0x000000004010b534 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x000000004010b534 _ZNK3nvs4Item26calculateCrc32WithoutValueEv + .text._ZN3nvs4Item14calculateCrc32EPKhj + 0x000000004010b55c 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x000000004010b55c _ZN3nvs4Item14calculateCrc32EPKhj + .text.phy_update_wifi_mac_time + 0x000000004010b570 0x2a esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x000000004010b59a 0x2 + .text.load_cal_data_from_nvs_handle + 0x000000004010b59c 0x126 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x136 (size before relaxing) + *fill* 0x000000004010b6c2 0x2 + .text.store_cal_data_to_nvs_handle + 0x000000004010b6c4 0xec esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0xfc (size before relaxing) + .text.esp_phy_rf_get_on_ts + 0x000000004010b7b0 0xc esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x000000004010b7b0 esp_phy_rf_get_on_ts + .text.esp_phy_disable + 0x000000004010b7bc 0x46 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x4a (size before relaxing) + 0x000000004010b7bc esp_phy_disable + *fill* 0x000000004010b802 0x2 + .text.esp_wifi_bt_power_domain_off + 0x000000004010b804 0x48 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x000000004010b804 esp_wifi_power_domain_off + 0x000000004010b804 esp_wifi_bt_power_domain_off + .text.esp_phy_get_init_data + 0x000000004010b84c 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x000000004010b84c esp_phy_get_init_data + .text.esp_phy_load_cal_data_from_nvs + 0x000000004010b854 0x4c esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x50 (size before relaxing) + 0x000000004010b854 esp_phy_load_cal_data_from_nvs + .text.esp_phy_store_cal_data_to_nvs + 0x000000004010b8a0 0x24 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x2c (size before relaxing) + 0x000000004010b8a0 esp_phy_store_cal_data_to_nvs + .text.esp_phy_load_cal_and_init + 0x000000004010b8c4 0x14b esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x163 (size before relaxing) + 0x000000004010b8c4 esp_phy_load_cal_and_init + *fill* 0x000000004010ba0f 0x1 + .text.esp_phy_enable + 0x000000004010ba10 0x6a esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x72 (size before relaxing) + 0x000000004010ba10 esp_phy_enable + *fill* 0x000000004010ba7a 0x2 + .text.esp_netif_list_lock + 0x000000004010ba7c 0x35 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x000000004010ba7c esp_netif_list_lock + *fill* 0x000000004010bab1 0x3 + .text.esp_netif_list_unlock + 0x000000004010bab4 0x40 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x000000004010bab4 esp_netif_list_unlock + .text.esp_netif_add_to_list + 0x000000004010baf4 0x49 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x000000004010baf4 esp_netif_add_to_list + *fill* 0x000000004010bb3d 0x3 + .text.esp_netif_remove_from_list + 0x000000004010bb40 0x71 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x78 (size before relaxing) + 0x000000004010bb40 esp_netif_remove_from_list + *fill* 0x000000004010bbb1 0x3 + .text.esp_netif_get_nr_of_ifs + 0x000000004010bbb4 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x000000004010bbb4 esp_netif_get_nr_of_ifs + *fill* 0x000000004010bbbe 0x2 + .text.esp_netif_next_unsafe + 0x000000004010bbc0 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x000000004010bbc0 esp_netif_next_unsafe + *fill* 0x000000004010bbf1 0x3 + .text.esp_netif_is_netif_listed + 0x000000004010bbf4 0x54 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x000000004010bbf4 esp_netif_is_netif_listed + .text.esp_netif_get_handle_from_ifkey + 0x000000004010bc48 0x5f esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x66 (size before relaxing) + 0x000000004010bc48 esp_netif_get_handle_from_ifkey + *fill* 0x000000004010bca7 0x1 + .text.esp_netif_is_active + 0x000000004010bca8 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x12 (size before relaxing) + *fill* 0x000000004010bcb6 0x2 + .text.esp_netif_set_default_netif_internal + 0x000000004010bcb8 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xe (size before relaxing) + *fill* 0x000000004010bcc2 0x2 + .text.esp_netif_lwip_ipc_call_msg + 0x000000004010bcc4 0x35 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x41 (size before relaxing) + *fill* 0x000000004010bcf9 0x3 + .text.esp_netif_lwip_ipc_call + 0x000000004010bcfc 0x21 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000004010bd1d 0x3 + .text.esp_netif_update_default_netif + 0x000000004010bd20 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_lwip_ipc_no_args + 0x000000004010bd34 0x1d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000004010bd51 0x3 + .text.esp_netif_api_cb + 0x000000004010bd54 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000004010bd6f 0x1 + .text.tcpip_init_done + 0x000000004010bd70 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xe (size before relaxing) + *fill* 0x000000004010bd7a 0x2 + .text.esp_netif_config_sanity_check + 0x000000004010bd7c 0x6e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000004010bdea 0x2 + .text.set_lwip_netif_callback + 0x000000004010bdec 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x13 (size before relaxing) + *fill* 0x000000004010bdfc 0x0 + .text.esp_netif_set_mac_api + 0x000000004010bdfc 0x2a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x000000004010bdfc esp_netif_set_mac_api + *fill* 0x000000004010be26 0x2 + .text.esp_netif_set_ip_old_info_api + 0x000000004010be28 0x2e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000004010be56 0x2 + .text.esp_netif_dhcps_cb + 0x000000004010be58 0x92 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000004010beea 0x2 + .text.esp_netif_start_ip_lost_timer + 0x000000004010beec 0x29 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000004010bf15 0x3 + .text.netif_set_mldv6_flag + 0x000000004010bf18 0x16 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x1a (size before relaxing) + *fill* 0x000000004010bf2e 0x2 + .text.esp_netif_internal_nd6_cb + 0x000000004010bf30 0xe6 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xea (size before relaxing) + *fill* 0x000000004010c016 0x2 + .text.netif_set_garp_flag + 0x000000004010c018 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x13 (size before relaxing) + *fill* 0x000000004010c028 0x0 + .text.esp_netif_ip_lost_timer + 0x000000004010c028 0x8a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8e (size before relaxing) + *fill* 0x000000004010c0b2 0x2 + .text.netif_send_mldv6 + 0x000000004010c0b4 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x22 (size before relaxing) + *fill* 0x000000004010c0cf 0x1 + .text.esp_netif_init_configuration + 0x000000004010c0d0 0x104 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.netif_unset_garp_flag + 0x000000004010c1d4 0xd esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x10 (size before relaxing) + *fill* 0x000000004010c1e1 0x3 + .text.netif_unset_mldv6_flag + 0x000000004010c1e4 0xd esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x10 (size before relaxing) + *fill* 0x000000004010c1f1 0x3 + .text.esp_netif_lwip_remove + 0x000000004010c1f4 0x3c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x48 (size before relaxing) + .text.esp_netif_lwip_remove_api + 0x000000004010c230 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x10 (size before relaxing) + .text.netif_send_garp + 0x000000004010c23c 0x21 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + *fill* 0x000000004010c25d 0x3 + .text.remove_lwip_netif_callback + 0x000000004010c260 0x16 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000004010c276 0x2 + .text.esp_netif_lwip_add + 0x000000004010c278 0x75 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x79 (size before relaxing) + *fill* 0x000000004010c2ed 0x3 + .text.esp_netif_start_api + 0x000000004010c2f0 0x17a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x192 (size before relaxing) + *fill* 0x000000004010c46a 0x2 + .text.esp_netif_stop_api + 0x000000004010c46c 0x79 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8d (size before relaxing) + *fill* 0x000000004010c4e5 0x3 + .text.dns_clear_servers + 0x000000004010c4e8 0x2a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000004010c512 0x2 + .text.esp_netif_dhcpc_start_api + 0x000000004010c514 0xc9 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xcd (size before relaxing) + *fill* 0x000000004010c5dd 0x3 + .text.esp_netif_up_api + 0x000000004010c5e0 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x3d (size before relaxing) + *fill* 0x000000004010c611 0x3 + .text.esp_netif_down_api + 0x000000004010c614 0xa6 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xba (size before relaxing) + *fill* 0x000000004010c6ba 0x2 + .text.esp_ip4addr_ntoa + 0x000000004010c6bc 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x14 (size before relaxing) + 0x000000004010c6bc esp_ip4addr_ntoa + .text.esp_netif_init + 0x000000004010c6cc 0xd5 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xf1 (size before relaxing) + 0x000000004010c6cc esp_netif_init + *fill* 0x000000004010c7a1 0x3 + .text.esp_netif_destroy + 0x000000004010c7a4 0x6e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x7e (size before relaxing) + 0x000000004010c7a4 esp_netif_destroy + *fill* 0x000000004010c812 0x2 + .text.esp_netif_new + 0x000000004010c814 0x200 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x20c (size before relaxing) + 0x000000004010c814 esp_netif_new + .text.esp_netif_attach + 0x000000004010ca14 0x3e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x000000004010ca14 esp_netif_attach + *fill* 0x000000004010ca52 0x2 + .text.esp_netif_set_driver_config + 0x000000004010ca54 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x000000004010ca54 esp_netif_set_driver_config + *fill* 0x000000004010ca85 0x3 + .text.esp_netif_set_mac + 0x000000004010ca88 0x29 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x000000004010ca88 esp_netif_set_mac + *fill* 0x000000004010cab1 0x3 + .text.esp_netif_start + 0x000000004010cab4 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x000000004010cab4 esp_netif_start + .text.esp_netif_stop + 0x000000004010cac8 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x000000004010cac8 esp_netif_stop + .text.esp_netif_netstack_buf_ref + 0x000000004010cadc 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xe (size before relaxing) + 0x000000004010cadc esp_netif_netstack_buf_ref + *fill* 0x000000004010cae6 0x2 + .text.esp_netif_netstack_buf_free + 0x000000004010cae8 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xe (size before relaxing) + 0x000000004010cae8 esp_netif_netstack_buf_free + *fill* 0x000000004010caf2 0x2 + .text.esp_netif_dhcpc_start + 0x000000004010caf4 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x000000004010caf4 esp_netif_dhcpc_start + .text.esp_netif_get_hostname + 0x000000004010cb08 0x29 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x000000004010cb08 esp_netif_get_hostname + *fill* 0x000000004010cb31 0x3 + .text.esp_netif_up + 0x000000004010cb34 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x000000004010cb34 esp_netif_up + .text.esp_netif_down + 0x000000004010cb48 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x000000004010cb48 esp_netif_down + .text.esp_netif_update_default_netif_lwip + 0x000000004010cb5c 0x102 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x11a (size before relaxing) + *fill* 0x000000004010cc5e 0x2 + .text.esp_netif_get_old_ip_info + 0x000000004010cc60 0x2d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x000000004010cc60 esp_netif_get_old_ip_info + *fill* 0x000000004010cc8d 0x3 + .text.esp_netif_get_ip_info + 0x000000004010cc90 0x5d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x000000004010cc90 esp_netif_get_ip_info + *fill* 0x000000004010cced 0x3 + .text.esp_netif_set_old_ip_info + 0x000000004010ccf0 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x000000004010ccf0 esp_netif_set_old_ip_info + .text.esp_netif_internal_dhcpc_cb + 0x000000004010cd04 0xe7 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xea (size before relaxing) + *fill* 0x000000004010cdeb 0x1 + .text.netif_callback_fn + 0x000000004010cdec 0x2e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x32 (size before relaxing) + *fill* 0x000000004010ce1a 0x2 + .text.esp_supp_crc32 + 0x000000004010ce1c 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .text.esp_aes_decrypt + 0x000000004010ce30 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x12 (size before relaxing) + *fill* 0x000000004010ce3e 0x2 + .text.esp_aes_encrypt + 0x000000004010ce40 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x12 (size before relaxing) + *fill* 0x000000004010ce4e 0x2 + .text.esp_aes_unwrap + 0x000000004010ce50 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x18 (size before relaxing) + .text.esp_aes_wrap + 0x000000004010ce64 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x18 (size before relaxing) + .text.sha256_prf_bits + 0x000000004010ce78 0xda esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0xe6 (size before relaxing) + 0x000000004010ce78 sha256_prf_bits + *fill* 0x000000004010cf52 0x2 + .text.sha256_prf + 0x000000004010cf54 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0x000000004010cf54 sha256_prf + .text.sha1_prf + 0x000000004010cf74 0x9a esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + 0x000000004010cf74 sha1_prf + *fill* 0x000000004010d00e 0x2 + .text.digest_vector + 0x000000004010d010 0x61 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x71 (size before relaxing) + *fill* 0x000000004010d071 0x3 + .text.hmac_vector + 0x000000004010d074 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x78 (size before relaxing) + .text.aes_crypt_init + 0x000000004010d0dc 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x54 (size before relaxing) + .text.aes_crypt_deinit + 0x000000004010d12c 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x16 (size before relaxing) + *fill* 0x000000004010d13e 0x2 + .text.aes_crypt + 0x000000004010d140 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + *fill* 0x000000004010d155 0x3 + .text.sha256_vector + 0x000000004010d158 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + 0x000000004010d158 sha256_vector + .text.sha1_vector + 0x000000004010d16c 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + 0x000000004010d16c sha1_vector + .text.md5_vector + 0x000000004010d180 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + 0x000000004010d180 md5_vector + .text.hmac_sha256_vector + 0x000000004010d194 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + 0x000000004010d194 hmac_sha256_vector + .text.hmac_sha256 + 0x000000004010d1ac 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004010d1ac hmac_sha256 + *fill* 0x000000004010d1c9 0x3 + .text.hmac_md5_vector + 0x000000004010d1cc 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + 0x000000004010d1cc hmac_md5_vector + .text.hmac_md5 + 0x000000004010d1e4 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004010d1e4 hmac_md5 + *fill* 0x000000004010d201 0x3 + .text.hmac_sha1_vector + 0x000000004010d204 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + 0x000000004010d204 hmac_sha1_vector + .text.hmac_sha1 + 0x000000004010d21c 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004010d21c hmac_sha1 + *fill* 0x000000004010d239 0x3 + .text.aes_encrypt_init + 0x000000004010d23c 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x14 (size before relaxing) + 0x000000004010d23c aes_encrypt_init + .text.aes_encrypt + 0x000000004010d24c 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004010d24c aes_encrypt + *fill* 0x000000004010d261 0x3 + .text.aes_encrypt_deinit + 0x000000004010d264 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0xe (size before relaxing) + 0x000000004010d264 aes_encrypt_deinit + *fill* 0x000000004010d26e 0x2 + .text.aes_decrypt_init + 0x000000004010d270 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x14 (size before relaxing) + 0x000000004010d270 aes_decrypt_init + .text.aes_decrypt + 0x000000004010d280 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004010d280 aes_decrypt + *fill* 0x000000004010d295 0x3 + .text.aes_decrypt_deinit + 0x000000004010d298 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0xe (size before relaxing) + 0x000000004010d298 aes_decrypt_deinit + *fill* 0x000000004010d2a2 0x2 + .text.aes_128_cbc_encrypt + 0x000000004010d2a4 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x58 (size before relaxing) + 0x000000004010d2a4 aes_128_cbc_encrypt + .text.aes_128_cbc_decrypt + 0x000000004010d2ec 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x58 (size before relaxing) + 0x000000004010d2ec aes_128_cbc_decrypt + .text.aes_ctr_encrypt + 0x000000004010d334 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4b (size before relaxing) + 0x000000004010d334 aes_ctr_encrypt + *fill* 0x000000004010d370 0x0 + .text.pbkdf2_sha1 + 0x000000004010d370 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x2c (size before relaxing) + 0x000000004010d370 pbkdf2_sha1 + .text.omac1_aes_vector + 0x000000004010d398 0x9f esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0xb3 (size before relaxing) + 0x000000004010d398 omac1_aes_vector + *fill* 0x000000004010d437 0x1 + .text.omac1_aes_128_vector + 0x000000004010d438 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004010d438 omac1_aes_128_vector + *fill* 0x000000004010d451 0x3 + .text.omac1_aes_128 + 0x000000004010d454 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + 0x000000004010d454 omac1_aes_128 + .literal.os_get_time + 0x000000004010d46c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x4 (size before relaxing) + .literal.os_random + 0x000000004010d46c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .literal.os_get_random + 0x000000004010d470 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x4 (size before relaxing) + .literal.forced_memzero + 0x000000004010d470 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x4 (size before relaxing) + .literal.ccmp_aad_nonce + 0x000000004010d470 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x18 (size before relaxing) + .literal.ccmp_decrypt + 0x000000004010d480 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x10 (size before relaxing) + .literal.ccmp_encrypt + 0x000000004010d488 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x18 (size before relaxing) + .literal.hex2byte + 0x000000004010d488 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.hexstr2bin + 0x000000004010d48c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x4 (size before relaxing) + .literal.wpa_get_ntp_timestamp + 0x000000004010d48c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0xc (size before relaxing) + .literal.printf_decode + 0x000000004010d494 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.dup_binstr + 0x000000004010d494 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.wpa_config_parse_string + 0x000000004010d494 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x38 (size before relaxing) + .literal.bin_clear_free + 0x000000004010d49c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.os_memdup + 0x000000004010d49c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.os_reltime_expired + 0x000000004010d49c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.aes_ccm_encr_start + 0x000000004010d4a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x4 (size before relaxing) + .literal.aes_ccm_auth + 0x000000004010d4a0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xc (size before relaxing) + .literal.aes_ccm_encr + 0x000000004010d4a4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xc (size before relaxing) + .literal.aes_ccm_encr_auth + 0x000000004010d4a4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x4 (size before relaxing) + .literal.aes_ccm_decr_auth + 0x000000004010d4a4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x4 (size before relaxing) + .literal.aes_ccm_auth_start + 0x000000004010d4a4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x20 (size before relaxing) + .literal.aes_ccm_ae + 0x000000004010d4a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x1c (size before relaxing) + .literal.aes_ccm_ad + 0x000000004010d4a8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x20 (size before relaxing) + .literal.esp_coex_version_get + 0x000000004010d4ac 0x0 esp-idf/esp_coex/libesp_coex.a(coexist.c.obj) + 0x4 (size before relaxing) + .literal.esp_wifi_config_info + 0x000000004010d4ac 0x34 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x74 (size before relaxing) + .literal.esp_wifi_set_log_level + 0x000000004010d4e0 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x4 (size before relaxing) + .literal.s_set_default_wifi_log_level + 0x000000004010d4e0 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x20 (size before relaxing) + .literal.esp_wifi_deinit + 0x000000004010d4f4 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x48 (size before relaxing) + .literal.esp_wifi_init + 0x000000004010d508 0x1c esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x50 (size before relaxing) + .literal.wifi_default_action_sta_got_ip + 0x000000004010d524 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x1c (size before relaxing) + .literal.wifi_default_action_ap_stop + 0x000000004010d530 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_default_action_sta_stop + 0x000000004010d530 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_start + 0x000000004010d530 0x20 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x50 (size before relaxing) + .literal.wifi_default_action_ap_start + 0x000000004010d550 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_default_action_sta_start + 0x000000004010d550 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_default_action_sta_disconnected + 0x000000004010d550 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_default_action_sta_connected + 0x000000004010d550 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x28 (size before relaxing) + .literal.clear_default_wifi_handlers + 0x000000004010d550 0x30 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x4c (size before relaxing) + .literal.set_default_wifi_handlers + 0x000000004010d580 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x50 (size before relaxing) + .literal.create_and_attach + 0x000000004010d584 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x18 (size before relaxing) + .literal.esp_netif_attach_wifi + 0x000000004010d588 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.esp_wifi_set_default_wifi_sta_handlers + 0x000000004010d588 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_attach_wifi_station + 0x000000004010d588 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_create_default_wifi_sta + 0x000000004010d588 0x28 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x38 (size before relaxing) + .literal.wifi_sta_receive + 0x000000004010d5b0 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .literal.wifi_ap_receive + 0x000000004010d5b8 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x8 (size before relaxing) + .literal.wifi_driver_start + 0x000000004010d5b8 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x10 (size before relaxing) + .literal.wifi_free + 0x000000004010d5c4 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x4 (size before relaxing) + .literal.wifi_transmit_wrap + 0x000000004010d5c4 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x4 (size before relaxing) + .literal.wifi_transmit + 0x000000004010d5c4 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x4 (size before relaxing) + .literal.esp_wifi_create_if_driver + 0x000000004010d5c4 0x10 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x18 (size before relaxing) + .literal.esp_wifi_get_if_mac + 0x000000004010d5d4 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x4 (size before relaxing) + .literal.esp_wifi_register_if_rxcb + 0x000000004010d5d4 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x3c (size before relaxing) + .literal.esp_cpu_intr_enable + 0x000000004010d5e8 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.esp_cpu_intr_disable + 0x000000004010d5ec 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.queue_create_wrapper + 0x000000004010d5f0 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.mutex_delete_wrapper + 0x000000004010d5f4 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.wifi_thread_semphr_free + 0x000000004010d5f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.coex_register_start_cb_wrapper + 0x000000004010d5f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.coex_schm_register_cb_wrapper + 0x000000004010d5f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.coex_schm_process_restart_wrapper + 0x000000004010d5f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.coex_schm_curr_phase_get_wrapper + 0x000000004010d5f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.coex_schm_curr_period_get_wrapper + 0x000000004010d5f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.coex_schm_interval_get_wrapper + 0x000000004010d5f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.coex_schm_status_bit_set_wrapper + 0x000000004010d5f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.coex_schm_status_bit_clear_wrapper + 0x000000004010d5f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.coex_wifi_channel_set_wrapper + 0x000000004010d5f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.coex_wifi_request_wrapper + 0x000000004010d5f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.coex_disable_wrapper + 0x000000004010d5f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.coex_enable_wrapper + 0x000000004010d5f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.coex_deinit_wrapper + 0x000000004010d5f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.coex_init_wrapper + 0x000000004010d5f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.get_time_wrapper + 0x000000004010d5f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_clock_disable_wrapper + 0x000000004010d5f8 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.wifi_clock_enable_wrapper + 0x000000004010d5fc 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.wifi_reset_mac_wrapper + 0x000000004010d600 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.esp_event_post_wrapper + 0x000000004010d604 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.task_create_wrapper + 0x000000004010d608 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.task_create_pinned_to_core_wrapper + 0x000000004010d610 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.event_group_wait_bits_wrapper + 0x000000004010d610 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.queue_recv_wrapper + 0x000000004010d614 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.queue_send_to_front_wrapper + 0x000000004010d618 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.queue_send_to_back_wrapper + 0x000000004010d61c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.queue_send_wrapper + 0x000000004010d61c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.recursive_mutex_create_wrapper + 0x000000004010d61c 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.mutex_create_wrapper + 0x000000004010d620 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_thread_semphr_get_wrapper + 0x000000004010d620 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x1c (size before relaxing) + .literal.set_isr_wrapper + 0x000000004010d630 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.set_intr_wrapper + 0x000000004010d634 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.wifi_create_queue + 0x000000004010d638 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xc (size before relaxing) + .literal.wifi_create_queue_wrapper + 0x000000004010d640 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_delete_queue + 0x000000004010d640 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.wifi_delete_queue_wrapper + 0x000000004010d640 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_int_div_int + 0x000000004010d640 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_zeroize + 0x000000004010d644 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_free + 0x000000004010d644 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_grow + 0x000000004010d644 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_mpi_resize_clear + 0x000000004010d648 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_shrink + 0x000000004010d648 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_mpi_copy + 0x000000004010d648 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_lset + 0x000000004010d648 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_set_bit + 0x000000004010d648 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_bitlen + 0x000000004010d648 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_size + 0x000000004010d648 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_read_binary_le + 0x000000004010d648 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_read_binary + 0x000000004010d648 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_write_binary_le + 0x000000004010d648 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_write_binary + 0x000000004010d648 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_shift_l + 0x000000004010d648 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_shift_r + 0x000000004010d64c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_cmp_abs + 0x000000004010d64c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_cmp_mpi + 0x000000004010d64c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_cmp_int + 0x000000004010d64c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_add_abs + 0x000000004010d64c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_mpi_sub_abs + 0x000000004010d650 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x18 (size before relaxing) + .literal.add_sub_mpi + 0x000000004010d658 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_add_mpi + 0x000000004010d658 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_sub_mpi + 0x000000004010d658 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_add_int + 0x000000004010d658 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_sub_int + 0x000000004010d658 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_div_mpi + 0x000000004010d658 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xa8 (size before relaxing) + .literal.mbedtls_mpi_div_int + 0x000000004010d660 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_mod_mpi + 0x000000004010d660 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_mpi_mod_int + 0x000000004010d660 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mpi_check_small_factors + 0x000000004010d660 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_gcd + 0x000000004010d664 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x58 (size before relaxing) + .literal.mbedtls_mpi_fill_random + 0x000000004010d66c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mpi_miller_rabin + 0x000000004010d66c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x74 (size before relaxing) + .literal.mbedtls_mpi_random + 0x000000004010d66c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_inv_mod + 0x000000004010d66c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xd0 (size before relaxing) + .literal.mbedtls_mpi_is_prime_ext + 0x000000004010d66c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_mpi_core_clz + 0x000000004010d66c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_bitlen + 0x000000004010d670 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_bigendian_to_host + 0x000000004010d670 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_core_uint_le_mpi + 0x000000004010d674 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_cond_assign + 0x000000004010d67c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_cond_swap + 0x000000004010d680 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_read_le + 0x000000004010d680 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_read_be + 0x000000004010d680 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_core_write_le + 0x000000004010d680 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_write_be + 0x000000004010d680 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_shift_r + 0x000000004010d680 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_core_fill_random + 0x000000004010d680 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_core_random + 0x000000004010d680 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x14 (size before relaxing) + .literal.get_pkcs_padding + 0x000000004010d680 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.get_one_and_zeros_padding + 0x000000004010d688 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x8 (size before relaxing) + .literal.get_zeros_and_len_padding + 0x000000004010d688 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x8 (size before relaxing) + .literal.get_zeros_padding + 0x000000004010d688 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.get_no_padding + 0x000000004010d688 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_info_from_type + 0x000000004010d688 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_info_from_values + 0x000000004010d68c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_init + 0x000000004010d68c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_free + 0x000000004010d68c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_cipher_setkey + 0x000000004010d68c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_update + 0x000000004010d68c 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_cipher_set_padding_mode + 0x000000004010d698 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_cipher_setup + 0x000000004010d6bc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x10 (size before relaxing) + .literal.ccm_ctx_free + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.ccm_ctx_alloc + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.ccm_aria_setkey_wrap + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.ccm_aes_setkey_wrap + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.gcm_ctx_free + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.gcm_ctx_alloc + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.gcm_aria_setkey_wrap + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.gcm_aes_setkey_wrap + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_ctx_free + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aria_ctx_alloc + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aria_setkey_dec_wrap + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_setkey_enc_wrap + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_crypt_ctr_wrap + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_crypt_cfb128_wrap + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_crypt_cbc_wrap + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_crypt_ecb_wrap + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.xts_aes_ctx_free + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.xts_aes_ctx_alloc + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.xts_aes_setkey_dec_wrap + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.xts_aes_setkey_enc_wrap + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_xts_wrap + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aes_ctx_free + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aes_ctx_alloc + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aes_setkey_dec_wrap + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_setkey_enc_wrap + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_ctr_wrap + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_ofb_wrap + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_cfb128_wrap + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_cbc_wrap + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_ecb_wrap + 0x000000004010d6c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ct_uint_if + 0x000000004010d6c0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .literal.mbedtls_ct_mem_move_to_left + 0x000000004010d6c4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ct_base64_dec_value + 0x000000004010d6c8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_mpi_safe_cond_assign + 0x000000004010d6cc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_safe_cond_swap + 0x000000004010d6d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_mpi_core_lt_ct + 0x000000004010d6d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ct_rsaes_pkcs1_v15_unpadding + 0x000000004010d6d0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x30 (size before relaxing) + .literal.cmac_multiply_by_u + 0x000000004010d6d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x4 (size before relaxing) + .literal.cmac_generate_subkeys + 0x000000004010d6d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_cipher_cmac_starts + 0x000000004010d6d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_cipher_cmac_update + 0x000000004010d6d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_cipher_cmac_finish + 0x000000004010d6d8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x2c (size before relaxing) + .literal.block_cipher_df + 0x000000004010d6dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x3c (size before relaxing) + .literal.ctr_drbg_update_internal + 0x000000004010d6dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ctr_drbg_reseed_internal + 0x000000004010d6dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ctr_drbg_init + 0x000000004010d6dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ctr_drbg_free + 0x000000004010d6dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ctr_drbg_reseed + 0x000000004010d6dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ctr_drbg_seed + 0x000000004010d6dc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ctr_drbg_random_with_add + 0x000000004010d6e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_ctr_drbg_random + 0x000000004010d6e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x4 (size before relaxing) + .literal.ecdh_gen_public_restartable + 0x000000004010d6e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x8 (size before relaxing) + .literal.ecdh_compute_shared_restartable + 0x000000004010d6e0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x18 (size before relaxing) + .literal.ecdh_init_internal + 0x000000004010d6e4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x18 (size before relaxing) + .literal.ecdh_setup_internal + 0x000000004010d6e8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x8 (size before relaxing) + .literal.ecdh_free_internal + 0x000000004010d6ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x18 (size before relaxing) + .literal.ecdh_calc_secret_internal + 0x000000004010d6ec 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ecdh_gen_public + 0x000000004010d6f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdh_compute_shared + 0x000000004010d6f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdh_init + 0x000000004010d6f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ecdh_setup + 0x000000004010d6f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdh_free + 0x000000004010d6f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ecdh_calc_secret + 0x000000004010d6f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.ecp_pick_window_size + 0x000000004010d6f0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mpi_init_many + 0x000000004010d6f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mpi_free_many + 0x000000004010d6f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.ecp_check_bad_points_mx + 0x000000004010d6f4 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x34 (size before relaxing) + .literal.ecp_check_pubkey_mx + 0x000000004010d700 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_sub_int_mod + 0x000000004010d700 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_sub_mod + 0x000000004010d700 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_modp + 0x000000004010d700 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_mpi_mul_mod + 0x000000004010d700 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_add_mod + 0x000000004010d704 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_sw_rhs + 0x000000004010d704 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ecp_sw_derive_y + 0x000000004010d704 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2c (size before relaxing) + .literal.ecp_check_pubkey_sw + 0x000000004010d704 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x30 (size before relaxing) + .literal.ecp_double_add_mxz + 0x000000004010d704 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x48 (size before relaxing) + .literal.ecp_randomize_mxz + 0x000000004010d704 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x18 (size before relaxing) + .literal.ecp_randomize_jac + 0x000000004010d708 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_ecp_gen_privkey_sw + 0x000000004010d708 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.ecp_normalize_mxz + 0x000000004010d708 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_normalize_jac + 0x000000004010d708 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_mpi_mul_int_mod + 0x000000004010d708 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_shift_l_mod + 0x000000004010d708 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_double_jac + 0x000000004010d708 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x78 (size before relaxing) + .literal.ecp_normalize_jac_many + 0x000000004010d70c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x54 (size before relaxing) + .literal.ecp_safe_invert_jac + 0x000000004010d710 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.ecp_select_comb + 0x000000004010d710 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10 (size before relaxing) + .literal.ecp_comb_recode_core + 0x000000004010d710 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.ecp_comb_recode_scalar + 0x000000004010d710 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_ecp_gen_privkey_mx + 0x000000004010d710 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ecp_restart_is_enabled + 0x000000004010d710 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_check_budget + 0x000000004010d714 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecp_curve_list + 0x000000004010d718 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_grp_id_list + 0x000000004010d71c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_point_init + 0x000000004010d724 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_restart_rsm_init + 0x000000004010d724 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.ecp_restart_ma_init + 0x000000004010d724 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecp_group_init + 0x000000004010d724 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ecp_keypair_init + 0x000000004010d724 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_point_free + 0x000000004010d724 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_restart_rsm_free + 0x000000004010d724 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10 (size before relaxing) + .literal.ecp_restart_ma_free + 0x000000004010d724 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_restart_free + 0x000000004010d724 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ecp_group_free + 0x000000004010d724 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ecp_keypair_free + 0x000000004010d724 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_copy + 0x000000004010d724 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_mul_mxz + 0x000000004010d724 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x5c (size before relaxing) + .literal.mbedtls_ecp_group_copy + 0x000000004010d724 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_set_zero + 0x000000004010d724 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_add_mixed + 0x000000004010d724 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x78 (size before relaxing) + .literal.ecp_precompute_comb + 0x000000004010d728 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x38 (size before relaxing) + .literal.ecp_mul_comb_core + 0x000000004010d728 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2c (size before relaxing) + .literal.ecp_mul_comb_after_precomp + 0x000000004010d728 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1c (size before relaxing) + .literal.ecp_mul_comb + 0x000000004010d728 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x44 (size before relaxing) + .literal.mbedtls_ecp_is_zero + 0x000000004010d728 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_point_cmp + 0x000000004010d728 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ecp_point_write_binary + 0x000000004010d728 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_ecp_point_read_binary + 0x000000004010d72c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_ecp_check_pubkey + 0x000000004010d72c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ecp_check_privkey + 0x000000004010d72c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x24 (size before relaxing) + .literal.ecp_mul_restartable_internal + 0x000000004010d72c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_ecp_mul_restartable + 0x000000004010d72c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecp_mul + 0x000000004010d72c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_mul_shortcuts + 0x000000004010d72c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x3c (size before relaxing) + .literal.mbedtls_ecp_muladd_restartable + 0x000000004010d72c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x50 (size before relaxing) + .literal.mbedtls_ecp_muladd + 0x000000004010d72c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_gen_privkey + 0x000000004010d72c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ecp_gen_keypair_base + 0x000000004010d72c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecp_gen_keypair + 0x000000004010d72c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_gen_key + 0x000000004010d72c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecp_check_pub_priv + 0x000000004010d72c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x34 (size before relaxing) + .literal.mbedtls_ecp_mod_p192_raw + 0x000000004010d72c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_ecp_mod_p224_raw + 0x000000004010d72c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_mod_p256_raw + 0x000000004010d72c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x4 (size before relaxing) + .literal.ecp_mod_p255 + 0x000000004010d72c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x10 (size before relaxing) + .literal.ecp_mod_koblitz + 0x000000004010d72c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x24 (size before relaxing) + .literal.ecp_mod_p256k1 + 0x000000004010d72c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p224k1 + 0x000000004010d730 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p192k1 + 0x000000004010d734 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p384 + 0x000000004010d738 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p256 + 0x000000004010d738 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p224 + 0x000000004010d738 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p192 + 0x000000004010d738 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecp_mod_p521_raw + 0x000000004010d738 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x14 (size before relaxing) + .literal.ecp_mod_p521 + 0x000000004010d73c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_group_load + 0x000000004010d73c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xc (size before relaxing) + .literal.ecp_use_curve25519 + 0x000000004010d740 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_ecp_group_load + 0x000000004010d74c 0x144 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x180 (size before relaxing) + .literal.entropy_update + 0x000000004010d890 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x14 (size before relaxing) + .literal.entropy_gather_internal + 0x000000004010d890 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_entropy_free + 0x000000004010d890 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_entropy_init + 0x000000004010d890 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_entropy_func + 0x000000004010d894 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_md_info_from_type + 0x000000004010d894 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_free + 0x000000004010d8ac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_md_setup + 0x000000004010d8ac 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x40 (size before relaxing) + .literal.mbedtls_md_starts + 0x000000004010d8b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_md_update + 0x000000004010d8b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_md_finish + 0x000000004010d8b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_md + 0x000000004010d8b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_md_hmac_starts + 0x000000004010d8b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_md_hmac_update + 0x000000004010d8b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_md_hmac_finish + 0x000000004010d8b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_md_hmac_reset + 0x000000004010d8b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_md5 + 0x000000004010d8b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x14 (size before relaxing) + .literal.pkcs5_pbkdf2_hmac + 0x000000004010d8b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x34 (size before relaxing) + .literal.mbedtls_pkcs5_pbkdf2_hmac_ext + 0x000000004010d8b4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_calloc + 0x000000004010d8b8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .literal.mbedtls_free + 0x000000004010d8bc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .literal.mbedtls_platform_zeroize + 0x000000004010d8c0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .literal.mbedtls_sha1 + 0x000000004010d8c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha256 + 0x000000004010d8c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha512 + 0x000000004010d8c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_hardware_poll + 0x000000004010d8c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_xts_init + 0x000000004010d8c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_xts_free + 0x000000004010d8c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_xts_setkey_enc + 0x000000004010d8c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0xc (size before relaxing) + .literal.esp_aes_xts_setkey_dec + 0x000000004010d8c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0xc (size before relaxing) + .literal.esp_aes_crypt_xts + 0x000000004010d8c4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x18 (size before relaxing) + .literal.esp_aes_init + 0x000000004010d8c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_free + 0x000000004010d8c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_setkey + 0x000000004010d8c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_block + 0x000000004010d8c8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x14 (size before relaxing) + .literal.esp_aes_acquire_hardware + 0x000000004010d8cc 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_aes_release_hardware + 0x000000004010d8d8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0xc (size before relaxing) + .literal.esp_aes_crypt_ecb + 0x000000004010d8e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x18 (size before relaxing) + .literal.esp_aes_crypt_cbc + 0x000000004010d8e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x28 (size before relaxing) + .literal.esp_aes_crypt_cfb128 + 0x000000004010d8e0 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x38 (size before relaxing) + .literal.esp_aes_crypt_ctr + 0x000000004010d8ec 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x40 (size before relaxing) + .literal.esp_aes_crypt_ofb + 0x000000004010d8f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x34 (size before relaxing) + .literal.mpi_words + 0x000000004010d8f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x4 (size before relaxing) + .literal.modular_inverse + 0x000000004010d8f8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .literal.calculate_rinv + 0x000000004010d8fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x10 (size before relaxing) + .literal.mpi_montgomery_exp_calc + 0x000000004010d8fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x3c (size before relaxing) + .literal.esp_mpi_exp_mod + 0x000000004010d8fc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x3c (size before relaxing) + .literal.mpi_mult_mpi_failover_mod_mult + 0x000000004010d900 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_mpi_exp_mod + 0x000000004010d90c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_mul_mpi + 0x000000004010d90c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x40 (size before relaxing) + .literal.mpi_mult_mpi_overlong + 0x000000004010d910 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_mpi_mul_int + 0x000000004010d910 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x4 (size before relaxing) + .literal.esp_mpi_enable_hardware_hw_op + 0x000000004010d910 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0xc (size before relaxing) + .literal.esp_mpi_disable_hardware_hw_op + 0x000000004010d910 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0xc (size before relaxing) + .literal.esp_mpi_mul_mpi_hw_op + 0x000000004010d910 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 + 0x000000004010d910 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x28 (size before relaxing) + .literal.esp_mont_hw_op + 0x000000004010d910 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_sha1_software_process + 0x000000004010d910 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .literal.esp_internal_sha1_parallel_engine_process + 0x000000004010d920 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_sha1_init + 0x000000004010d920 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha1_free + 0x000000004010d920 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_sha1_starts + 0x000000004010d920 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_sha1_update + 0x000000004010d934 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha1_finish + 0x000000004010d934 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha256_software_process + 0x000000004010d938 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.esp_internal_sha256_parallel_engine_process + 0x000000004010d93c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_sha256_init + 0x000000004010d93c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha256_free + 0x000000004010d93c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_sha256_starts + 0x000000004010d93c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x44 (size before relaxing) + .literal.mbedtls_sha256_update + 0x000000004010d97c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha256_finish + 0x000000004010d97c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha512_software_process + 0x000000004010d980 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .literal.esp_internal_sha512_parallel_engine_process + 0x000000004010d984 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_sha512_init + 0x000000004010d984 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha512_free + 0x000000004010d984 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_sha512_starts + 0x000000004010d984 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x84 (size before relaxing) + .literal.mbedtls_sha512_update + 0x000000004010d9c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha512_finish + 0x000000004010d9c4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x14 (size before relaxing) + .literal.gcm_mult + 0x000000004010d9c8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.increment32_j0 + 0x000000004010d9cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x8 (size before relaxing) + .literal.esp_gcm_ghash + 0x000000004010d9cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x14 (size before relaxing) + .literal.esp_gcm_derive_J0 + 0x000000004010d9cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x10 (size before relaxing) + .literal.esp_aes_gcm_setkey + 0x000000004010d9cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_gcm_init + 0x000000004010d9cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_gcm_free + 0x000000004010d9cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_gcm_starts + 0x000000004010d9cc 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x34 (size before relaxing) + .literal.esp_aes_gcm_update_ad + 0x000000004010d9d8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x2c (size before relaxing) + .literal.esp_aes_gcm_update + 0x000000004010d9e0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x4c (size before relaxing) + .literal.esp_aes_gcm_finish + 0x000000004010d9f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_gcm_crypt_and_tag_partial_hw + 0x000000004010d9f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x10 (size before relaxing) + .literal.esp_aes_gcm_crypt_and_tag + 0x000000004010d9f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_gcm_auth_decrypt + 0x000000004010d9f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x8 (size before relaxing) + .literal.esp_md5_finish + 0x000000004010d9f0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .literal.esp_md5_update + 0x000000004010d9f4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .literal.esp_md5_init + 0x000000004010d9f8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .literal.esp_md5_starts + 0x000000004010d9fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x4 (size before relaxing) + .literal.esp_md5_free + 0x000000004010d9fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x4 (size before relaxing) + .literal.aria_a + 0x000000004010d9fc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .literal.aria_fo_xor + 0x000000004010da04 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x18 (size before relaxing) + .literal.aria_fe_xor + 0x000000004010da14 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_aria_setkey_enc + 0x000000004010da14 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_aria_setkey_dec + 0x000000004010da18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_aria_crypt_ecb + 0x000000004010da18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_aria_init + 0x000000004010da18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_aria_free + 0x000000004010da18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_aria_crypt_cbc + 0x000000004010da18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_aria_crypt_cfb128 + 0x000000004010da18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_aria_crypt_ctr + 0x000000004010da18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_tag + 0x000000004010da18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.asn1_get_tagged_int + 0x000000004010da18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_int + 0x000000004010da18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_mpi + 0x000000004010da18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_asn1_get_bitstring_null + 0x000000004010da18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_alg + 0x000000004010da18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ccm_crypt + 0x000000004010da18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ccm_init + 0x000000004010da18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ccm_setkey + 0x000000004010da18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ccm_free + 0x000000004010da18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ccm_update + 0x000000004010da18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x1c (size before relaxing) + .literal.oid_pk_alg_from_asn1 + 0x000000004010da18 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_grp_id_from_asn1 + 0x000000004010da1c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_oid_get_pk_alg + 0x000000004010da20 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_ec_grp + 0x000000004010da20 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_oid_by_md + 0x000000004010da20 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.sha_get_engine_state + 0x000000004010da24 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x24 (size before relaxing) + .literal.esp_sha_lock_engine_common + 0x000000004010da38 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x2c (size before relaxing) + .literal.esp_sha_lock_memory_block + 0x000000004010da4c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x8 (size before relaxing) + .literal.esp_sha_unlock_memory_block + 0x000000004010da50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x8 (size before relaxing) + .literal.esp_sha_try_lock_engine + 0x000000004010da50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x4 (size before relaxing) + .literal.esp_sha_unlock_engine + 0x000000004010da50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x1c (size before relaxing) + .literal.esp_sha_read_digest_state + 0x000000004010da50 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x28 (size before relaxing) + .literal.esp_sha_block + 0x000000004010da5c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x28 (size before relaxing) + .literal.load_partitions + 0x000000004010da60 0x38 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x70 (size before relaxing) + .literal.ensure_partitions_loaded + 0x000000004010da98 0x10 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x24 (size before relaxing) + .literal.iterator_create + 0x000000004010daa8 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x8 (size before relaxing) + .literal.esp_partition_iterator_release + 0x000000004010daa8 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x4 (size before relaxing) + .literal.esp_partition_next + 0x000000004010daa8 0x10 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x28 (size before relaxing) + .literal.esp_partition_find + 0x000000004010dab8 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0xc (size before relaxing) + .literal.esp_partition_get + 0x000000004010dab8 0x8 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x10 (size before relaxing) + .literal.esp_partition_find_first + 0x000000004010dac0 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0xc (size before relaxing) + .literal.esp_partition_write + 0x000000004010dac0 0x14 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x1c (size before relaxing) + .literal.esp_partition_read_raw + 0x000000004010dad4 0x8 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x14 (size before relaxing) + .literal.esp_partition_write_raw + 0x000000004010dadc 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x14 (size before relaxing) + .literal.esp_partition_erase_range + 0x000000004010dae0 0x8 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x14 (size before relaxing) + .literal.esp_partition_mmap + 0x000000004010dae8 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x1c (size before relaxing) + .literal.esp_partition_munmap + 0x000000004010daec 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x4 (size before relaxing) + .literal.esp_partition_read + 0x000000004010daec 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x24 (size before relaxing) + .literal.esp_partition_main_flash_region_safe + 0x000000004010daf0 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x8 (size before relaxing) + .literal.esp_ota_get_running_partition + 0x000000004010daf4 0x18 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x38 (size before relaxing) + .literal.clk_hal_lp_slow_get_freq_hz + 0x000000004010db0c 0x18 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x20 (size before relaxing) + .literal.clk_hal_xtal_get_freq_mhz + 0x000000004010db24 0x8 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .literal.clk_hal_apll_get_freq_hz + 0x000000004010db2c 0x2c esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x5c (size before relaxing) + .literal.clk_hal_soc_root_get_freq_mhz + 0x000000004010db58 0x10 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x24 (size before relaxing) + .literal.clk_hal_cpu_get_freq_hz + 0x000000004010db68 0xc esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x30 (size before relaxing) + .literal.clk_hal_ahb_get_freq_hz + 0x000000004010db74 0x4 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x10 (size before relaxing) + .literal.clk_hal_apb_get_freq_hz + 0x000000004010db78 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x4 (size before relaxing) + .literal.mpi_ll_write_to_mem_block + 0x000000004010db78 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .literal.mpi_ll_clear_power_control_bit + 0x000000004010db7c 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x8 (size before relaxing) + .literal.mpi_ll_set_power_control_bit + 0x000000004010db80 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x8 (size before relaxing) + .literal.mpi_ll_read_from_mem_block + 0x000000004010db80 0xc esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x18 (size before relaxing) + .literal.mpi_hal_enable_hardware_hw_op + 0x000000004010db8c 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0xc (size before relaxing) + .literal.mpi_hal_disable_hardware_hw_op + 0x000000004010db90 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4 (size before relaxing) + .literal.mpi_hal_clear_interrupt + 0x000000004010db90 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .literal.mpi_hal_set_mode + 0x000000004010db94 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .literal.mpi_hal_write_to_mem_block + 0x000000004010db98 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4 (size before relaxing) + .literal.mpi_hal_write_at_offset + 0x000000004010db98 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4 (size before relaxing) + .literal.mpi_hal_write_m_prime + 0x000000004010db98 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .literal.mpi_hal_write_rinv + 0x000000004010db9c 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4 (size before relaxing) + .literal.mpi_hal_start_op + 0x000000004010db9c 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x8 (size before relaxing) + .literal.mpi_hal_wait_op_complete + 0x000000004010dba0 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0xc (size before relaxing) + .literal.mpi_hal_read_result_hw_op + 0x000000004010dba0 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x8 (size before relaxing) + .literal.sha_ll_busy + 0x000000004010dba0 0x10 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x20 (size before relaxing) + .literal.sha_ll_read_digest + 0x000000004010dbb0 0x8 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x10 (size before relaxing) + .literal.sha_hal_wait_idle + 0x000000004010dbb8 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x4 (size before relaxing) + .literal.sha_hal_hash_block + 0x000000004010dbb8 0x8 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x10 (size before relaxing) + .literal.sha_hal_read_digest + 0x000000004010dbc0 0x4 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x10 (size before relaxing) + .literal.aes_ll_write_key + 0x000000004010dbc4 0x4 esp-idf/hal/libhal.a(aes_hal.c.obj) + .literal.aes_hal_wait_idle + 0x000000004010dbc8 0x4 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x8 (size before relaxing) + .literal.aes_hal_setkey + 0x000000004010dbcc 0x4 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x8 (size before relaxing) + .literal.aes_hal_transform_block + 0x000000004010dbd0 0x14 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x1c (size before relaxing) + .literal.esp_dport_access_read_buffer + 0x000000004010dbe4 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + 0x4 (size before relaxing) + .literal.esp_deep_sleep_register_hook + 0x000000004010dbe4 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x24 (size before relaxing) + .literal.esp_crypto_mpi_lock_acquire + 0x000000004010dbf4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x8 (size before relaxing) + .literal.esp_crypto_mpi_lock_release + 0x000000004010dbf8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x8 (size before relaxing) + .literal.lib_printf + 0x000000004010dbf8 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x10 (size before relaxing) + .literal.phy_printf + 0x000000004010dbfc 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x8 (size before relaxing) + .literal.net80211_printf + 0x000000004010dc00 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x8 (size before relaxing) + .literal.coexist_printf + 0x000000004010dc04 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x8 (size before relaxing) + .literal.tryget_socket_unconn_nouse + 0x000000004010dc08 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.free_socket_locked + 0x000000004010dc0c 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.sock_inc_used_locked + 0x000000004010dc18 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .literal.tryget_socket_unconn_locked + 0x000000004010dc24 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.sock_inc_used + 0x000000004010dc24 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x20 (size before relaxing) + .literal.tryget_socket_unconn + 0x000000004010dc28 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.lwip_select_inc_sockets_used_set + 0x000000004010dc28 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc (size before relaxing) + .literal.lwip_select_inc_sockets_used + 0x000000004010dc28 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc (size before relaxing) + .literal.lwip_link_select_cb + 0x000000004010dc28 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.lwip_unlink_select_cb + 0x000000004010dc30 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x28 (size before relaxing) + .literal.sockaddr_to_ipaddr_port + 0x000000004010dc3c 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x14 (size before relaxing) + .literal.lwip_sock_make_addr + 0x000000004010dc48 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x30 (size before relaxing) + .literal.lwip_recv_tcp_from + 0x000000004010dc58 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.free_socket_free_elements + 0x000000004010dc58 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc (size before relaxing) + .literal.free_socket + 0x000000004010dc58 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.done_socket + 0x000000004010dc58 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x28 (size before relaxing) + .literal.tryget_socket + 0x000000004010dc5c 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.get_socket + 0x000000004010dc5c 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.lwip_selscan + 0x000000004010dc5c 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x24 (size before relaxing) + .literal.lwip_select_dec_sockets_used + 0x000000004010dc64 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x18 (size before relaxing) + .literal.lwip_socket_drop_registered_memberships + 0x000000004010dc6c 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.lwip_socket_drop_registered_mld6_memberships + 0x000000004010dc70 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.lwip_recv_tcp + 0x000000004010dc74 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x50 (size before relaxing) + .literal.lwip_recvfrom_udp_raw + 0x000000004010dc8c 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x20 (size before relaxing) + .literal.lwip_close + 0x000000004010dc94 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x30 (size before relaxing) + .literal.lwip_recvfrom + 0x000000004010dc9c 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x30 (size before relaxing) + .literal.lwip_read + 0x000000004010dca4 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4 (size before relaxing) + .literal.lwip_sendto + 0x000000004010dca4 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x48 (size before relaxing) + .literal.lwip_send + 0x000000004010dca8 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .literal.lwip_write + 0x000000004010dca8 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4 (size before relaxing) + .literal.lwip_select + 0x000000004010dca8 0x14 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x98 (size before relaxing) + .literal.lwip_ioctl + 0x000000004010dcbc 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x14 (size before relaxing) + .literal.lwip_fcntl + 0x000000004010dcc0 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x20 (size before relaxing) + .literal.tcpip_timeouts_mbox_fetch + 0x000000004010dcc4 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x14 (size before relaxing) + .literal.tcpip_thread_handle_msg + 0x000000004010dcc4 0xc esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x20 (size before relaxing) + .literal.tcpip_thread + 0x000000004010dcd0 0x10 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x28 (size before relaxing) + .literal.tcpip_inpkt + 0x000000004010dce0 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x20 (size before relaxing) + .literal.tcpip_input + 0x000000004010dce8 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x10 (size before relaxing) + .literal.tcpip_try_callback + 0x000000004010dcf0 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x20 (size before relaxing) + .literal.tcpip_send_msg_wait_sem + 0x000000004010dcf4 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x24 (size before relaxing) + .literal.tcpip_api_call + 0x000000004010dcfc 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x20 (size before relaxing) + .literal.tcpip_init + 0x000000004010dd00 0x14 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x34 (size before relaxing) + .literal.lwip_htonl + 0x000000004010dd14 0x8 esp-idf/lwip/liblwip.a(def.c.obj) + .literal.dns_setserver + 0x000000004010dd1c 0xc esp-idf/lwip/liblwip.a(dns.c.obj) + 0x10 (size before relaxing) + .literal.lwip_init + 0x000000004010dd28 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + 0x24 (size before relaxing) + .literal.ip_input + 0x000000004010dd28 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x8 (size before relaxing) + .literal.mem_malloc + 0x000000004010dd28 0x10 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x1c (size before relaxing) + .literal.mem_free + 0x000000004010dd38 0x10 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x1c (size before relaxing) + .literal.mem_calloc + 0x000000004010dd48 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x4 (size before relaxing) + .literal.do_memp_malloc_pool + 0x000000004010dd48 0xc esp-idf/lwip/liblwip.a(memp.c.obj) + 0x20 (size before relaxing) + .literal.do_memp_free_pool + 0x000000004010dd54 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x1c (size before relaxing) + .literal.memp_malloc + 0x000000004010dd5c 0x4 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x8 (size before relaxing) + .literal.memp_free + 0x000000004010dd60 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x8 (size before relaxing) + .literal.netif_loopif_init + 0x000000004010dd60 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x18 (size before relaxing) + .literal.netif_do_set_netmask + 0x000000004010dd74 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x10 (size before relaxing) + .literal.netif_do_set_gw + 0x000000004010dd7c 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x10 (size before relaxing) + .literal.netif_do_ip_addr_changed + 0x000000004010dd84 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xc (size before relaxing) + .literal.netif_issue_reports + 0x000000004010dd84 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1c (size before relaxing) + .literal.netif_do_set_ipaddr + 0x000000004010dd8c 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1c (size before relaxing) + .literal.netif_poll + 0x000000004010dd90 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x40 (size before relaxing) + .literal.netif_set_default + 0x000000004010dda4 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_loop_output + 0x000000004010dda8 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4c (size before relaxing) + .literal.netif_loop_output_ipv6 + 0x000000004010ddbc 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4 (size before relaxing) + .literal.netif_loop_output_ipv4 + 0x000000004010ddbc 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4 (size before relaxing) + .literal.netif_get_ip6_addr_match + 0x000000004010ddbc 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + 0x18 (size before relaxing) + .literal.netif_get_by_index + 0x000000004010ddc8 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_add_ext_callback + 0x000000004010ddcc 0x10 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1c (size before relaxing) + .literal.netif_remove_ext_callback + 0x000000004010dddc 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1c (size before relaxing) + .literal.netif_invoke_ext_callback + 0x000000004010dde4 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x14 (size before relaxing) + .literal.netif_set_addr + 0x000000004010ddec 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x18 (size before relaxing) + .literal.netif_add + 0x000000004010ddec 0x18 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x3c (size before relaxing) + .literal.netif_set_up + 0x000000004010de04 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xc (size before relaxing) + .literal.netif_set_down + 0x000000004010de04 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xc (size before relaxing) + .literal.netif_remove + 0x000000004010de04 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x24 (size before relaxing) + .literal.netif_set_link_up + 0x000000004010de04 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x10 (size before relaxing) + .literal.netif_init + 0x000000004010de04 0x10 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x20 (size before relaxing) + .literal.netif_set_link_down + 0x000000004010de14 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4 (size before relaxing) + .literal.netif_ip6_addr_set_parts + 0x000000004010de14 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + 0x2c (size before relaxing) + .literal.netif_ip6_addr_set + 0x000000004010de20 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1c (size before relaxing) + .literal.netif_ip6_addr_set_state + 0x000000004010de2c 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x28 (size before relaxing) + .literal.pbuf_add_header_impl + 0x000000004010de30 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + .literal.pbuf_pool_is_empty + 0x000000004010de3c 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + .literal.pbuf_free_ooseq + 0x000000004010de44 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + .literal.pbuf_free_ooseq_callback + 0x000000004010de48 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_alloc_reference + 0x000000004010de48 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x18 (size before relaxing) + .literal.pbuf_alloced_custom + 0x000000004010de50 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_add_header + 0x000000004010de50 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_add_header_force + 0x000000004010de50 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_remove_header + 0x000000004010de50 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + .literal.pbuf_header_impl + 0x000000004010de54 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x8 (size before relaxing) + .literal.pbuf_header_force + 0x000000004010de54 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_free + 0x000000004010de54 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x3c (size before relaxing) + .literal.pbuf_alloc + 0x000000004010de64 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x44 (size before relaxing) + .literal.pbuf_realloc + 0x000000004010de78 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x28 (size before relaxing) + .literal.pbuf_free_header + 0x000000004010de88 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x8 (size before relaxing) + .literal.pbuf_ref + 0x000000004010de88 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x18 (size before relaxing) + .literal.pbuf_cat + 0x000000004010de90 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x10 (size before relaxing) + .literal.pbuf_chain + 0x000000004010de98 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x8 (size before relaxing) + .literal.pbuf_copy_partial_pbuf + 0x000000004010de98 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + .literal.pbuf_copy + 0x000000004010dea4 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_copy_partial + 0x000000004010dea4 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_skip + 0x000000004010dea4 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_take + 0x000000004010dea4 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + .literal.pbuf_take_at + 0x000000004010deb0 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + .literal.pbuf_clone + 0x000000004010deb8 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x18 (size before relaxing) + .literal.pbuf_try_get_at + 0x000000004010dec0 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_get_at + 0x000000004010dec0 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.raw_input_local_match + 0x000000004010dec0 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.raw_input + 0x000000004010dec4 0x14 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x24 (size before relaxing) + .literal.raw_sendto_if_src + 0x000000004010ded8 0xc esp-idf/lwip/liblwip.a(raw.c.obj) + 0x40 (size before relaxing) + .literal.raw_sendto + 0x000000004010dee4 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x18 (size before relaxing) + .literal.raw_send + 0x000000004010dee4 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x4 (size before relaxing) + .literal.raw_remove + 0x000000004010dee4 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x8 (size before relaxing) + .literal.raw_netif_ip_addr_changed + 0x000000004010dee4 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x4 (size before relaxing) + .literal.tcp_remove_listener + 0x000000004010dee4 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x10 (size before relaxing) + .literal.tcp_listen_closed + 0x000000004010def0 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x20 (size before relaxing) + .literal.tcp_free_listen + 0x000000004010df00 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_init + 0x000000004010df08 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_free + 0x000000004010df10 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_backlog_accepted + 0x000000004010df18 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_close_shutdown_fin + 0x000000004010df20 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x24 (size before relaxing) + .literal.tcp_handle_closepend + 0x000000004010df24 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8 (size before relaxing) + .literal.tcp_update_rcv_ann_wnd + 0x000000004010df24 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x20 (size before relaxing) + .literal.tcp_recved + 0x000000004010df34 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1c (size before relaxing) + .literal.tcp_seg_free + 0x000000004010df40 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8 (size before relaxing) + .literal.tcp_segs_free + 0x000000004010df40 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_seg_copy + 0x000000004010df40 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1c (size before relaxing) + .literal.tcp_recv + 0x000000004010df48 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x10 (size before relaxing) + .literal.tcp_sent + 0x000000004010df50 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x10 (size before relaxing) + .literal.tcp_err + 0x000000004010df58 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_poll + 0x000000004010df64 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_next_iss + 0x000000004010df70 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_eff_send_mss_netif + 0x000000004010df7c 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_free_ooseq + 0x000000004010df88 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_pcb_purge + 0x000000004010df88 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_pcb_remove + 0x000000004010df88 0x2c esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4c (size before relaxing) + .literal.tcp_abandon + 0x000000004010dfb4 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x44 (size before relaxing) + .literal.tcp_abort + 0x000000004010dfc8 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_kill_timewait + 0x000000004010dfc8 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_kill_prio + 0x000000004010dfcc 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_netif_ip_addr_changed_pcblist + 0x000000004010dfcc 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_netif_ip_addr_changed + 0x000000004010dfd8 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_kill_state + 0x000000004010dfdc 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1c (size before relaxing) + .literal.tcp_alloc + 0x000000004010dfe4 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x44 (size before relaxing) + .literal.tcp_close_shutdown + 0x000000004010dff8 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x5c (size before relaxing) + .literal.tcp_close_ext + 0x000000004010e008 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_close + 0x000000004010e008 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_recv_null + 0x000000004010e008 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_process_refused_data + 0x000000004010e008 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8 (size before relaxing) + .literal.tcp_fasttmr + 0x000000004010e008 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_shutdown + 0x000000004010e008 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.aes_wrap + 0x000000004010e008 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + 0x24 (size before relaxing) + .literal.aes_unwrap + 0x000000004010e008 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 0x1c (size before relaxing) + .text.aes_wrap + 0x000000004010e008 0xcd esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + 0xd1 (size before relaxing) + 0x000000004010e008 aes_wrap + *fill* 0x000000004010e0d5 0x3 + .text.aes_unwrap + 0x000000004010e0d8 0xde esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 0xe2 (size before relaxing) + 0x000000004010e0d8 aes_unwrap + *fill* 0x000000004010e1b6 0x2 + .text.os_get_time + 0x000000004010e1b8 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x000000004010e1b8 os_get_time + *fill* 0x000000004010e1d5 0x3 + .text.os_random + 0x000000004010e1d8 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x000000004010e1d8 os_random + *fill* 0x000000004010e1e5 0x3 + .text.os_get_random + 0x000000004010e1e8 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x000000004010e1e8 os_get_random + *fill* 0x000000004010e1f9 0x3 + .text.forced_memzero + 0x000000004010e1fc 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x000000004010e1fc forced_memzero + *fill* 0x000000004010e20b 0x1 + .text.ccmp_aad_nonce + 0x000000004010e20c 0x10e esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + *fill* 0x000000004010e31a 0x2 + .text.ccmp_decrypt + 0x000000004010e31c 0x9c esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0xa4 (size before relaxing) + 0x000000004010e31c ccmp_decrypt + .text.ccmp_encrypt + 0x000000004010e3b8 0xf8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0xfc (size before relaxing) + 0x000000004010e3b8 ccmp_encrypt + .text.hex2byte + 0x000000004010e4b0 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x000000004010e4b0 hex2byte + .text.hexstr2bin + 0x000000004010e4e0 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x000000004010e4e0 hexstr2bin + .text.wpa_get_ntp_timestamp + 0x000000004010e508 0x79 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x7d (size before relaxing) + 0x000000004010e508 wpa_get_ntp_timestamp + *fill* 0x000000004010e581 0x3 + .text.printf_decode + 0x000000004010e584 0x158 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x15c (size before relaxing) + 0x000000004010e584 printf_decode + .text.dup_binstr + 0x000000004010e6dc 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x000000004010e6dc dup_binstr + *fill* 0x000000004010e706 0x2 + .text.wpa_config_parse_string + 0x000000004010e708 0x128 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x12c (size before relaxing) + 0x000000004010e708 wpa_config_parse_string + .text.bin_clear_free + 0x000000004010e830 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x1a (size before relaxing) + 0x000000004010e830 bin_clear_free + *fill* 0x000000004010e846 0x2 + .text.os_memdup + 0x000000004010e848 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x000000004010e848 os_memdup + .text.os_reltime_expired + 0x000000004010e874 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x000000004010e874 os_reltime_expired + .text.aes_ccm_encr_start + 0x000000004010e8e4 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + *fill* 0x000000004010e8fe 0x2 + .text.aes_ccm_auth + 0x000000004010e900 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x5e (size before relaxing) + *fill* 0x000000004010e956 0x2 + .text.aes_ccm_encr + 0x000000004010e958 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x72 (size before relaxing) + *fill* 0x000000004010e9c6 0x2 + .text.aes_ccm_encr_auth + 0x000000004010e9c8 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x36 (size before relaxing) + *fill* 0x000000004010e9fa 0x2 + .text.aes_ccm_decr_auth + 0x000000004010e9fc 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x36 (size before relaxing) + *fill* 0x000000004010ea2e 0x2 + .text.aes_ccm_auth_start + 0x000000004010ea30 0xbe esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xc6 (size before relaxing) + *fill* 0x000000004010eaee 0x2 + .text.aes_ccm_ae + 0x000000004010eaf0 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xa6 (size before relaxing) + 0x000000004010eaf0 aes_ccm_ae + *fill* 0x000000004010eb82 0x2 + .text.aes_ccm_ad + 0x000000004010eb84 0xaa esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xc2 (size before relaxing) + 0x000000004010eb84 aes_ccm_ad + *fill* 0x000000004010ec2e 0x2 + .text.esp_coex_version_get + 0x000000004010ec30 0xa esp-idf/esp_coex/libesp_coex.a(coexist.c.obj) + 0xd (size before relaxing) + 0x000000004010ec30 esp_coex_version_get + *fill* 0x000000004010ec3a 0x2 + .text.esp_wifi_config_info + 0x000000004010ec3c 0xf2 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + *fill* 0x000000004010ed2e 0x2 + .text.esp_wifi_set_log_level + 0x000000004010ed30 0xa esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0xe (size before relaxing) + *fill* 0x000000004010ed3a 0x2 + .text.s_set_default_wifi_log_level + 0x000000004010ed3c 0x32 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + *fill* 0x000000004010ed6e 0x2 + .text.esp_wifi_deinit + 0x000000004010ed70 0x87 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x9a (size before relaxing) + 0x000000004010ed70 esp_wifi_deinit + *fill* 0x000000004010edf7 0x1 + .text.esp_wifi_init + 0x000000004010edf8 0x9c esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0xac (size before relaxing) + 0x000000004010edf8 esp_wifi_init + .text.wifi_default_action_sta_got_ip + 0x000000004010ee94 0x3f esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x43 (size before relaxing) + *fill* 0x000000004010eed3 0x1 + .text.wifi_default_action_ap_stop + 0x000000004010eed4 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_default_action_sta_stop + 0x000000004010eeec 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_start + 0x000000004010ef04 0xb8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0xc8 (size before relaxing) + .text.wifi_default_action_ap_start + 0x000000004010efbc 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_default_action_sta_start + 0x000000004010efd4 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_default_action_sta_disconnected + 0x000000004010efec 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_default_action_sta_connected + 0x000000004010f004 0x5e esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x66 (size before relaxing) + *fill* 0x000000004010f062 0x2 + .text.clear_default_wifi_handlers + 0x000000004010f064 0x79 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x81 (size before relaxing) + *fill* 0x000000004010f0dd 0x3 + .text.set_default_wifi_handlers + 0x000000004010f0e0 0xd5 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0xd9 (size before relaxing) + *fill* 0x000000004010f1b5 0x3 + .text.create_and_attach + 0x000000004010f1b8 0x36 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x3a (size before relaxing) + *fill* 0x000000004010f1ee 0x2 + .text.esp_netif_attach_wifi + 0x000000004010f1f0 0x39 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x000000004010f229 0x3 + .text.esp_wifi_set_default_wifi_sta_handlers + 0x000000004010f22c 0xa esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0xd (size before relaxing) + 0x000000004010f22c esp_wifi_set_default_wifi_sta_handlers + *fill* 0x000000004010f236 0x2 + .text.esp_netif_attach_wifi_station + 0x000000004010f238 0x11 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x000000004010f238 esp_netif_attach_wifi_station + *fill* 0x000000004010f249 0x3 + .text.esp_netif_create_default_wifi_sta + 0x000000004010f24c 0x5e esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x6a (size before relaxing) + 0x000000004010f24c esp_netif_create_default_wifi_sta + *fill* 0x000000004010f2aa 0x2 + .text.wifi_sta_receive + 0x000000004010f2ac 0x1c esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.wifi_ap_receive + 0x000000004010f2c8 0x1c esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.wifi_driver_start + 0x000000004010f2e4 0x24 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.wifi_free + 0x000000004010f308 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0xf (size before relaxing) + *fill* 0x000000004010f314 0x0 + .text.wifi_transmit_wrap + 0x000000004010f314 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.wifi_transmit + 0x000000004010f328 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.esp_wifi_create_if_driver + 0x000000004010f33c 0x3d esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x000000004010f33c esp_wifi_create_if_driver + *fill* 0x000000004010f379 0x3 + .text.esp_wifi_get_if_mac + 0x000000004010f37c 0x11 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x000000004010f37c esp_wifi_get_if_mac + *fill* 0x000000004010f38d 0x3 + .text.esp_wifi_register_if_rxcb + 0x000000004010f390 0xa2 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0xa6 (size before relaxing) + 0x000000004010f390 esp_wifi_register_if_rxcb + *fill* 0x000000004010f432 0x2 + .text.esp_cpu_intr_enable + 0x000000004010f434 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004010f442 0x2 + .text.esp_cpu_intr_disable + 0x000000004010f444 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004010f452 0x2 + .text.queue_create_wrapper + 0x000000004010f454 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.mutex_delete_wrapper + 0x000000004010f468 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004010f476 0x2 + .text.wifi_thread_semphr_free + 0x000000004010f478 0xf esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004010f487 0x1 + .text.coex_register_start_cb_wrapper + 0x000000004010f488 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x10 (size before relaxing) + .text.coex_schm_register_cb_wrapper + 0x000000004010f494 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004010f4a5 0x3 + .text.coex_schm_process_restart_wrapper + 0x000000004010f4a8 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xd (size before relaxing) + *fill* 0x000000004010f4b2 0x2 + .text.coex_schm_curr_phase_get_wrapper + 0x000000004010f4b4 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xd (size before relaxing) + *fill* 0x000000004010f4be 0x2 + .text.coex_schm_curr_period_get_wrapper + 0x000000004010f4c0 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xd (size before relaxing) + *fill* 0x000000004010f4ca 0x2 + .text.coex_schm_interval_get_wrapper + 0x000000004010f4cc 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xd (size before relaxing) + *fill* 0x000000004010f4d6 0x2 + .text.coex_schm_status_bit_set_wrapper + 0x000000004010f4d8 0xf esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004010f4e7 0x1 + .text.coex_schm_status_bit_clear_wrapper + 0x000000004010f4e8 0xf esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004010f4f7 0x1 + .text.coex_wifi_channel_set_wrapper + 0x000000004010f4f8 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x13 (size before relaxing) + *fill* 0x000000004010f508 0x0 + .text.coex_wifi_request_wrapper + 0x000000004010f508 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x14 (size before relaxing) + .text.coex_disable_wrapper + 0x000000004010f518 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xb (size before relaxing) + *fill* 0x000000004010f520 0x0 + .text.coex_enable_wrapper + 0x000000004010f520 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xd (size before relaxing) + *fill* 0x000000004010f52a 0x2 + .text.coex_deinit_wrapper + 0x000000004010f52c 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xb (size before relaxing) + *fill* 0x000000004010f534 0x0 + .text.coex_init_wrapper + 0x000000004010f534 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xd (size before relaxing) + *fill* 0x000000004010f53e 0x2 + .text.get_time_wrapper + 0x000000004010f540 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x10 (size before relaxing) + .text.wifi_clock_disable_wrapper + 0x000000004010f54c 0xb esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004010f557 0x1 + .text.wifi_clock_enable_wrapper + 0x000000004010f558 0xb esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004010f563 0x1 + .text.wifi_reset_mac_wrapper + 0x000000004010f564 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004010f572 0x2 + .text.esp_event_post_wrapper + 0x000000004010f574 0x28 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.task_create_wrapper + 0x000000004010f59c 0x1e esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004010f5ba 0x2 + .text.task_create_pinned_to_core_wrapper + 0x000000004010f5bc 0x24 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.event_group_wait_bits_wrapper + 0x000000004010f5e0 0x28 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.queue_recv_wrapper + 0x000000004010f608 0x24 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.queue_send_to_front_wrapper + 0x000000004010f62c 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004010f641 0x3 + .text.queue_send_to_back_wrapper + 0x000000004010f644 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004010f659 0x3 + .text.queue_send_wrapper + 0x000000004010f65c 0x26 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004010f682 0x2 + .text.recursive_mutex_create_wrapper + 0x000000004010f684 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.mutex_create_wrapper + 0x000000004010f694 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.wifi_thread_semphr_get_wrapper + 0x000000004010f6a4 0x4c esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x58 (size before relaxing) + .text.set_isr_wrapper + 0x000000004010f6f0 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004010f702 0x2 + .text.set_intr_wrapper + 0x000000004010f704 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004010f716 0x2 + .text.wifi_create_queue + 0x000000004010f718 0x24 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x000000004010f718 wifi_create_queue + .text.wifi_create_queue_wrapper + 0x000000004010f73c 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004010f74d 0x3 + .text.wifi_delete_queue + 0x000000004010f750 0x17 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x000000004010f750 wifi_delete_queue + *fill* 0x000000004010f767 0x1 + .text.wifi_delete_queue_wrapper + 0x000000004010f768 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xe (size before relaxing) + *fill* 0x000000004010f772 0x2 + .text.mbedtls_int_div_int + 0x000000004010f774 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + *fill* 0x000000004010f7a6 0x2 + .text.mbedtls_mpi_zeroize + 0x000000004010f7a8 0xd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + *fill* 0x000000004010f7b5 0x3 + .text.mbedtls_mpi_free + 0x000000004010f7b8 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x26 (size before relaxing) + 0x000000004010f7b8 mbedtls_mpi_free + *fill* 0x000000004010f7da 0x2 + .text.mbedtls_mpi_grow + 0x000000004010f7dc 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x58 (size before relaxing) + 0x000000004010f7dc mbedtls_mpi_grow + .text.mbedtls_mpi_resize_clear + 0x000000004010f828 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x44 (size before relaxing) + .text.mbedtls_mpi_shrink + 0x000000004010f868 0x71 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x79 (size before relaxing) + 0x000000004010f868 mbedtls_mpi_shrink + *fill* 0x000000004010f8d9 0x3 + .text.mbedtls_mpi_copy + 0x000000004010f8dc 0x82 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004010f8dc mbedtls_mpi_copy + *fill* 0x000000004010f95e 0x2 + .text.mbedtls_mpi_lset + 0x000000004010f960 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004010f960 mbedtls_mpi_lset + *fill* 0x000000004010f9a1 0x3 + .text.mbedtls_mpi_set_bit + 0x000000004010f9a4 0x65 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004010f9a4 mbedtls_mpi_set_bit + *fill* 0x000000004010fa09 0x3 + .text.mbedtls_mpi_bitlen + 0x000000004010fa0c 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004010fa0c mbedtls_mpi_bitlen + *fill* 0x000000004010fa1d 0x3 + .text.mbedtls_mpi_size + 0x000000004010fa20 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x13 (size before relaxing) + 0x000000004010fa20 mbedtls_mpi_size + *fill* 0x000000004010fa2f 0x1 + .text.mbedtls_mpi_read_binary_le + 0x000000004010fa30 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x2e (size before relaxing) + 0x000000004010fa30 mbedtls_mpi_read_binary_le + *fill* 0x000000004010fa5a 0x2 + .text.mbedtls_mpi_read_binary + 0x000000004010fa5c 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x2e (size before relaxing) + 0x000000004010fa5c mbedtls_mpi_read_binary + *fill* 0x000000004010fa86 0x2 + .text.mbedtls_mpi_write_binary_le + 0x000000004010fa88 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004010fa88 mbedtls_mpi_write_binary_le + *fill* 0x000000004010fa9d 0x3 + .text.mbedtls_mpi_write_binary + 0x000000004010faa0 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004010faa0 mbedtls_mpi_write_binary + *fill* 0x000000004010fab5 0x3 + .text.mbedtls_mpi_shift_l + 0x000000004010fab8 0xad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xb5 (size before relaxing) + 0x000000004010fab8 mbedtls_mpi_shift_l + *fill* 0x000000004010fb65 0x3 + .text.mbedtls_mpi_shift_r + 0x000000004010fb68 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004010fb68 mbedtls_mpi_shift_r + *fill* 0x000000004010fb7d 0x3 + .text.mbedtls_mpi_cmp_abs + 0x000000004010fb80 0x7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004010fb80 mbedtls_mpi_cmp_abs + *fill* 0x000000004010fbfd 0x3 + .text.mbedtls_mpi_cmp_mpi + 0x000000004010fc00 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004010fc00 mbedtls_mpi_cmp_mpi + *fill* 0x000000004010fc9e 0x2 + .text.mbedtls_mpi_cmp_int + 0x000000004010fca0 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004010fca0 mbedtls_mpi_cmp_int + *fill* 0x000000004010fcd2 0x2 + .text.mbedtls_mpi_add_abs + 0x000000004010fcd4 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xa0 (size before relaxing) + 0x000000004010fcd4 mbedtls_mpi_add_abs + .text.mbedtls_mpi_sub_abs + 0x000000004010fd70 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004010fd70 mbedtls_mpi_sub_abs + .text.add_sub_mpi + 0x000000004010fe10 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x62 (size before relaxing) + *fill* 0x000000004010fe6e 0x2 + .text.mbedtls_mpi_add_mpi + 0x000000004010fe70 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004010fe70 mbedtls_mpi_add_mpi + *fill* 0x000000004010fe85 0x3 + .text.mbedtls_mpi_sub_mpi + 0x000000004010fe88 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004010fe88 mbedtls_mpi_sub_mpi + *fill* 0x000000004010fe9d 0x3 + .text.mbedtls_mpi_add_int + 0x000000004010fea0 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004010fea0 mbedtls_mpi_add_int + *fill* 0x000000004010fed5 0x3 + .text.mbedtls_mpi_sub_int + 0x000000004010fed8 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004010fed8 mbedtls_mpi_sub_int + *fill* 0x000000004010ff0d 0x3 + .text.mbedtls_mpi_div_mpi + 0x000000004010ff10 0x360 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x3c0 (size before relaxing) + 0x000000004010ff10 mbedtls_mpi_div_mpi + .text.mbedtls_mpi_div_int + 0x0000000040110270 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000040110270 mbedtls_mpi_div_int + *fill* 0x00000000401102a6 0x2 + .text.mbedtls_mpi_mod_mpi + 0x00000000401102a8 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x6c (size before relaxing) + 0x00000000401102a8 mbedtls_mpi_mod_mpi + .text.mbedtls_mpi_mod_int + 0x0000000040110308 0x81 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000040110308 mbedtls_mpi_mod_int + *fill* 0x0000000040110389 0x3 + .text.mpi_check_small_factors + 0x000000004011038c 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x54 (size before relaxing) + .text.mbedtls_mpi_gcd + 0x00000000401103d8 0x104 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x130 (size before relaxing) + 0x00000000401103d8 mbedtls_mpi_gcd + .text.mbedtls_mpi_fill_random + 0x00000000401104dc 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x32 (size before relaxing) + 0x00000000401104dc mbedtls_mpi_fill_random + *fill* 0x000000004011050a 0x2 + .text.mpi_miller_rabin + 0x000000004011050c 0x1c5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x205 (size before relaxing) + *fill* 0x00000000401106d1 0x3 + .text.mbedtls_mpi_random + 0x00000000401106d4 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x40 (size before relaxing) + 0x00000000401106d4 mbedtls_mpi_random + .text.mbedtls_mpi_inv_mod + 0x000000004011070c 0x2bc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x334 (size before relaxing) + 0x000000004011070c mbedtls_mpi_inv_mod + .text.mbedtls_mpi_is_prime_ext + 0x00000000401109c8 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x64 (size before relaxing) + 0x00000000401109c8 mbedtls_mpi_is_prime_ext + .text.mbedtls_mpi_core_clz + 0x0000000040110a20 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x0000000040110a20 mbedtls_mpi_core_clz + *fill* 0x0000000040110a3d 0x3 + .text.mbedtls_mpi_core_bitlen + 0x0000000040110a40 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x0000000040110a40 mbedtls_mpi_core_bitlen + *fill* 0x0000000040110a75 0x3 + .text.mbedtls_mpi_core_bigendian_to_host + 0x0000000040110a78 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x0000000040110a78 mbedtls_mpi_core_bigendian_to_host + .text.mbedtls_mpi_core_uint_le_mpi + 0x0000000040110aa8 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x0000000040110aa8 mbedtls_mpi_core_uint_le_mpi + .text.mbedtls_mpi_core_cond_assign + 0x0000000040110adc 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x0000000040110adc mbedtls_mpi_core_cond_assign + *fill* 0x0000000040110af3 0x1 + .text.mbedtls_mpi_core_cond_swap + 0x0000000040110af4 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x0000000040110af4 mbedtls_mpi_core_cond_swap + *fill* 0x0000000040110b32 0x2 + .text.mbedtls_mpi_core_read_le + 0x0000000040110b34 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x0000000040110b34 mbedtls_mpi_core_read_le + *fill* 0x0000000040110b8a 0x2 + .text.mbedtls_mpi_core_read_be + 0x0000000040110b8c 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x52 (size before relaxing) + 0x0000000040110b8c mbedtls_mpi_core_read_be + *fill* 0x0000000040110bda 0x2 + .text.mbedtls_mpi_core_write_le + 0x0000000040110bdc 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x0000000040110bdc mbedtls_mpi_core_write_le + *fill* 0x0000000040110c4e 0x2 + .text.mbedtls_mpi_core_write_be + 0x0000000040110c50 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x0000000040110c50 mbedtls_mpi_core_write_be + .text.mbedtls_mpi_core_shift_r + 0x0000000040110cc0 0x93 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x0000000040110cc0 mbedtls_mpi_core_shift_r + *fill* 0x0000000040110d53 0x1 + .text.mbedtls_mpi_core_fill_random + 0x0000000040110d54 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x62 (size before relaxing) + 0x0000000040110d54 mbedtls_mpi_core_fill_random + *fill* 0x0000000040110db2 0x2 + .text.mbedtls_mpi_core_random + 0x0000000040110db4 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x96 (size before relaxing) + 0x0000000040110db4 mbedtls_mpi_core_random + *fill* 0x0000000040110e3e 0x2 + .text.get_pkcs_padding + 0x0000000040110e40 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x0000000040110eaa 0x2 + .text.get_one_and_zeros_padding + 0x0000000040110eac 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x0000000040110f12 0x2 + .text.get_zeros_and_len_padding + 0x0000000040110f14 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.get_zeros_padding + 0x0000000040110f7c 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x0000000040110fca 0x2 + .text.get_no_padding + 0x0000000040110fcc 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x0000000040110fed 0x3 + .text.mbedtls_cipher_info_from_type + 0x0000000040110ff0 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x0000000040110ff0 mbedtls_cipher_info_from_type + *fill* 0x0000000040111009 0x3 + .text.mbedtls_cipher_info_from_values + 0x000000004011100c 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x000000004011100c mbedtls_cipher_info_from_values + *fill* 0x0000000040111031 0x3 + .text.mbedtls_cipher_init + 0x0000000040111034 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x0000000040111034 mbedtls_cipher_init + *fill* 0x0000000040111046 0x2 + .text.mbedtls_cipher_free + 0x0000000040111048 0x2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x36 (size before relaxing) + 0x0000000040111048 mbedtls_cipher_free + *fill* 0x0000000040111077 0x1 + .text.mbedtls_cipher_setkey + 0x0000000040111078 0x6d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x0000000040111078 mbedtls_cipher_setkey + *fill* 0x00000000401110e5 0x3 + .text.mbedtls_cipher_update + 0x00000000401110e8 0x23c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x240 (size before relaxing) + 0x00000000401110e8 mbedtls_cipher_update + .text.mbedtls_cipher_set_padding_mode + 0x0000000040111324 0x87 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x0000000040111324 mbedtls_cipher_set_padding_mode + *fill* 0x00000000401113ab 0x1 + .text.mbedtls_cipher_setup + 0x00000000401113ac 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x00000000401113ac mbedtls_cipher_setup + *fill* 0x00000000401113e5 0x3 + .text.ccm_ctx_free + 0x00000000401113e8 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x00000000401113fa 0x2 + .text.ccm_ctx_alloc + 0x00000000401113fc 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x0000000040111412 0x2 + .text.ccm_aria_setkey_wrap + 0x0000000040111414 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x0000000040111429 0x3 + .text.ccm_aes_setkey_wrap + 0x000000004011142c 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x0000000040111441 0x3 + .text.gcm_ctx_free + 0x0000000040111444 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x0000000040111456 0x2 + .text.gcm_ctx_alloc + 0x0000000040111458 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x000000004011146e 0x2 + .text.gcm_aria_setkey_wrap + 0x0000000040111470 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x0000000040111485 0x3 + .text.gcm_aes_setkey_wrap + 0x0000000040111488 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x000000004011149d 0x3 + .text.aria_ctx_free + 0x00000000401114a0 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x00000000401114b2 0x2 + .text.aria_ctx_alloc + 0x00000000401114b4 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x00000000401114ca 0x2 + .text.aria_setkey_dec_wrap + 0x00000000401114cc 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aria_setkey_enc_wrap + 0x00000000401114dc 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aria_crypt_ctr_wrap + 0x00000000401114ec 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x0000000040111509 0x3 + .text.aria_crypt_cfb128_wrap + 0x000000004011150c 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x0000000040111529 0x3 + .text.aria_crypt_cbc_wrap + 0x000000004011152c 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x0000000040111545 0x3 + .text.aria_crypt_ecb_wrap + 0x0000000040111548 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.xts_aes_ctx_free + 0x0000000040111558 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x17 (size before relaxing) + *fill* 0x000000004011156b 0x1 + .text.xts_aes_ctx_alloc + 0x000000004011156c 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x0000000040111582 0x2 + .text.xts_aes_setkey_dec_wrap + 0x0000000040111584 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.xts_aes_setkey_enc_wrap + 0x0000000040111594 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aes_crypt_xts_wrap + 0x00000000401115a4 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x00000000401115c9 0x3 + .text.aes_ctx_free + 0x00000000401115cc 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x00000000401115de 0x2 + .text.aes_ctx_alloc + 0x00000000401115e0 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x00000000401115f6 0x2 + .text.aes_setkey_dec_wrap + 0x00000000401115f8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aes_setkey_enc_wrap + 0x0000000040111608 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aes_crypt_ctr_wrap + 0x0000000040111618 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x0000000040111635 0x3 + .text.aes_crypt_ofb_wrap + 0x0000000040111638 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x0000000040111651 0x3 + .text.aes_crypt_cfb128_wrap + 0x0000000040111654 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x0000000040111671 0x3 + .text.aes_crypt_cbc_wrap + 0x0000000040111674 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x000000004011168d 0x3 + .text.aes_crypt_ecb_wrap + 0x0000000040111690 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x00000000401116a5 0x3 + .text.mbedtls_ct_uint_if + 0x00000000401116a8 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x00000000401116a8 mbedtls_ct_uint_if + *fill* 0x00000000401116bf 0x1 + .text.mbedtls_ct_mem_move_to_left + 0x00000000401116c0 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x74 (size before relaxing) + .text.mbedtls_ct_base64_dec_value + 0x0000000040111730 0x87 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x0000000040111730 mbedtls_ct_base64_dec_value + *fill* 0x00000000401117b7 0x1 + .text.mbedtls_mpi_safe_cond_assign + 0x00000000401117b8 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x5c (size before relaxing) + 0x00000000401117b8 mbedtls_mpi_safe_cond_assign + .text.mbedtls_mpi_safe_cond_swap + 0x0000000040111810 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x5e (size before relaxing) + 0x0000000040111810 mbedtls_mpi_safe_cond_swap + *fill* 0x0000000040111866 0x2 + .text.mbedtls_mpi_core_lt_ct + 0x0000000040111868 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x0000000040111868 mbedtls_mpi_core_lt_ct + .text.mbedtls_ct_rsaes_pkcs1_v15_unpadding + 0x00000000401118b4 0xfc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x110 (size before relaxing) + 0x00000000401118b4 mbedtls_ct_rsaes_pkcs1_v15_unpadding + .text.cmac_multiply_by_u + 0x00000000401119b0 0x59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + *fill* 0x0000000040111a09 0x3 + .text.cmac_generate_subkeys + 0x0000000040111a0c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x50 (size before relaxing) + .text.mbedtls_cipher_cmac_starts + 0x0000000040111a50 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x74 (size before relaxing) + 0x0000000040111a50 mbedtls_cipher_cmac_starts + .text.mbedtls_cipher_cmac_update + 0x0000000040111ac0 0xfe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x0000000040111ac0 mbedtls_cipher_cmac_update + *fill* 0x0000000040111bbe 0x2 + .text.mbedtls_cipher_cmac_finish + 0x0000000040111bc0 0x109 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x121 (size before relaxing) + 0x0000000040111bc0 mbedtls_cipher_cmac_finish + *fill* 0x0000000040111cc9 0x3 + .text.block_cipher_df + 0x0000000040111ccc 0x1a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x1b4 (size before relaxing) + .text.ctr_drbg_update_internal + 0x0000000040111e6c 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_reseed_internal + 0x0000000040111f10 0xc7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0xd3 (size before relaxing) + *fill* 0x0000000040111fd7 0x1 + .text.mbedtls_ctr_drbg_init + 0x0000000040111fd8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x24 (size before relaxing) + 0x0000000040111fd8 mbedtls_ctr_drbg_init + .text.mbedtls_ctr_drbg_free + 0x0000000040111ff8 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x23 (size before relaxing) + 0x0000000040111ff8 mbedtls_ctr_drbg_free + *fill* 0x0000000040112017 0x1 + .text.mbedtls_ctr_drbg_reseed + 0x0000000040112018 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x0000000040112018 mbedtls_ctr_drbg_reseed + *fill* 0x000000004011202d 0x3 + .text.mbedtls_ctr_drbg_seed + 0x0000000040112030 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x5a (size before relaxing) + 0x0000000040112030 mbedtls_ctr_drbg_seed + *fill* 0x0000000040112086 0x2 + .text.mbedtls_ctr_drbg_random_with_add + 0x0000000040112088 0xf3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x103 (size before relaxing) + 0x0000000040112088 mbedtls_ctr_drbg_random_with_add + *fill* 0x000000004011217b 0x1 + .text.mbedtls_ctr_drbg_random + 0x000000004011217c 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x18 (size before relaxing) + 0x000000004011217c mbedtls_ctr_drbg_random + .text.ecdh_gen_public_restartable + 0x0000000040112190 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x34 (size before relaxing) + .text.ecdh_compute_shared_restartable + 0x00000000401121c0 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x53 (size before relaxing) + *fill* 0x0000000040112204 0x0 + .text.ecdh_init_internal + 0x0000000040112204 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x46 (size before relaxing) + *fill* 0x000000004011223e 0x2 + .text.ecdh_setup_internal + 0x0000000040112240 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + *fill* 0x0000000040112256 0x2 + .text.ecdh_free_internal + 0x0000000040112258 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x46 (size before relaxing) + *fill* 0x000000004011228a 0x2 + .text.ecdh_calc_secret_internal + 0x000000004011228c 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x9c (size before relaxing) + .text.mbedtls_ecdh_gen_public + 0x000000004011231c 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x000000004011231c mbedtls_ecdh_gen_public + *fill* 0x0000000040112335 0x3 + .text.mbedtls_ecdh_compute_shared + 0x0000000040112338 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040112338 mbedtls_ecdh_compute_shared + *fill* 0x0000000040112355 0x3 + .text.mbedtls_ecdh_init + 0x0000000040112358 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x3a (size before relaxing) + 0x0000000040112358 mbedtls_ecdh_init + *fill* 0x0000000040112386 0x2 + .text.mbedtls_ecdh_setup + 0x0000000040112388 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040112388 mbedtls_ecdh_setup + *fill* 0x0000000040112399 0x3 + .text.mbedtls_ecdh_free + 0x000000004011239c 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x32 (size before relaxing) + 0x000000004011239c mbedtls_ecdh_free + *fill* 0x00000000401123c2 0x2 + .text.mbedtls_ecdh_calc_secret + 0x00000000401123c4 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x00000000401123c4 mbedtls_ecdh_calc_secret + *fill* 0x00000000401123e2 0x2 + .text.ecp_pick_window_size + 0x00000000401123e4 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mpi_init_many + 0x0000000040112418 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x0000000040112433 0x1 + .text.mpi_free_many + 0x0000000040112434 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x000000004011244f 0x1 + .text.ecp_check_bad_points_mx + 0x0000000040112450 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xab (size before relaxing) + *fill* 0x00000000401124e4 0x0 + .text.ecp_check_pubkey_mx + 0x00000000401124e4 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x41 (size before relaxing) + *fill* 0x000000004011251d 0x3 + .text.mbedtls_mpi_sub_int_mod + 0x0000000040112520 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x3e (size before relaxing) + *fill* 0x000000004011255a 0x2 + .text.mbedtls_mpi_sub_mod + 0x000000004011255c 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x000000004011259a 0x2 + .text.ecp_modp + 0x000000004011259c 0x97 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x9b (size before relaxing) + *fill* 0x0000000040112633 0x1 + .text.mbedtls_mpi_mul_mod + 0x0000000040112634 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2c (size before relaxing) + .text.mbedtls_mpi_add_mod + 0x0000000040112658 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x3c (size before relaxing) + .text.ecp_sw_rhs + 0x0000000040112690 0x59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x61 (size before relaxing) + *fill* 0x00000000401126e9 0x3 + .text.mbedtls_ecp_sw_derive_y + 0x00000000401126ec 0x7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x98 (size before relaxing) + *fill* 0x0000000040112769 0x3 + .text.ecp_check_pubkey_sw + 0x000000004011276c 0x79 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x99 (size before relaxing) + *fill* 0x00000000401127e5 0x3 + .text.ecp_double_add_mxz + 0x00000000401127e8 0x120 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x160 (size before relaxing) + .text.ecp_randomize_mxz + 0x0000000040112908 0x47 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x5a (size before relaxing) + *fill* 0x000000004011294f 0x1 + .text.ecp_randomize_jac + 0x0000000040112950 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x90 (size before relaxing) + .text.mbedtls_ecp_gen_privkey_sw + 0x00000000401129cc 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + .text.ecp_normalize_mxz + 0x00000000401129e8 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x32 (size before relaxing) + *fill* 0x0000000040112a12 0x2 + .text.ecp_normalize_jac + 0x0000000040112a14 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x92 (size before relaxing) + *fill* 0x0000000040112a8b 0x1 + .text.mbedtls_mpi_mul_int_mod + 0x0000000040112a8c 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x3c (size before relaxing) + .text.mbedtls_mpi_shift_l_mod + 0x0000000040112ac4 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x3a (size before relaxing) + *fill* 0x0000000040112afa 0x2 + .text.ecp_double_jac + 0x0000000040112afc 0x1b9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x225 (size before relaxing) + *fill* 0x0000000040112cb5 0x3 + .text.ecp_normalize_jac_many + 0x0000000040112cb8 0x16a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1a6 (size before relaxing) + *fill* 0x0000000040112e22 0x2 + .text.ecp_safe_invert_jac + 0x0000000040112e24 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4c (size before relaxing) + .text.ecp_select_comb + 0x0000000040112e60 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x6c (size before relaxing) + .text.ecp_comb_recode_core + 0x0000000040112ebc 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8e (size before relaxing) + *fill* 0x0000000040112f46 0x2 + .text.ecp_comb_recode_scalar + 0x0000000040112f48 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x91 (size before relaxing) + *fill* 0x0000000040112fbd 0x3 + .text.mbedtls_ecp_gen_privkey_mx + 0x0000000040112fc0 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x6a (size before relaxing) + *fill* 0x0000000040113016 0x2 + .text.mbedtls_ecp_restart_is_enabled + 0x0000000040113018 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x0000000040113018 mbedtls_ecp_restart_is_enabled + *fill* 0x0000000040113029 0x3 + .text.mbedtls_ecp_check_budget + 0x000000004011302c 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x000000004011302c mbedtls_ecp_check_budget + *fill* 0x000000004011307d 0x3 + .text.mbedtls_ecp_curve_list + 0x0000000040113080 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x0000000040113080 mbedtls_ecp_curve_list + .text.mbedtls_ecp_grp_id_list + 0x0000000040113088 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x0000000040113088 mbedtls_ecp_grp_id_list + *fill* 0x00000000401130c5 0x3 + .text.mbedtls_ecp_point_init + 0x00000000401130c8 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1f (size before relaxing) + 0x00000000401130c8 mbedtls_ecp_point_init + *fill* 0x00000000401130df 0x1 + .text.ecp_restart_rsm_init + 0x00000000401130e0 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x19 (size before relaxing) + *fill* 0x00000000401130f5 0x3 + .text.ecp_restart_ma_init + 0x00000000401130f8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1c (size before relaxing) + .text.mbedtls_ecp_group_init + 0x0000000040113110 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x51 (size before relaxing) + 0x0000000040113110 mbedtls_ecp_group_init + *fill* 0x0000000040113151 0x3 + .text.mbedtls_ecp_keypair_init + 0x0000000040113154 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x22 (size before relaxing) + 0x0000000040113154 mbedtls_ecp_keypair_init + *fill* 0x000000004011316e 0x2 + .text.mbedtls_ecp_point_free + 0x0000000040113170 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + 0x0000000040113170 mbedtls_ecp_point_free + .text.ecp_restart_rsm_free + 0x0000000040113188 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x44 (size before relaxing) + .text.ecp_restart_ma_free + 0x00000000401131c8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + .text.mbedtls_ecp_restart_free + 0x00000000401131e0 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2f (size before relaxing) + 0x00000000401131e0 mbedtls_ecp_restart_free + *fill* 0x0000000040113203 0x1 + .text.mbedtls_ecp_group_free + 0x0000000040113204 0x5b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x6b (size before relaxing) + 0x0000000040113204 mbedtls_ecp_group_free + *fill* 0x000000004011325f 0x1 + .text.mbedtls_ecp_keypair_free + 0x0000000040113260 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x23 (size before relaxing) + 0x0000000040113260 mbedtls_ecp_keypair_free + *fill* 0x000000004011327b 0x1 + .text.mbedtls_ecp_copy + 0x000000004011327c 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2c (size before relaxing) + 0x000000004011327c mbedtls_ecp_copy + .text.ecp_mul_mxz + 0x00000000401132a0 0x141 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x185 (size before relaxing) + *fill* 0x00000000401133e1 0x3 + .text.mbedtls_ecp_group_copy + 0x00000000401133e4 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x00000000401133e4 mbedtls_ecp_group_copy + *fill* 0x00000000401133f5 0x3 + .text.mbedtls_ecp_set_zero + 0x00000000401133f8 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2a (size before relaxing) + 0x00000000401133f8 mbedtls_ecp_set_zero + *fill* 0x000000004011341a 0x2 + .text.ecp_add_mixed + 0x000000004011341c 0x1a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1fc (size before relaxing) + .text.ecp_precompute_comb + 0x00000000401135c0 0x268 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x278 (size before relaxing) + .text.ecp_mul_comb_core + 0x0000000040113828 0xea esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x102 (size before relaxing) + *fill* 0x0000000040113912 0x2 + .text.ecp_mul_comb_after_precomp + 0x0000000040113914 0xaa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xba (size before relaxing) + *fill* 0x00000000401139be 0x2 + .text.ecp_mul_comb + 0x00000000401139c0 0x1ca esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1ea (size before relaxing) + *fill* 0x0000000040113b8a 0x2 + .text.mbedtls_ecp_is_zero + 0x0000000040113b8c 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x0000000040113b8c mbedtls_ecp_is_zero + *fill* 0x0000000040113ba3 0x1 + .text.mbedtls_ecp_point_cmp + 0x0000000040113ba4 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x42 (size before relaxing) + 0x0000000040113ba4 mbedtls_ecp_point_cmp + *fill* 0x0000000040113bde 0x2 + .text.mbedtls_ecp_point_write_binary + 0x0000000040113be0 0xe9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xfd (size before relaxing) + 0x0000000040113be0 mbedtls_ecp_point_write_binary + *fill* 0x0000000040113cc9 0x3 + .text.mbedtls_ecp_point_read_binary + 0x0000000040113ccc 0x11c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x134 (size before relaxing) + 0x0000000040113ccc mbedtls_ecp_point_read_binary + .text.mbedtls_ecp_check_pubkey + 0x0000000040113de8 0x43 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4b (size before relaxing) + 0x0000000040113de8 mbedtls_ecp_check_pubkey + *fill* 0x0000000040113e2b 0x1 + .text.mbedtls_ecp_check_privkey + 0x0000000040113e2c 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8e (size before relaxing) + 0x0000000040113e2c mbedtls_ecp_check_privkey + *fill* 0x0000000040113ea6 0x2 + .text.ecp_mul_restartable_internal + 0x0000000040113ea8 0x8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x9e (size before relaxing) + *fill* 0x0000000040113f36 0x2 + .text.mbedtls_ecp_mul_restartable + 0x0000000040113f38 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x26 (size before relaxing) + 0x0000000040113f38 mbedtls_ecp_mul_restartable + *fill* 0x0000000040113f5a 0x2 + .text.mbedtls_ecp_mul + 0x0000000040113f5c 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x0000000040113f5c mbedtls_ecp_mul + *fill* 0x0000000040113f79 0x3 + .text.mbedtls_ecp_mul_shortcuts + 0x0000000040113f7c 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xe7 (size before relaxing) + *fill* 0x000000004011403c 0x0 + .text.mbedtls_ecp_muladd_restartable + 0x000000004011403c 0x156 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x182 (size before relaxing) + 0x000000004011403c mbedtls_ecp_muladd_restartable + *fill* 0x0000000040114192 0x2 + .text.mbedtls_ecp_muladd + 0x0000000040114194 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x0000000040114194 mbedtls_ecp_muladd + *fill* 0x00000000401141b1 0x3 + .text.mbedtls_ecp_gen_privkey + 0x00000000401141b4 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x41 (size before relaxing) + 0x00000000401141b4 mbedtls_ecp_gen_privkey + *fill* 0x00000000401141f1 0x3 + .text.mbedtls_ecp_gen_keypair_base + 0x00000000401141f4 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x29 (size before relaxing) + 0x00000000401141f4 mbedtls_ecp_gen_keypair_base + *fill* 0x0000000040114219 0x3 + .text.mbedtls_ecp_gen_keypair + 0x000000004011421c 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x000000004011421c mbedtls_ecp_gen_keypair + *fill* 0x0000000040114236 0x2 + .text.mbedtls_ecp_gen_key + 0x0000000040114238 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x28 (size before relaxing) + 0x0000000040114238 mbedtls_ecp_gen_key + .text.mbedtls_ecp_check_pub_priv + 0x000000004011425c 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xbc (size before relaxing) + 0x000000004011425c mbedtls_ecp_check_pub_priv + .text.mbedtls_ecp_mod_p192_raw + 0x00000000401142f8 0xb5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xdd (size before relaxing) + *fill* 0x00000000401143ad 0x3 + .text.mbedtls_ecp_mod_p224_raw + 0x00000000401143b0 0x225 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x00000000401145d5 0x3 + .text.mbedtls_ecp_mod_p256_raw + 0x00000000401145d8 0x51d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x0000000040114af5 0x3 + .text.ecp_mod_p255 + 0x0000000040114af8 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x0000000040114b4a 0x2 + .text.ecp_mod_koblitz + 0x0000000040114b4c 0x15a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x166 (size before relaxing) + *fill* 0x0000000040114ca6 0x2 + .text.ecp_mod_p256k1 + 0x0000000040114ca8 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x0000000040114cc2 0x2 + .text.ecp_mod_p224k1 + 0x0000000040114cc4 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x0000000040114cde 0x2 + .text.ecp_mod_p192k1 + 0x0000000040114ce0 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x0000000040114cfa 0x2 + .text.ecp_mod_p384 + 0x0000000040114cfc 0x824 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x828 (size before relaxing) + .text.ecp_mod_p256 + 0x0000000040115520 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x1d (size before relaxing) + *fill* 0x0000000040115539 0x3 + .text.ecp_mod_p224 + 0x000000004011553c 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x1d (size before relaxing) + *fill* 0x0000000040115555 0x3 + .text.ecp_mod_p192 + 0x0000000040115558 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x1d (size before relaxing) + *fill* 0x0000000040115571 0x3 + .text.mbedtls_ecp_mod_p521_raw + 0x0000000040115574 0x69 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x6d (size before relaxing) + *fill* 0x00000000401155dd 0x3 + .text.ecp_mod_p521 + 0x00000000401155e0 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x1d (size before relaxing) + *fill* 0x00000000401155f9 0x3 + .text.ecp_group_load + 0x00000000401155fc 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x88 (size before relaxing) + .text.ecp_use_curve25519 + 0x000000004011567c 0x69 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x79 (size before relaxing) + *fill* 0x00000000401156e5 0x3 + .text.mbedtls_ecp_group_load + 0x00000000401156e8 0x31c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x324 (size before relaxing) + 0x00000000401156e8 mbedtls_ecp_group_load + .text.entropy_update + 0x0000000040115a04 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x6a (size before relaxing) + *fill* 0x0000000040115a66 0x2 + .text.entropy_gather_internal + 0x0000000040115a68 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x90 (size before relaxing) + .text.mbedtls_entropy_free + 0x0000000040115af0 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x2a (size before relaxing) + 0x0000000040115af0 mbedtls_entropy_free + *fill* 0x0000000040115b16 0x2 + .text.mbedtls_entropy_init + 0x0000000040115b18 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x36 (size before relaxing) + 0x0000000040115b18 mbedtls_entropy_init + *fill* 0x0000000040115b4a 0x2 + .text.mbedtls_entropy_func + 0x0000000040115b4c 0x104 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x118 (size before relaxing) + 0x0000000040115b4c mbedtls_entropy_func + .text.mbedtls_md_info_from_type + 0x0000000040115c50 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x0000000040115c50 mbedtls_md_info_from_type + *fill* 0x0000000040115c9a 0x2 + .text.mbedtls_md_free + 0x0000000040115c9c 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x94 (size before relaxing) + 0x0000000040115c9c mbedtls_md_free + .text.mbedtls_md_setup + 0x0000000040115d20 0x112 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x142 (size before relaxing) + 0x0000000040115d20 mbedtls_md_setup + *fill* 0x0000000040115e32 0x2 + .text.mbedtls_md_starts + 0x0000000040115e34 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x0000000040115e34 mbedtls_md_starts + .text.mbedtls_md_update + 0x0000000040115ec8 0xa5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x0000000040115ec8 mbedtls_md_update + *fill* 0x0000000040115f6d 0x3 + .text.mbedtls_md_finish + 0x0000000040115f70 0x9d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x0000000040115f70 mbedtls_md_finish + *fill* 0x000000004011600d 0x3 + .text.mbedtls_md + 0x0000000040116010 0xa1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x0000000040116010 mbedtls_md + *fill* 0x00000000401160b1 0x3 + .text.mbedtls_md_hmac_starts + 0x00000000401160b4 0xd3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0xe7 (size before relaxing) + 0x00000000401160b4 mbedtls_md_hmac_starts + *fill* 0x0000000040116187 0x1 + .text.mbedtls_md_hmac_update + 0x0000000040116188 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x0000000040116188 mbedtls_md_hmac_update + *fill* 0x00000000401161b9 0x3 + .text.mbedtls_md_hmac_finish + 0x00000000401161bc 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x78 (size before relaxing) + 0x00000000401161bc mbedtls_md_hmac_finish + .text.mbedtls_md_hmac_reset + 0x0000000040116224 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x44 (size before relaxing) + 0x0000000040116224 mbedtls_md_hmac_reset + .text.mbedtls_md5 + 0x0000000040116260 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x40 (size before relaxing) + 0x0000000040116260 mbedtls_md5 + *fill* 0x0000000040116291 0x3 + .text.pkcs5_pbkdf2_hmac + 0x0000000040116294 0x11c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x138 (size before relaxing) + .text.mbedtls_pkcs5_pbkdf2_hmac_ext + 0x00000000401163b0 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x5d (size before relaxing) + 0x00000000401163b0 mbedtls_pkcs5_pbkdf2_hmac_ext + *fill* 0x0000000040116401 0x3 + .text.mbedtls_calloc + 0x0000000040116404 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0x0000000040116404 mbedtls_calloc + .text.mbedtls_free + 0x0000000040116418 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0x0000000040116418 mbedtls_free + *fill* 0x0000000040116427 0x1 + .text.mbedtls_platform_zeroize + 0x0000000040116428 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x0000000040116428 mbedtls_platform_zeroize + .text.mbedtls_sha1 + 0x0000000040116440 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x40 (size before relaxing) + 0x0000000040116440 mbedtls_sha1 + *fill* 0x0000000040116471 0x3 + .text.mbedtls_sha256 + 0x0000000040116474 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x4a (size before relaxing) + 0x0000000040116474 mbedtls_sha256 + *fill* 0x00000000401164b2 0x2 + .text.mbedtls_sha512 + 0x00000000401164b4 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x4a (size before relaxing) + 0x00000000401164b4 mbedtls_sha512 + *fill* 0x00000000401164f2 0x2 + .text.mbedtls_hardware_poll + 0x00000000401164f4 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x00000000401164f4 mbedtls_hardware_poll + *fill* 0x0000000040116507 0x1 + .text.esp_aes_xts_init + 0x0000000040116508 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x17 (size before relaxing) + 0x0000000040116508 esp_aes_xts_init + *fill* 0x0000000040116518 0x0 + .text.esp_aes_xts_free + 0x0000000040116518 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x17 (size before relaxing) + 0x0000000040116518 esp_aes_xts_free + *fill* 0x0000000040116528 0x0 + .text.esp_aes_xts_setkey_enc + 0x0000000040116528 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x36 (size before relaxing) + 0x0000000040116528 esp_aes_xts_setkey_enc + *fill* 0x0000000040116556 0x2 + .text.esp_aes_xts_setkey_dec + 0x0000000040116558 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x36 (size before relaxing) + 0x0000000040116558 esp_aes_xts_setkey_dec + *fill* 0x0000000040116586 0x2 + .text.esp_aes_crypt_xts + 0x0000000040116588 0x176 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x17a (size before relaxing) + 0x0000000040116588 esp_aes_crypt_xts + *fill* 0x00000000401166fe 0x2 + .text.esp_aes_init + 0x0000000040116700 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x0000000040116700 esp_aes_init + *fill* 0x0000000040116712 0x2 + .text.esp_aes_free + 0x0000000040116714 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x0000000040116714 esp_aes_free + *fill* 0x0000000040116727 0x1 + .text.esp_aes_setkey + 0x0000000040116728 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x0000000040116728 esp_aes_setkey + *fill* 0x0000000040116769 0x3 + .text.esp_aes_block + 0x000000004011676c 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x7a (size before relaxing) + *fill* 0x00000000401167e2 0x2 + .text.esp_aes_acquire_hardware + 0x00000000401167e4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x00000000401167e4 esp_aes_acquire_hardware + .text.esp_aes_release_hardware + 0x00000000401167fc 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x00000000401167fc esp_aes_release_hardware + *fill* 0x0000000040116813 0x1 + .text.esp_aes_crypt_ecb + 0x0000000040116814 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x62 (size before relaxing) + 0x0000000040116814 esp_aes_crypt_ecb + *fill* 0x0000000040116862 0x2 + .text.esp_aes_crypt_cbc + 0x0000000040116864 0x11c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x130 (size before relaxing) + 0x0000000040116864 esp_aes_crypt_cbc + .text.esp_aes_crypt_cfb128 + 0x0000000040116980 0x124 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x134 (size before relaxing) + 0x0000000040116980 esp_aes_crypt_cfb128 + .text.esp_aes_crypt_ctr + 0x0000000040116aa4 0x12c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x13c (size before relaxing) + 0x0000000040116aa4 esp_aes_crypt_ctr + .text.esp_aes_crypt_ofb + 0x0000000040116bd0 0xec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0xf4 (size before relaxing) + 0x0000000040116bd0 esp_aes_crypt_ofb + .text.mpi_words + 0x0000000040116cbc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .text.modular_inverse + 0x0000000040116cdc 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .text.calculate_rinv + 0x0000000040116d50 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x36 (size before relaxing) + *fill* 0x0000000040116d7b 0x1 + .text.mpi_montgomery_exp_calc + 0x0000000040116d7c 0xe5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x111 (size before relaxing) + *fill* 0x0000000040116e61 0x3 + .text.esp_mpi_exp_mod + 0x0000000040116e64 0xec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x11c (size before relaxing) + .text.mpi_mult_mpi_failover_mod_mult + 0x0000000040116f50 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x85 (size before relaxing) + *fill* 0x0000000040116fbe 0x2 + .text.mbedtls_mpi_exp_mod + 0x0000000040116fc0 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x18 (size before relaxing) + 0x0000000040116fc0 mbedtls_mpi_exp_mod + .text.mbedtls_mpi_mul_mpi + 0x0000000040116fd4 0x120 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x13c (size before relaxing) + 0x0000000040116fd4 mbedtls_mpi_mul_mpi + .text.mpi_mult_mpi_overlong + 0x00000000401170f4 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x6e (size before relaxing) + *fill* 0x0000000040117156 0x2 + .text.mbedtls_mpi_mul_int + 0x0000000040117158 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x20 (size before relaxing) + 0x0000000040117158 mbedtls_mpi_mul_int + .text.esp_mpi_enable_hardware_hw_op + 0x0000000040117174 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x19 (size before relaxing) + 0x0000000040117174 esp_mpi_enable_hardware_hw_op + *fill* 0x0000000040117185 0x3 + .text.esp_mpi_disable_hardware_hw_op + 0x0000000040117188 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x19 (size before relaxing) + 0x0000000040117188 esp_mpi_disable_hardware_hw_op + *fill* 0x0000000040117199 0x3 + .text.esp_mpi_mul_mpi_hw_op + 0x000000004011719c 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x44 (size before relaxing) + 0x000000004011719c esp_mpi_mul_mpi_hw_op + .text.esp_mpi_mult_mpi_failover_mod_mult_hw_op + 0x00000000401171d0 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x8a (size before relaxing) + 0x00000000401171d0 esp_mpi_mult_mpi_failover_mod_mult_hw_op + *fill* 0x000000004011723a 0x2 + .text.esp_mont_hw_op + 0x000000004011723c 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x92 (size before relaxing) + 0x000000004011723c esp_mont_hw_op + *fill* 0x00000000401172b2 0x2 + .text.mbedtls_sha1_software_process + 0x00000000401172b4 0x1294 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .text.esp_internal_sha1_parallel_engine_process + 0x0000000040118548 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x56 (size before relaxing) + *fill* 0x0000000040118596 0x2 + .text.mbedtls_sha1_init + 0x0000000040118598 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x0000000040118598 mbedtls_sha1_init + *fill* 0x00000000401185aa 0x2 + .text.mbedtls_sha1_free + 0x00000000401185ac 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x22 (size before relaxing) + 0x00000000401185ac mbedtls_sha1_free + *fill* 0x00000000401185c7 0x1 + .text.mbedtls_sha1_starts + 0x00000000401185c8 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x00000000401185c8 mbedtls_sha1_starts + *fill* 0x0000000040118601 0x3 + .text.mbedtls_sha1_update + 0x0000000040118604 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0xa8 (size before relaxing) + 0x0000000040118604 mbedtls_sha1_update + .text.mbedtls_sha1_finish + 0x00000000401186a8 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x118 (size before relaxing) + 0x00000000401186a8 mbedtls_sha1_finish + .text.mbedtls_sha256_software_process + 0x00000000401187b0 0x9b4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.esp_internal_sha256_parallel_engine_process + 0x0000000040119164 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x5d (size before relaxing) + *fill* 0x00000000401191b6 0x2 + .text.mbedtls_sha256_init + 0x00000000401191b8 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x00000000401191b8 mbedtls_sha256_init + *fill* 0x00000000401191ca 0x2 + .text.mbedtls_sha256_free + 0x00000000401191cc 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x22 (size before relaxing) + 0x00000000401191cc mbedtls_sha256_free + *fill* 0x00000000401191e7 0x1 + .text.mbedtls_sha256_starts + 0x00000000401191e8 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x00000000401191e8 mbedtls_sha256_starts + *fill* 0x0000000040119262 0x2 + .text.mbedtls_sha256_update + 0x0000000040119264 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0xa8 (size before relaxing) + 0x0000000040119264 mbedtls_sha256_update + .text.mbedtls_sha256_finish + 0x0000000040119308 0x155 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x165 (size before relaxing) + 0x0000000040119308 mbedtls_sha256_finish + *fill* 0x000000004011945d 0x3 + .text.mbedtls_sha512_software_process + 0x0000000040119460 0xe6d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + *fill* 0x000000004011a2cd 0x3 + .text.esp_internal_sha512_parallel_engine_process + 0x000000004011a2d0 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + *fill* 0x000000004011a342 0x2 + .text.mbedtls_sha512_init + 0x000000004011a344 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x000000004011a344 mbedtls_sha512_init + *fill* 0x000000004011a356 0x2 + .text.mbedtls_sha512_free + 0x000000004011a358 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x2a (size before relaxing) + 0x000000004011a358 mbedtls_sha512_free + *fill* 0x000000004011a37f 0x1 + .text.mbedtls_sha512_starts + 0x000000004011a380 0xda esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0xdd (size before relaxing) + 0x000000004011a380 mbedtls_sha512_starts + *fill* 0x000000004011a45a 0x2 + .text.mbedtls_sha512_update + 0x000000004011a45c 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0xe4 (size before relaxing) + 0x000000004011a45c mbedtls_sha512_update + .text.mbedtls_sha512_finish + 0x000000004011a534 0x274 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x27c (size before relaxing) + 0x000000004011a534 mbedtls_sha512_finish + .text.gcm_mult + 0x000000004011a7a8 0x129 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + *fill* 0x000000004011a8d1 0x3 + .text.increment32_j0 + 0x000000004011a8d4 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + *fill* 0x000000004011a916 0x2 + .text.esp_gcm_ghash + 0x000000004011a918 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x5a (size before relaxing) + *fill* 0x000000004011a966 0x2 + .text.esp_gcm_derive_J0 + 0x000000004011a968 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x82 (size before relaxing) + *fill* 0x000000004011a9e6 0x2 + .text.esp_aes_gcm_setkey + 0x000000004011a9e8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x000000004011a9e8 esp_aes_gcm_setkey + .text.esp_aes_gcm_init + 0x000000004011aa28 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x000000004011aa28 esp_aes_gcm_init + .text.esp_aes_gcm_free + 0x000000004011aa3c 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x000000004011aa3c esp_aes_gcm_free + .text.esp_aes_gcm_starts + 0x000000004011aa50 0xc2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0xca (size before relaxing) + 0x000000004011aa50 esp_aes_gcm_starts + *fill* 0x000000004011ab12 0x2 + .text.esp_aes_gcm_update_ad + 0x000000004011ab14 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x000000004011ab14 esp_aes_gcm_update_ad + .text.esp_aes_gcm_update + 0x000000004011abb0 0x12e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x13a (size before relaxing) + 0x000000004011abb0 esp_aes_gcm_update + *fill* 0x000000004011acde 0x2 + .text.esp_aes_gcm_finish + 0x000000004011ace0 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0xb4 (size before relaxing) + 0x000000004011ace0 esp_aes_gcm_finish + .text.esp_aes_gcm_crypt_and_tag_partial_hw + 0x000000004011ad90 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x4d (size before relaxing) + *fill* 0x000000004011add1 0x3 + .text.esp_aes_gcm_crypt_and_tag + 0x000000004011add4 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x000000004011add4 esp_aes_gcm_crypt_and_tag + *fill* 0x000000004011ae06 0x2 + .text.esp_aes_gcm_auth_decrypt + 0x000000004011ae08 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x000000004011ae08 esp_aes_gcm_auth_decrypt + *fill* 0x000000004011ae6e 0x2 + .text.esp_md5_finish + 0x000000004011ae70 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x000000004011ae70 esp_md5_finish + *fill* 0x000000004011ae81 0x3 + .text.esp_md5_update + 0x000000004011ae84 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x000000004011ae84 esp_md5_update + .text.esp_md5_init + 0x000000004011ae98 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x000000004011ae98 esp_md5_init + *fill* 0x000000004011aea6 0x2 + .text.esp_md5_starts + 0x000000004011aea8 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x10 (size before relaxing) + 0x000000004011aea8 esp_md5_starts + .text.esp_md5_free + 0x000000004011aeb4 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x12 (size before relaxing) + 0x000000004011aeb4 esp_md5_free + *fill* 0x000000004011aec2 0x2 + .text.aria_a 0x000000004011aec4 0xe9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + *fill* 0x000000004011afad 0x3 + .text.aria_fo_xor + 0x000000004011afb0 0x7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x81 (size before relaxing) + *fill* 0x000000004011b02d 0x3 + .text.aria_fe_xor + 0x000000004011b030 0x7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x81 (size before relaxing) + *fill* 0x000000004011b0ad 0x3 + .text.mbedtls_aria_setkey_enc + 0x000000004011b0b0 0x21b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x22b (size before relaxing) + 0x000000004011b0b0 mbedtls_aria_setkey_enc + *fill* 0x000000004011b2cb 0x1 + .text.mbedtls_aria_setkey_dec + 0x000000004011b2cc 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x74 (size before relaxing) + 0x000000004011b2cc mbedtls_aria_setkey_dec + .text.mbedtls_aria_crypt_ecb + 0x000000004011b33c 0x1c7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x1d3 (size before relaxing) + 0x000000004011b33c mbedtls_aria_crypt_ecb + *fill* 0x000000004011b503 0x1 + .text.mbedtls_aria_init + 0x000000004011b504 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x000000004011b504 mbedtls_aria_init + *fill* 0x000000004011b516 0x2 + .text.mbedtls_aria_free + 0x000000004011b518 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x12 (size before relaxing) + 0x000000004011b518 mbedtls_aria_free + *fill* 0x000000004011b527 0x1 + .text.mbedtls_aria_crypt_cbc + 0x000000004011b528 0xb2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x000000004011b528 mbedtls_aria_crypt_cbc + *fill* 0x000000004011b5da 0x2 + .text.mbedtls_aria_crypt_cfb128 + 0x000000004011b5dc 0x89 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x000000004011b5dc mbedtls_aria_crypt_cfb128 + *fill* 0x000000004011b665 0x3 + .text.mbedtls_aria_crypt_ctr + 0x000000004011b668 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x000000004011b668 mbedtls_aria_crypt_ctr + .text.mbedtls_asn1_get_tag + 0x000000004011b6d8 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x000000004011b6d8 mbedtls_asn1_get_tag + *fill* 0x000000004011b70d 0x3 + .text.asn1_get_tagged_int + 0x000000004011b710 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_int + 0x000000004011b7a4 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x000000004011b7a4 mbedtls_asn1_get_int + *fill* 0x000000004011b7b9 0x3 + .text.mbedtls_asn1_get_mpi + 0x000000004011b7bc 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x2c (size before relaxing) + 0x000000004011b7bc mbedtls_asn1_get_mpi + .text.mbedtls_asn1_get_bitstring_null + 0x000000004011b7e4 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x000000004011b7e4 mbedtls_asn1_get_bitstring_null + .text.mbedtls_asn1_get_alg + 0x000000004011b81c 0x89 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x91 (size before relaxing) + 0x000000004011b81c mbedtls_asn1_get_alg + *fill* 0x000000004011b8a5 0x3 + .text.mbedtls_ccm_crypt + 0x000000004011b8a8 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x68 (size before relaxing) + .text.mbedtls_ccm_init + 0x000000004011b90c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x000000004011b90c mbedtls_ccm_init + *fill* 0x000000004011b91e 0x2 + .text.mbedtls_ccm_setkey + 0x000000004011b920 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x50 (size before relaxing) + 0x000000004011b920 mbedtls_ccm_setkey + .text.mbedtls_ccm_free + 0x000000004011b964 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x1b (size before relaxing) + 0x000000004011b964 mbedtls_ccm_free + *fill* 0x000000004011b97b 0x1 + .text.mbedtls_ccm_update + 0x000000004011b97c 0x1b8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x1c0 (size before relaxing) + 0x000000004011b97c mbedtls_ccm_update + .text.oid_pk_alg_from_asn1 + 0x000000004011bb34 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x000000004011bb6a 0x2 + .text.oid_grp_id_from_asn1 + 0x000000004011bb6c 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x000000004011bba3 0x1 + .text.mbedtls_oid_get_pk_alg + 0x000000004011bba4 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x1d (size before relaxing) + 0x000000004011bba4 mbedtls_oid_get_pk_alg + *fill* 0x000000004011bbbd 0x3 + .text.mbedtls_oid_get_ec_grp + 0x000000004011bbc0 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x1d (size before relaxing) + 0x000000004011bbc0 mbedtls_oid_get_ec_grp + *fill* 0x000000004011bbd9 0x3 + .text.mbedtls_oid_get_oid_by_md + 0x000000004011bbdc 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x000000004011bbdc mbedtls_oid_get_oid_by_md + *fill* 0x000000004011bc02 0x2 + .text.sha_get_engine_state + 0x000000004011bc04 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x000000004011bc7a 0x2 + .text.esp_sha_lock_engine_common + 0x000000004011bc7c 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x70 (size before relaxing) + .text.esp_sha_lock_memory_block + 0x000000004011bce4 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x000000004011bce4 esp_sha_lock_memory_block + .text.esp_sha_unlock_memory_block + 0x000000004011bcf4 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x000000004011bcf4 esp_sha_unlock_memory_block + *fill* 0x000000004011bd02 0x2 + .text.esp_sha_try_lock_engine + 0x000000004011bd04 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x000000004011bd04 esp_sha_try_lock_engine + *fill* 0x000000004011bd15 0x3 + .text.esp_sha_unlock_engine + 0x000000004011bd18 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x4a (size before relaxing) + 0x000000004011bd18 esp_sha_unlock_engine + *fill* 0x000000004011bd5e 0x2 + .text.esp_sha_read_digest_state + 0x000000004011bd60 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x44 (size before relaxing) + 0x000000004011bd60 esp_sha_read_digest_state + .text.esp_sha_block + 0x000000004011bd94 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x68 (size before relaxing) + 0x000000004011bd94 esp_sha_block + .text.esp_coex_adapter_register + 0x000000004011bdf0 0x59 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + 0x65 (size before relaxing) + 0x000000004011be04 esp_coex_adapter_register + *fill* 0x000000004011be49 0x3 + .text.coex_event_duration_get + 0x000000004011be4c 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + 0x15 (size before relaxing) + 0x000000004011be4c coex_event_duration_get + *fill* 0x000000004011be5d 0x3 + .text.coex_wifi_request + 0x000000004011be60 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + 0x000000004011be64 coex_wifi_request + *fill* 0x000000004011be79 0x3 + .text.coex_pre_init + 0x000000004011be7c 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + 0x2b (size before relaxing) + 0x000000004011be84 coex_pre_init + *fill* 0x000000004011be9b 0x1 + .text.coex_init + 0x000000004011be9c 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + 0x11 (size before relaxing) + 0x000000004011be9c coex_init + *fill* 0x000000004011bea6 0x2 + .text.coex_deinit + 0x000000004011bea8 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + 0xf (size before relaxing) + 0x000000004011bea8 coex_deinit + *fill* 0x000000004011beb0 0x0 + .text.coex_enable + 0x000000004011beb0 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + 0x11 (size before relaxing) + 0x000000004011beb0 coex_enable + *fill* 0x000000004011beba 0x2 + .text.coex_disable + 0x000000004011bebc 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + 0xf (size before relaxing) + 0x000000004011bebc coex_disable + *fill* 0x000000004011bec4 0x0 + .text.coex_version_get + 0x000000004011bec4 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + 0x000000004011bec8 coex_version_get + .text.coex_register_bt_cb + 0x000000004011bed0 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + 0x15 (size before relaxing) + 0x000000004011bed0 coex_register_bt_cb + *fill* 0x000000004011bee1 0x3 + .text.coex_register_start_cb + 0x000000004011bee4 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + 0x14 (size before relaxing) + 0x000000004011bee4 coex_register_start_cb + .text.coex_core_event_duration_get + 0x000000004011bef0 0x41 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0x000000004011bef4 coex_core_event_duration_get + *fill* 0x000000004011bf31 0x3 + .text.coex_core_pre_init + 0x000000004011bf34 0xaf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0xd3 (size before relaxing) + 0x000000004011bf48 coex_core_pre_init + *fill* 0x000000004011bfe3 0x1 + .text.coex_core_enable + 0x000000004011bfe4 0x10a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0x142 (size before relaxing) + 0x000000004011c008 coex_core_enable + *fill* 0x000000004011c0ee 0x2 + .text.coex_core_disable + 0x000000004011c0f0 0xae /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0xe2 (size before relaxing) + 0x000000004011c100 coex_core_disable + *fill* 0x000000004011c19e 0x2 + .text.coex_core_register_cb + 0x000000004011c1a0 0x35 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0x41 (size before relaxing) + 0x000000004011c1a0 coex_core_register_cb + *fill* 0x000000004011c1d5 0x3 + .text.coex_core_register_start_cb + 0x000000004011c1d8 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0x31 (size before relaxing) + 0x000000004011c1d8 coex_core_register_start_cb + *fill* 0x000000004011c1fd 0x3 + .text.coex_schm_status_change + 0x000000004011c200 0x583 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + *fill* 0x000000004011c783 0x1 + .text.coex_schm_change_phase + 0x000000004011c784 0x9a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0xae (size before relaxing) + *fill* 0x000000004011c81e 0x2 + .text.coex_schm_timeout_process + 0x000000004011c820 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x12 (size before relaxing) + *fill* 0x000000004011c82a 0x2 + .text.coex_schm_status_bit_set + 0x000000004011c82c 0x7a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x96 (size before relaxing) + 0x000000004011c82c coex_schm_status_bit_set + *fill* 0x000000004011c8a6 0x2 + .text.coex_schm_status_bit_clear + 0x000000004011c8a8 0x7a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x96 (size before relaxing) + 0x000000004011c8a8 coex_schm_status_bit_clear + *fill* 0x000000004011c922 0x2 + .text.coex_schm_interval_get + 0x000000004011c924 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x27 (size before relaxing) + 0x000000004011c924 coex_schm_interval_get + *fill* 0x000000004011c93b 0x1 + .text.coex_schm_curr_period_get + 0x000000004011c93c 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x2c (size before relaxing) + 0x000000004011c93c coex_schm_curr_period_get + .text.coex_schm_curr_phase_get + 0x000000004011c95c 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x3c (size before relaxing) + 0x000000004011c95c coex_schm_curr_phase_get + .text.coex_schm_register_callback + 0x000000004011c988 0x34 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x43 (size before relaxing) + 0x000000004011c988 coex_schm_register_callback + *fill* 0x000000004011c9bc 0x0 + .text.coex_wifi_channel_set + 0x000000004011c9bc 0x36 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x46 (size before relaxing) + 0x000000004011c9bc coex_wifi_channel_set + *fill* 0x000000004011c9f2 0x2 + .text.coex_wifi_channel_get + 0x000000004011c9f4 0x6a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x82 (size before relaxing) + 0x000000004011c9fc coex_wifi_channel_get + *fill* 0x000000004011ca5e 0x2 + .text.coex_register_wifi_channel_change_callback + 0x000000004011ca60 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x30 (size before relaxing) + 0x000000004011ca60 coex_register_wifi_channel_change_callback + .text.coex_schm_process_restart + 0x000000004011ca80 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x14 (size before relaxing) + 0x000000004011ca80 coex_schm_process_restart + .text.coex_schm_init + 0x000000004011ca8c 0x5a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x72 (size before relaxing) + 0x000000004011ca94 coex_schm_init + *fill* 0x000000004011cae6 0x2 + .text.coex_timer_init + 0x000000004011cae8 0x42 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + 0x46 (size before relaxing) + 0x000000004011caf4 coex_timer_init + *fill* 0x000000004011cb2a 0x2 + .text.coex_timer_deinit + 0x000000004011cb2c 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + 0x2c (size before relaxing) + 0x000000004011cb2c coex_timer_deinit + .text.coex_arbit_init + 0x000000004011cb4c 0xca /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + 0xd6 (size before relaxing) + 0x000000004011cb68 coex_arbit_init + *fill* 0x000000004011cc16 0x2 + .text.coex_arbit_deinit + 0x000000004011cc18 0x106 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + 0x12a (size before relaxing) + 0x000000004011cc2c coex_arbit_deinit + *fill* 0x000000004011cd1e 0x2 + .text.esp_wifi_ap_get_sta_aid_local + 0x000000004011cd20 0x7d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x81 (size before relaxing) + 0x000000004011cd30 esp_wifi_ap_get_sta_aid_local + *fill* 0x000000004011cd9d 0x3 + .text.esp_wifi_internal_reg_netstack_buf_cb_local + 0x000000004011cda0 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x16 (size before relaxing) + 0x000000004011cda0 esp_wifi_internal_reg_netstack_buf_cb_local + *fill* 0x000000004011cdae 0x2 + .text.esp_wifi_send_deauth_local + 0x000000004011cdb0 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x14 (size before relaxing) + 0x000000004011cdb0 esp_wifi_send_deauth_local + *fill* 0x000000004011cdbd 0x3 + .text.wifi_get_init_state + 0x000000004011cdc0 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004011cdc4 wifi_get_init_state + *fill* 0x000000004011cdce 0x2 + .text.wifi_is_stop_in_progress + 0x000000004011cdd0 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004011cdd4 wifi_is_stop_in_progress + *fill* 0x000000004011cddf 0x1 + .text.wifi_api_lock + 0x000000004011cde0 0x52 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x56 (size before relaxing) + 0x000000004011cdec wifi_api_lock + *fill* 0x000000004011ce32 0x2 + .text.wifi_api_unlock + 0x000000004011ce34 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x2d (size before relaxing) + 0x000000004011ce34 wifi_api_unlock + *fill* 0x000000004011ce55 0x3 + .text.wifi_init_completed + 0x000000004011ce58 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x3a (size before relaxing) + 0x000000004011ce58 wifi_init_completed + *fill* 0x000000004011ce7b 0x1 + .text.wifi_station_get_config_local$part$5 + 0x000000004011ce7c 0x1a3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x1da (size before relaxing) + *fill* 0x000000004011d01f 0x1 + .text.wifi_softap_get_config + 0x000000004011d020 0x18a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x1d2 (size before relaxing) + 0x000000004011d024 wifi_softap_get_config + *fill* 0x000000004011d1aa 0x2 + .text.wifi_softap_deauth + 0x000000004011d1ac 0x8e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xbd (size before relaxing) + 0x000000004011d1b0 wifi_softap_deauth + *fill* 0x000000004011d23a 0x2 + .text.wifi_check_chan_param + 0x000000004011d23c 0x72 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x82 (size before relaxing) + 0x000000004011d23c wifi_check_chan_param + *fill* 0x000000004011d2ae 0x2 + .text.wifi_deinit_in_caller_task + 0x000000004011d2b0 0x2d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x45 (size before relaxing) + 0x000000004011d2b4 wifi_deinit_in_caller_task + *fill* 0x000000004011d2dd 0x3 + .text.wifi_init_in_caller_task + 0x000000004011d2e0 0x85 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xb4 (size before relaxing) + 0x000000004011d2e8 wifi_init_in_caller_task + *fill* 0x000000004011d365 0x3 + .text.wifi_osi_funcs_register + 0x000000004011d368 0x51 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x65 (size before relaxing) + 0x000000004011d374 wifi_osi_funcs_register + *fill* 0x000000004011d3b9 0x3 + .text.net80211_softap_funcs_init + 0x000000004011d3bc 0x56 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x5a (size before relaxing) + 0x000000004011d3dc net80211_softap_funcs_init + *fill* 0x000000004011d412 0x2 + .text.net80211_funcs_init + 0x000000004011d414 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x52 (size before relaxing) + 0x000000004011d418 net80211_funcs_init + *fill* 0x000000004011d44f 0x1 + .text.net80211_funcs_deinit + 0x000000004011d450 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x28 (size before relaxing) + 0x000000004011d450 net80211_funcs_deinit + .text.esp_wifi_init_internal + 0x000000004011d470 0x108 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x17c (size before relaxing) + 0x000000004011d484 esp_wifi_init_internal + .text.esp_wifi_deinit_internal + 0x000000004011d578 0xde /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x152 (size before relaxing) + 0x000000004011d588 esp_wifi_deinit_internal + *fill* 0x000000004011d656 0x2 + .text.esp_wifi_set_mode + 0x000000004011d658 0x40 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x54 (size before relaxing) + 0x000000004011d65c esp_wifi_set_mode + .text.esp_wifi_get_mode + 0x000000004011d698 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x46 (size before relaxing) + 0x000000004011d698 esp_wifi_get_mode + *fill* 0x000000004011d6c2 0x2 + .text.esp_wifi_start + 0x000000004011d6c4 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x50 (size before relaxing) + 0x000000004011d6c8 esp_wifi_start + .text.esp_wifi_stop + 0x000000004011d6fc 0x193 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x1fe (size before relaxing) + 0x000000004011d720 esp_wifi_stop + *fill* 0x000000004011d88f 0x1 + .text.esp_wifi_connect + 0x000000004011d890 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x68 (size before relaxing) + 0x000000004011d894 esp_wifi_connect + .text.esp_wifi_disconnect + 0x000000004011d8d8 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x68 (size before relaxing) + 0x000000004011d8dc esp_wifi_disconnect + .text.esp_wifi_deauth_sta + 0x000000004011d920 0x5c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x7c (size before relaxing) + 0x000000004011d924 esp_wifi_deauth_sta + .text.get_total_scan_time + 0x000000004011d97c 0xc6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xde (size before relaxing) + 0x000000004011d980 get_total_scan_time + *fill* 0x000000004011da42 0x2 + .text.esp_wifi_scan_start + 0x000000004011da44 0x15c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x1a0 (size before relaxing) + 0x000000004011da58 esp_wifi_scan_start + .text.esp_wifi_scan_get_ap_num + 0x000000004011dba0 0x4e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x7a (size before relaxing) + 0x000000004011dba4 esp_wifi_scan_get_ap_num + *fill* 0x000000004011dbee 0x2 + .text.esp_wifi_scan_get_ap_records + 0x000000004011dbf0 0x90 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xb0 (size before relaxing) + 0x000000004011dbfc esp_wifi_scan_get_ap_records + .text.esp_wifi_set_config + 0x000000004011dc80 0x72 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x8a (size before relaxing) + 0x000000004011dc88 esp_wifi_set_config + *fill* 0x000000004011dcf2 0x2 + .text.esp_wifi_get_config + 0x000000004011dcf4 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x50 (size before relaxing) + 0x000000004011dcf4 esp_wifi_get_config + .text.esp_wifi_get_mac + 0x000000004011dd2c 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x50 (size before relaxing) + 0x000000004011dd2c esp_wifi_get_mac + .text.esp_wifi_sta_get_ap_info + 0x000000004011dd58 0x56 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x6a (size before relaxing) + 0x000000004011dd5c esp_wifi_sta_get_ap_info + *fill* 0x000000004011ddae 0x2 + .text.esp_wifi_set_storage + 0x000000004011ddb0 0x40 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x58 (size before relaxing) + 0x000000004011ddb0 esp_wifi_set_storage + .text.esp_wifi_internal_reg_rxcb + 0x000000004011ddf0 0x52 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x6a (size before relaxing) + 0x000000004011ddf4 esp_wifi_internal_reg_rxcb + *fill* 0x000000004011de42 0x2 + .text.esp_wifi_internal_set_sta_ip + 0x000000004011de44 0x2d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x41 (size before relaxing) + 0x000000004011de44 esp_wifi_internal_set_sta_ip + *fill* 0x000000004011de71 0x3 + .text.wifi_event_post + 0x000000004011de74 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x4b (size before relaxing) + 0x000000004011de78 wifi_event_post + *fill* 0x000000004011deaf 0x1 + .text.wifi_mesh_event_post + 0x000000004011deb0 0x3f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x4b (size before relaxing) + 0x000000004011deb8 wifi_mesh_event_post + *fill* 0x000000004011deef 0x1 + .text.esp_wifi_vnd_lora_enable + 0x000000004011def0 0xae /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xc6 (size before relaxing) + 0x000000004011def0 esp_wifi_vnd_lora_enable + *fill* 0x000000004011df9e 0x2 + .text.esp_wifi_vnd_lora_disable + 0x000000004011dfa0 0x45 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x51 (size before relaxing) + 0x000000004011dfa0 esp_wifi_vnd_lora_disable + *fill* 0x000000004011dfe5 0x3 + .text.esp_wifi_get_event_mask + 0x000000004011dfe8 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x2f (size before relaxing) + 0x000000004011dfec esp_wifi_get_event_mask + *fill* 0x000000004011e00f 0x1 + .text.esp_wifi_ipc_internal + 0x000000004011e010 0x122 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x146 (size before relaxing) + 0x000000004011e018 esp_wifi_ipc_internal + *fill* 0x000000004011e132 0x2 + .text.esp_wifi_internal_set_log_level + 0x000000004011e134 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004011e138 esp_wifi_internal_set_log_level + *fill* 0x000000004011e147 0x1 + .text.esp_wifi_internal_on_coex_start + 0x000000004011e148 0x47 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x63 (size before relaxing) + 0x000000004011e14c esp_wifi_internal_on_coex_start + *fill* 0x000000004011e18f 0x1 + .text.esp_wifi_internal_on_coex_schm_phase + 0x000000004011e190 0x47 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x63 (size before relaxing) + 0x000000004011e194 esp_wifi_internal_on_coex_schm_phase + *fill* 0x000000004011e1d7 0x1 + .text.esp_wifi_internal_reg_netstack_buf_cb + 0x000000004011e1d8 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x2d (size before relaxing) + 0x000000004011e1dc esp_wifi_internal_reg_netstack_buf_cb + *fill* 0x000000004011e201 0x3 + .text.esp_wifi_internal_issue_disconnect + 0x000000004011e204 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x30 (size before relaxing) + 0x000000004011e208 esp_wifi_internal_issue_disconnect + .text.esp_wifi_ap_get_sta_aid + 0x000000004011e230 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x43 (size before relaxing) + 0x000000004011e234 esp_wifi_ap_get_sta_aid + *fill* 0x000000004011e26b 0x1 + .text.esp_mesh_map_deauth + 0x000000004011e26c 0x5a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x7a (size before relaxing) + 0x000000004011e270 esp_mesh_map_deauth + *fill* 0x000000004011e2c6 0x2 + .text.esp_mesh_get_running_active_duty_cycle + 0x000000004011e2c8 0x4d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x59 (size before relaxing) + 0x000000004011e2cc esp_mesh_get_running_active_duty_cycle + *fill* 0x000000004011e315 0x3 + .text.esp_wifi_eb_tx_status_success_internal + 0x000000004011e318 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x2c (size before relaxing) + 0x000000004011e318 esp_wifi_eb_tx_status_success_internal + .text.ieee80211_freedom_inside_cb + 0x000000004011e340 0x34 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x38 (size before relaxing) + 0x000000004011e340 ieee80211_freedom_inside_cb + .text.ieee80211_send_sa_query + 0x000000004011e374 0xa9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0xcd (size before relaxing) + *fill* 0x000000004011e41d 0x3 + .text.ieee80211_send_sa_query_resp + 0x000000004011e420 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x28 (size before relaxing) + .text.ieee80211_send_sa_query_req + 0x000000004011e440 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x28 (size before relaxing) + .text.ieee80211_recv_sa_query_resp + 0x000000004011e460 0xd0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0xe4 (size before relaxing) + .text.ieee80211_recv_sa_query_req + 0x000000004011e530 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x28 (size before relaxing) + .text.ieee80211_rate_ref_init + 0x000000004011e554 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x22 (size before relaxing) + 0x000000004011e554 ieee80211_rate_ref_init + *fill* 0x000000004011e572 0x2 + .text.ieee80211_freedom_init + 0x000000004011e574 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x32 (size before relaxing) + 0x000000004011e578 ieee80211_freedom_init + *fill* 0x000000004011e59e 0x2 + .text.ieee80211_user_ie_init + 0x000000004011e5a0 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x43 (size before relaxing) + 0x000000004011e5a4 ieee80211_user_ie_init + *fill* 0x000000004011e5db 0x1 + .text.ieee80211_ifattach + 0x000000004011e5dc 0xbf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x113 (size before relaxing) + 0x000000004011e5dc ieee80211_ifattach + *fill* 0x000000004011e69b 0x1 + .text.ieee80211_ifdetach + 0x000000004011e69c 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x1b (size before relaxing) + 0x000000004011e69c ieee80211_ifdetach + *fill* 0x000000004011e6ab 0x1 + .text.wifi_create_nan + 0x000000004011e6ac 0xb0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0xdc (size before relaxing) + 0x000000004011e6b0 wifi_create_nan + .text.wifi_destroy_nan + 0x000000004011e75c 0x6b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x92 (size before relaxing) + 0x000000004011e75c wifi_destroy_nan + *fill* 0x000000004011e7c7 0x1 + .text.wifi_destroy_softap + 0x000000004011e7c8 0x64 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x80 (size before relaxing) + 0x000000004011e7c8 wifi_destroy_softap + .text.wifi_destroy_sta + 0x000000004011e82c 0x6a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x96 (size before relaxing) + 0x000000004011e82c wifi_destroy_sta + *fill* 0x000000004011e896 0x2 + .text.ieee80211_find_elem_match + 0x000000004011e898 0x50 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x54 (size before relaxing) + 0x000000004011e898 ieee80211_find_elem_match + .text.ieee80211_find_ie + 0x000000004011e8e8 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x1e (size before relaxing) + 0x000000004011e8e8 ieee80211_find_ie + *fill* 0x000000004011e902 0x2 + .text.ieee80211_setup_pmf + 0x000000004011e904 0x3e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x5a (size before relaxing) + 0x000000004011e914 ieee80211_setup_pmf + *fill* 0x000000004011e942 0x2 + .text.wifi_create_softap + 0x000000004011e944 0xbc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0xf4 (size before relaxing) + 0x000000004011e948 wifi_create_softap + .text.wifi_create_sta + 0x000000004011ea00 0xc4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x104 (size before relaxing) + 0x000000004011ea08 wifi_create_sta + .text.wifi_mode_set + 0x000000004011eac4 0x190 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x1d8 (size before relaxing) + 0x000000004011eadc wifi_mode_set + .text.ieee80211_crypto_encap + 0x000000004011ec54 0x79 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x85 (size before relaxing) + 0x000000004011ec5c ieee80211_crypto_encap + *fill* 0x000000004011eccd 0x3 + .text.ieee80211_crypto_decap + 0x000000004011ecd0 0x9d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0xb1 (size before relaxing) + 0x000000004011ecd4 ieee80211_crypto_decap + *fill* 0x000000004011ed6d 0x3 + .text.ieee80211_crypto_aes_128_cmac_encrypt + 0x000000004011ed70 0x106 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x12e (size before relaxing) + 0x000000004011ed78 ieee80211_crypto_aes_128_cmac_encrypt + *fill* 0x000000004011ee76 0x2 + .text.ieee80211_crypto_aes_128_cmac_decrypt + 0x000000004011ee78 0x151 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x181 (size before relaxing) + 0x000000004011ee88 ieee80211_crypto_aes_128_cmac_decrypt + *fill* 0x000000004011efc9 0x3 + .text.ieee80211_crypto_gmac_decrypt + 0x000000004011efcc 0x1c7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x1fb (size before relaxing) + 0x000000004011efdc ieee80211_crypto_gmac_decrypt + *fill* 0x000000004011f193 0x1 + .text.wifi_log + 0x000000004011f194 0xbc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + 0xc4 (size before relaxing) + 0x000000004011f1a8 wifi_log + .text.ieee80211_getmgtframe + 0x000000004011f250 0x43 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + 0x47 (size before relaxing) + 0x000000004011f254 ieee80211_getmgtframe + *fill* 0x000000004011f293 0x1 + .text.ieee80211_getbcnframe + 0x000000004011f294 0x76 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + 0x8e (size before relaxing) + 0x000000004011f2a4 ieee80211_getbcnframe + *fill* 0x000000004011f30a 0x2 + .text.unlikely.is_non_esp_oui + 0x000000004011f30c 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + *fill* 0x000000004011f33e 0x2 + .text.unlikely.is_esp_manufacturer_oui + 0x000000004011f340 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .text.ieee80211_hostapd_beacon_txcb + 0x000000004011f37c 0xd2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0xf6 (size before relaxing) + 0x000000004011f398 ieee80211_hostapd_beacon_txcb + *fill* 0x000000004011f44e 0x2 + .text.ieee80211_hostap_send_beacon + 0x000000004011f450 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x16 (size before relaxing) + *fill* 0x000000004011f45e 0x2 + .text.hostap_handle_timer + 0x000000004011f460 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x16 (size before relaxing) + 0x000000004011f460 hostap_handle_timer + *fill* 0x000000004011f46e 0x2 + .text.ap_try_sa_query + 0x000000004011f470 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x16 (size before relaxing) + *fill* 0x000000004011f47e 0x2 + .text.ap_sa_query_timeout + 0x000000004011f480 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x16 (size before relaxing) + *fill* 0x000000004011f48e 0x2 + .text.ieee80211_hostapd_ps_txcb + 0x000000004011f490 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x3a (size before relaxing) + 0x000000004011f494 ieee80211_hostapd_ps_txcb + *fill* 0x000000004011f4be 0x2 + .text.ieee80211_free_beacon_eb + 0x000000004011f4c0 0x41 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x4d (size before relaxing) + 0x000000004011f4c4 ieee80211_free_beacon_eb + *fill* 0x000000004011f501 0x3 + .text.ieee80211_hostap_send_beacon_process + 0x000000004011f504 0x333 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x3b3 (size before relaxing) + 0x000000004011f530 ieee80211_hostap_send_beacon_process + *fill* 0x000000004011f837 0x1 + .text.hostap_delete_ptk + 0x000000004011f838 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x44 (size before relaxing) + 0x000000004011f838 hostap_delete_ptk + .text.ieee80211_hostap_attach + 0x000000004011f868 0x1b4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x234 (size before relaxing) + 0x000000004011f884 ieee80211_hostap_attach + .text.hostap_deliver_data + 0x000000004011fa1c 0xae /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0xc2 (size before relaxing) + 0x000000004011fa2c hostap_deliver_data + *fill* 0x000000004011faca 0x2 + .text.hostap_handle_timer_process + 0x000000004011facc 0x15b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x1b2 (size before relaxing) + 0x000000004011fae8 hostap_handle_timer_process + *fill* 0x000000004011fc27 0x1 + .text.wifi_ap_reg_rxcb + 0x000000004011fc28 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x11 (size before relaxing) + 0x000000004011fc28 wifi_ap_reg_rxcb + *fill* 0x000000004011fc35 0x3 + .text.ap_rx_cb + 0x000000004011fc38 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x26 (size before relaxing) + 0x000000004011fc38 ap_rx_cb + *fill* 0x000000004011fc56 0x2 + .text.hostap_auth_open + 0x000000004011fc58 0x151 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x1ad (size before relaxing) + 0x000000004011fc68 hostap_auth_open + *fill* 0x000000004011fda9 0x3 + .text.hostap_recv_ctl + 0x000000004011fdac 0x14f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x192 (size before relaxing) + 0x000000004011fdc0 hostap_recv_ctl + *fill* 0x000000004011fefb 0x1 + .text.wifi_softap_start + 0x000000004011fefc 0x34e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x402 (size before relaxing) + 0x000000004011ff18 wifi_softap_start + *fill* 0x000000004012024a 0x2 + .text.wifi_softap_stop + 0x000000004012024c 0x154 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x1c4 (size before relaxing) + 0x0000000040120250 wifi_softap_stop + .text.ap_sa_query_timeout_process + 0x00000000401203a0 0x80 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0xb0 (size before relaxing) + 0x00000000401203a8 ap_sa_query_timeout_process + .text.ap_try_sa_query_process + 0x0000000040120420 0x175 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x1a1 (size before relaxing) + 0x0000000040120434 ap_try_sa_query_process + *fill* 0x0000000040120595 0x3 + .text.hostap_recv_mgmt + 0x0000000040120598 0x108e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x1242 (size before relaxing) + 0x0000000040120608 hostap_recv_mgmt + *fill* 0x0000000040121626 0x2 + .text.hostap_input + 0x0000000040121628 0x626 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x6ea (size before relaxing) + 0x0000000040121644 hostap_input + *fill* 0x0000000040121c4e 0x2 + .text.add_mic_ie_bip + 0x0000000040121c50 0x52 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x66 (size before relaxing) + 0x0000000040121c50 add_mic_ie_bip + *fill* 0x0000000040121ca2 0x2 + .text.addba_stop_timeout + 0x0000000040121ca4 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x22 (size before relaxing) + *fill* 0x0000000040121cc2 0x2 + .text.ampdu_tx_stop + 0x0000000040121cc4 0x7f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x97 (size before relaxing) + *fill* 0x0000000040121d43 0x1 + .text.addba_response_txcb + 0x0000000040121d44 0x182 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x1ae (size before relaxing) + *fill* 0x0000000040121ec6 0x2 + .text.ieee80211_ampdu_timeout + 0x0000000040121ec8 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x16 (size before relaxing) + *fill* 0x0000000040121ed6 0x2 + .text.addba_timeout + 0x0000000040121ed8 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x16 (size before relaxing) + *fill* 0x0000000040121ee6 0x2 + .text.ieee80211_ampdu_stop_age_timer$part$0 + 0x0000000040121ee8 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x30 (size before relaxing) + .text.ieee80211_add_htcap_body + 0x0000000040121f10 0x1fd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x20d (size before relaxing) + *fill* 0x000000004012210d 0x3 + .text.ht_recv_action_ba_addba_response + 0x0000000040122110 0x16d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x1b1 (size before relaxing) + *fill* 0x000000004012227d 0x3 + .text.ieee80211_ht_attach + 0x0000000040122280 0x1ec /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x268 (size before relaxing) + 0x00000000401222c0 ieee80211_ht_attach + .text.ampdu_free_rx_ba_index + 0x000000004012246c 0x37 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x3f (size before relaxing) + 0x0000000040122470 ampdu_free_rx_ba_index + *fill* 0x00000000401224a3 0x1 + .text.ampdu_rx_stop + 0x00000000401224a4 0xc5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xe1 (size before relaxing) + *fill* 0x0000000040122569 0x3 + .text.ht_recv_action_ba_delba + 0x000000004012256c 0x67 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x8e (size before relaxing) + *fill* 0x00000000401225d3 0x1 + .text.ampdu_alloc_rx_ba_index + 0x00000000401225d4 0x7a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x8a (size before relaxing) + 0x00000000401225d8 ampdu_alloc_rx_ba_index + *fill* 0x000000004012264e 0x2 + .text.ht_recv_action_ba_addba_request + 0x0000000040122650 0x1ac /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x1e4 (size before relaxing) + .text.ieee80211_ht_deattach + 0x00000000401227fc 0x7c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x9c (size before relaxing) + 0x0000000040122800 ieee80211_ht_deattach + .text.ieee80211_ampdu_enable + 0x0000000040122878 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x1a (size before relaxing) + 0x0000000040122878 ieee80211_ampdu_enable + *fill* 0x000000004012288a 0x2 + .text.ieee80211_ampdu_request + 0x000000004012288c 0x164 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x188 (size before relaxing) + 0x00000000401228a0 ieee80211_ampdu_request + .text.ieee80211_ampdu_age_bss + 0x00000000401229f0 0xd9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xe1 (size before relaxing) + *fill* 0x0000000040122ac9 0x3 + .text.ieee80211_ampdu_start_age_timer + 0x0000000040122acc 0x4c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x68 (size before relaxing) + 0x0000000040122ad0 ieee80211_ampdu_start_age_timer + .text.ieee80211_ampdu_age_all + 0x0000000040122b18 0xa0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xd4 (size before relaxing) + 0x0000000040122b18 ieee80211_ampdu_age_all + .text.ieee80211_recv_bar + 0x0000000040122bb8 0x73 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x87 (size before relaxing) + 0x0000000040122bbc ieee80211_recv_bar + *fill* 0x0000000040122c2b 0x1 + .text.ieee80211_ht_node_cleanup + 0x0000000040122c2c 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x42 (size before relaxing) + 0x0000000040122c2c ieee80211_ht_node_cleanup + *fill* 0x0000000040122c5e 0x2 + .text.ieee80211_ht_node_init + 0x0000000040122c60 0x72 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x8a (size before relaxing) + 0x0000000040122c6c ieee80211_ht_node_init + *fill* 0x0000000040122cd2 0x2 + .text.ieee80211_parse_htcap + 0x0000000040122cd4 0xf6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x10a (size before relaxing) + 0x0000000040122ce0 ieee80211_parse_htcap + *fill* 0x0000000040122dca 0x2 + .text.ieee80211_has_ht40_bss + 0x0000000040122dcc 0xa8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xb0 (size before relaxing) + 0x0000000040122dcc ieee80211_has_ht40_bss + .text.ieee80211_update_channel + 0x0000000040122e74 0x366 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x3e2 (size before relaxing) + 0x0000000040122e8c ieee80211_update_channel + *fill* 0x00000000401231da 0x2 + .text.ieee80211_ht_updatehtcap + 0x00000000401231dc 0x31 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x40 (size before relaxing) + 0x00000000401231dc ieee80211_ht_updatehtcap + *fill* 0x000000004012320d 0x3 + .text.ieee80211_ht_updateparams + 0x0000000040123210 0x1c3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x203 (size before relaxing) + 0x0000000040123238 ieee80211_ht_updateparams + *fill* 0x00000000401233d3 0x1 + .text.ieee80211_setup_htrates + 0x00000000401233d4 0xbd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xd5 (size before relaxing) + 0x00000000401233dc ieee80211_setup_htrates + *fill* 0x0000000040123491 0x3 + .text.ieee80211_setup_basic_htrates + 0x0000000040123494 0x94 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xac (size before relaxing) + 0x000000004012349c ieee80211_setup_basic_htrates + .text.ieee80211_add_htcap + 0x0000000040123528 0x44 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x54 (size before relaxing) + 0x0000000040123530 ieee80211_add_htcap + .text.ieee80211_add_htcap_vendor + 0x000000004012356c 0x34 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x3c (size before relaxing) + 0x000000004012356c ieee80211_add_htcap_vendor + .text.ieee80211_add_htinfo_body + 0x00000000401235a0 0x145 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x15d (size before relaxing) + 0x00000000401235ac ieee80211_add_htinfo_body + *fill* 0x00000000401236e5 0x3 + .text.ieee80211_add_htinfo + 0x00000000401236e8 0x44 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x54 (size before relaxing) + 0x00000000401236f0 ieee80211_add_htinfo + .text.ieee80211_add_htinfo_vendor + 0x000000004012372c 0x5a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x6a (size before relaxing) + 0x0000000040123734 ieee80211_add_htinfo_vendor + *fill* 0x0000000040123786 0x2 + .text.ht_action_output + 0x0000000040123788 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x2d (size before relaxing) + 0x0000000040123788 ht_action_output + *fill* 0x00000000401237a9 0x3 + .text.ht_send_action_ba_delba + 0x00000000401237ac 0x120 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x144 (size before relaxing) + .text.ht_send_action_ba_addba + 0x00000000401238cc 0x194 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x1b4 (size before relaxing) + .text.ieee80211_decap1 + 0x0000000040123a60 0x6f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x0000000040123a64 ieee80211_decap1 + *fill* 0x0000000040123acf 0x1 + .text.ieee80211_decap_amsdu + 0x0000000040123ad0 0x108 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x134 (size before relaxing) + 0x0000000040123ad4 ieee80211_decap_amsdu + .text.ieee80211_add_ie_vendor_esp_head + 0x0000000040123bd8 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + 0x0000000040123bdc ieee80211_add_ie_vendor_esp_head + .text.ieee80211_add_ie_vendor_esp_manufacturer + 0x0000000040123c10 0x46 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + 0x52 (size before relaxing) + 0x0000000040123c10 ieee80211_add_ie_vendor_esp_manufacturer + *fill* 0x0000000040123c56 0x2 + .text.wpa_cipher + 0x0000000040123c58 0x77 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x83 (size before relaxing) + *fill* 0x0000000040123ccf 0x1 + .text.rsn_cipher + 0x0000000040123cd0 0xb8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .text.ieee80211_decap + 0x0000000040123d88 0x1d3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x1f7 (size before relaxing) + 0x0000000040123d9c ieee80211_decap + *fill* 0x0000000040123f5b 0x1 + .text.ieee80211_setup_rates + 0x0000000040123f5c 0xdc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0xe4 (size before relaxing) + 0x0000000040123f5c ieee80211_setup_rates + .text.ieee80211_set_max_rate + 0x0000000040124038 0x114 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x130 (size before relaxing) + 0x0000000040124044 ieee80211_set_max_rate + .text.ieee80211_setup_phy_mode + 0x000000004012414c 0xe6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0xf6 (size before relaxing) + 0x0000000040124158 ieee80211_setup_phy_mode + *fill* 0x0000000040124232 0x2 + .text.ieee80211_setup_lr_rates + 0x0000000040124234 0x70 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x74 (size before relaxing) + 0x0000000040124234 ieee80211_setup_lr_rates + .text.ieee80211_alloc_challenge + 0x00000000401242a4 0x3e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x4a (size before relaxing) + 0x00000000401242a8 ieee80211_alloc_challenge + *fill* 0x00000000401242e2 0x2 + .text.ieee80211_parse_beacon + 0x00000000401242e4 0x5ee /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x62e (size before relaxing) + 0x0000000040124304 ieee80211_parse_beacon + *fill* 0x00000000401248d2 0x2 + .text.ieee80211_parse_wpa + 0x00000000401248d4 0x104 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x11c (size before relaxing) + 0x00000000401248d4 ieee80211_parse_wpa + .text.ieee80211_rsn_cipher_priority + 0x00000000401249d8 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x2e (size before relaxing) + 0x00000000401249dc ieee80211_rsn_cipher_priority + *fill* 0x0000000040124a02 0x2 + .text.ieee80211_better_rsn_pairwise_cipher + 0x0000000040124a04 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x35 (size before relaxing) + 0x0000000040124a04 ieee80211_better_rsn_pairwise_cipher + *fill* 0x0000000040124a29 0x3 + .text.ieee80211_amsdu_negotiate + 0x0000000040124a2c 0xc2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0xce (size before relaxing) + 0x0000000040124a38 ieee80211_amsdu_negotiate + *fill* 0x0000000040124aee 0x2 + .text.ieee80211_parse_rsn + 0x0000000040124af0 0x65f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x6cb (size before relaxing) + 0x0000000040124b88 ieee80211_parse_rsn + *fill* 0x000000004012514f 0x1 + .text.ieee80211_is_ht_cipher + 0x0000000040125150 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x2b (size before relaxing) + 0x0000000040125150 ieee80211_is_ht_cipher + *fill* 0x0000000040125177 0x1 + .text.ieee80211_parse_wapi + 0x0000000040125178 0x8d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x99 (size before relaxing) + 0x000000004012517c ieee80211_parse_wapi + *fill* 0x0000000040125205 0x3 + .text.ieee80211_parse_action + 0x0000000040125208 0xd1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0xd9 (size before relaxing) + 0x0000000040125208 ieee80211_parse_action + *fill* 0x00000000401252d9 0x3 + .text.wifi_pmk_is_valid + 0x00000000401252dc 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x2d (size before relaxing) + *fill* 0x0000000040125301 0x3 + .text.ieee80211_ioctl_process + 0x0000000040125304 0xe6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x106 (size before relaxing) + 0x000000004012530c ieee80211_ioctl_process + *fill* 0x00000000401253ea 0x2 + .text.wifi_station_set_config_local_2 + 0x00000000401253ec 0x4da /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x5c2 (size before relaxing) + *fill* 0x00000000401258c6 0x2 + .text.current_task_is_wifi_task + 0x00000000401258c8 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x27 (size before relaxing) + 0x00000000401258cc current_task_is_wifi_task + *fill* 0x00000000401258eb 0x1 + .text._do_wifi_stop + 0x00000000401258ec 0x78 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x98 (size before relaxing) + 0x00000000401258f4 _do_wifi_stop + .text._do_wifi_start + 0x0000000040125964 0xb2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xd6 (size before relaxing) + 0x0000000040125970 _do_wifi_start + *fill* 0x0000000040125a16 0x2 + .text.ieee80211_set_phy_bw + 0x0000000040125a18 0x1b7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1ff (size before relaxing) + 0x0000000040125a18 ieee80211_set_phy_bw + *fill* 0x0000000040125bcf 0x1 + .text.wifi_station_save_ap_channel + 0x0000000040125bd0 0x62 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x82 (size before relaxing) + 0x0000000040125bd0 wifi_station_save_ap_channel + *fill* 0x0000000040125c32 0x2 + .text.ieee80211_sta_connect + 0x0000000040125c34 0xd0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x108 (size before relaxing) + 0x0000000040125c48 ieee80211_sta_connect + .text._do_wifi_connect + 0x0000000040125d04 0x37 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x4a (size before relaxing) + *fill* 0x0000000040125d3b 0x1 + .text.ieee80211_sta_disconnect + 0x0000000040125d3c 0x70 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xa0 (size before relaxing) + 0x0000000040125d3c ieee80211_sta_disconnect + .text._do_wifi_disconnect + 0x0000000040125dac 0x82 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xaa (size before relaxing) + *fill* 0x0000000040125e2e 0x2 + .text.ieee80211_sta_scan + 0x0000000040125e30 0x34 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3c (size before relaxing) + 0x0000000040125e38 ieee80211_sta_scan + .text.wifi_softap_max_support_num + 0x0000000040125e64 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x32 (size before relaxing) + 0x0000000040125e64 wifi_softap_max_support_num + *fill* 0x0000000040125e86 0x2 + .text.wifi_softap_set_config + 0x0000000040125e88 0x786 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x8e6 (size before relaxing) + 0x0000000040125ea8 wifi_softap_set_config + *fill* 0x000000004012660e 0x2 + .text.wifi_get_macaddr + 0x0000000040126610 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3e (size before relaxing) + 0x0000000040126614 wifi_get_macaddr + *fill* 0x0000000040126642 0x2 + .text.chip_enable + 0x0000000040126644 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x34 (size before relaxing) + 0x0000000040126648 chip_enable + .text.chip_disable + 0x0000000040126664 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x34 (size before relaxing) + 0x0000000040126668 chip_disable + .text.wifi_reset_mac + 0x0000000040126684 0x5c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x68 (size before relaxing) + 0x0000000040126690 wifi_reset_mac + .text.wifi_hw_start + 0x00000000401266e0 0x11b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x16a (size before relaxing) + 0x00000000401266f4 wifi_hw_start + *fill* 0x00000000401267fb 0x1 + .text.wifi_txq_empty + 0x00000000401267fc 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x34 (size before relaxing) + 0x00000000401267fc wifi_txq_empty + .text.wifi_stop_sw_txq + 0x0000000040126820 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x4c (size before relaxing) + 0x0000000040126824 wifi_stop_sw_txq + .text.wifi_hw_stop + 0x000000004012684c 0x114 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x16c (size before relaxing) + 0x0000000040126858 wifi_hw_stop + .text.wifi_set_mode_process + 0x0000000040126960 0x201 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x269 (size before relaxing) + 0x0000000040126964 wifi_set_mode_process + *fill* 0x0000000040126b61 0x3 + .text.wifi_menuconfig_init + 0x0000000040126b64 0x1a5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1b5 (size before relaxing) + 0x0000000040126b98 wifi_menuconfig_init + *fill* 0x0000000040126d09 0x3 + .text.wpa_crypto_funcs_init + 0x0000000040126d0c 0x37 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x43 (size before relaxing) + 0x0000000040126d14 wpa_crypto_funcs_init + *fill* 0x0000000040126d43 0x1 + .text.wifi_crypto_init + 0x0000000040126d44 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x14 (size before relaxing) + 0x0000000040126d44 wifi_crypto_init + .text.wifi_hmac_init + 0x0000000040126d50 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x54 (size before relaxing) + 0x0000000040126d58 wifi_hmac_init + .text.wifi_lmac_init + 0x0000000040126d7c 0xd2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x126 (size before relaxing) + 0x0000000040126d9c wifi_lmac_init + *fill* 0x0000000040126e4e 0x2 + .text.wifi_deinit + 0x0000000040126e50 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x44 (size before relaxing) + 0x0000000040126e50 wifi_deinit + .text.wifi_init_process + 0x0000000040126e74 0xfe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x145 (size before relaxing) + 0x0000000040126e7c wifi_init_process + *fill* 0x0000000040126f72 0x2 + .text.wifi_deinit_process + 0x0000000040126f74 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x11 (size before relaxing) + 0x0000000040126f74 wifi_deinit_process + *fill* 0x0000000040126f7e 0x2 + .text.wifi_start_process + 0x0000000040126f80 0x73 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xab (size before relaxing) + 0x0000000040126f80 wifi_start_process + *fill* 0x0000000040126ff3 0x1 + .text.wifi_stop_process + 0x0000000040126ff4 0x106 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x166 (size before relaxing) + 0x0000000040126ff8 wifi_stop_process + *fill* 0x00000000401270fa 0x2 + .text.wifi_connect_process + 0x00000000401270fc 0x43 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x5b (size before relaxing) + 0x0000000040127104 wifi_connect_process + *fill* 0x000000004012713f 0x1 + .text.wifi_disconnect_process + 0x0000000040127140 0x60 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x80 (size before relaxing) + 0x0000000040127148 wifi_disconnect_process + .text.wifi_scan_start_process + 0x00000000401271a0 0x68 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x84 (size before relaxing) + 0x00000000401271a8 wifi_scan_start_process + .text.wifi_get_ap_list_process + 0x0000000040127208 0x27b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x2c7 (size before relaxing) + 0x0000000040127218 wifi_get_ap_list_process + *fill* 0x0000000040127483 0x1 + .text.wifi_get_ap_info_process + 0x0000000040127484 0x15e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x17a (size before relaxing) + 0x0000000040127490 wifi_get_ap_info_process + *fill* 0x00000000401275e2 0x2 + .text.wifi_set_rxcb_process + 0x00000000401275e4 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3c (size before relaxing) + 0x00000000401275e4 wifi_set_rxcb_process + .text.wifi_deauth_sta_process + 0x0000000040127610 0xfb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x13f (size before relaxing) + 0x0000000040127614 wifi_deauth_sta_process + *fill* 0x000000004012770b 0x1 + .text.wifi_wps_is_started + 0x000000004012770c 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040127710 wifi_wps_is_started + *fill* 0x000000004012771b 0x1 + .text.wifi_wpa2_is_started + 0x000000004012771c 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040127720 wifi_wpa2_is_started + *fill* 0x000000004012772b 0x1 + .text.wifi_ipc_process + 0x000000004012772c 0x5f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x67 (size before relaxing) + 0x0000000040127730 wifi_ipc_process + *fill* 0x000000004012778b 0x1 + .text.ieee80211_set_appie + 0x000000004012778c 0x183 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x193 (size before relaxing) + 0x0000000040127794 ieee80211_set_appie + *fill* 0x000000004012790f 0x1 + .text.wifi_set_appie_process + 0x0000000040127910 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1c (size before relaxing) + 0x0000000040127910 wifi_set_appie_process + .text.wifi_send_mgmt_frame + 0x0000000040127928 0x18e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1d6 (size before relaxing) + 0x0000000040127940 wifi_send_mgmt_frame + *fill* 0x0000000040127ab6 0x2 + .text.wifi_register_mgmt_frame + 0x0000000040127ab8 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1b (size before relaxing) + 0x0000000040127ab8 wifi_register_mgmt_frame + *fill* 0x0000000040127acf 0x1 + .text.wifi_nan_set_config_local + 0x0000000040127ad0 0x6e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x8e (size before relaxing) + 0x0000000040127adc wifi_nan_set_config_local + *fill* 0x0000000040127b3e 0x2 + .text.wifi_set_config_process + 0x0000000040127b40 0x3b0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x41c (size before relaxing) + 0x0000000040127b48 wifi_set_config_process + .text.wifi_ap_remove_sta_node_process + 0x0000000040127ef0 0x7e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x9e (size before relaxing) + 0x0000000040127ef8 wifi_ap_remove_sta_node_process + *fill* 0x0000000040127f6e 0x2 + .text.wifi_ap_sta_sae_auth_done_process + 0x0000000040127f70 0xe2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x10e (size before relaxing) + 0x0000000040127f7c wifi_ap_sta_sae_auth_done_process + *fill* 0x0000000040128052 0x2 + .text.wifi_on_coex_start_process + 0x0000000040128054 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xf (size before relaxing) + 0x0000000040128054 wifi_on_coex_start_process + *fill* 0x000000004012805c 0x0 + .text.wifi_on_coex_schm_phase_process + 0x000000004012805c 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xf (size before relaxing) + 0x000000004012805c wifi_on_coex_schm_phase_process + *fill* 0x0000000040128064 0x0 + .text.wifi_mesh_map_deauth_progress + 0x0000000040128064 0x7b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x97 (size before relaxing) + 0x0000000040128064 wifi_mesh_map_deauth_progress + *fill* 0x00000000401280df 0x1 + .text.wifi_mesh_ps_duty_cycle_get_process + 0x00000000401280e0 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x2d (size before relaxing) + 0x00000000401280e0 wifi_mesh_ps_duty_cycle_get_process + *fill* 0x0000000040128105 0x3 + .text.ieee80211_ioctl_init + 0x0000000040128108 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3f (size before relaxing) + 0x0000000040128110 ieee80211_ioctl_init + *fill* 0x000000004012812f 0x1 + .text.ieee80211_ioctl_deinit + 0x0000000040128130 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x13 (size before relaxing) + 0x0000000040128130 ieee80211_ioctl_deinit + *fill* 0x000000004012813f 0x1 + .text.ieee80211_ioctl + 0x0000000040128140 0x19e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1ea (size before relaxing) + 0x0000000040128150 ieee80211_ioctl + *fill* 0x00000000401282de 0x2 + .text.is_esp_mesh_assoc + 0x00000000401282e0 0xd4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0xd8 (size before relaxing) + 0x00000000401282ec is_esp_mesh_assoc + .text.nan_get_tsf + 0x00000000401283b4 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x16 (size before relaxing) + 0x00000000401283b4 nan_get_tsf + *fill* 0x00000000401283c2 0x2 + .text.nan_get_clust_id + 0x00000000401283c4 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x00000000401283c8 nan_get_clust_id + .text.wifi_nan_reg_rxcb + 0x00000000401283d0 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x00000000401283d4 wifi_nan_reg_rxcb + *fill* 0x00000000401283e1 0x3 + .text.nan_set_trc + 0x00000000401283e4 0x76 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x8a (size before relaxing) + 0x00000000401283e4 nan_set_trc + *fill* 0x000000004012845a 0x2 + .text.nan_rx_cb + 0x000000004012845c 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x18 (size before relaxing) + 0x000000004012845c nan_rx_cb + .text.nan_post_event + 0x000000004012846c 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x16 (size before relaxing) + 0x000000004012846c nan_post_event + *fill* 0x000000004012847a 0x2 + .text.nan_set_config_local + 0x000000004012847c 0xac /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0xd4 (size before relaxing) + 0x000000004012848c nan_set_config_local + .text.nan_dp_clear_tmp_data + 0x0000000040128528 0x6a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x72 (size before relaxing) + *fill* 0x0000000040128592 0x2 + .text.nan_sched_in_ndc_slot + 0x0000000040128594 0x39 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x3d (size before relaxing) + 0x000000004012859c nan_sched_in_ndc_slot + *fill* 0x00000000401285cd 0x3 + .text.nan_sched_is_peer_available + 0x00000000401285d0 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x40 (size before relaxing) + 0x00000000401285d4 nan_sched_is_peer_available + .text.nan_dp_send_confirm_event + 0x0000000040128608 0x57 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x6b (size before relaxing) + 0x0000000040128608 nan_dp_send_confirm_event + *fill* 0x000000004012865f 0x1 + .text.nan_dp_remove_node + 0x0000000040128660 0x41 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x55 (size before relaxing) + 0x0000000040128660 nan_dp_remove_node + *fill* 0x00000000401286a1 0x3 + .text.nan_dp_delete_peer + 0x00000000401286a4 0xba /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0xd6 (size before relaxing) + 0x00000000401286a8 nan_dp_delete_peer + *fill* 0x000000004012875e 0x2 + .text.nan_dp_post_tx + 0x0000000040128760 0xc6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0xe2 (size before relaxing) + 0x0000000040128768 nan_dp_post_tx + *fill* 0x0000000040128826 0x2 + .text.nan_ndp_resp_timeout_process + 0x0000000040128828 0x7a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x96 (size before relaxing) + 0x0000000040128834 nan_ndp_resp_timeout_process + *fill* 0x00000000401288a2 0x2 + .text.nan_warmup_timeout_process + 0x00000000401288a4 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x13 (size before relaxing) + 0x00000000401288a4 nan_warmup_timeout_process + *fill* 0x00000000401288b3 0x1 + .text.nan_scan_timeout_process + 0x00000000401288b4 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x13 (size before relaxing) + 0x00000000401288b4 nan_scan_timeout_process + *fill* 0x00000000401288c3 0x1 + .text.nan_dw_start_process + 0x00000000401288c4 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x13 (size before relaxing) + 0x00000000401288c4 nan_dw_start_process + *fill* 0x00000000401288d3 0x1 + .text.nan_dw_end_process + 0x00000000401288d4 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x13 (size before relaxing) + 0x00000000401288d4 nan_dw_end_process + *fill* 0x00000000401288e3 0x1 + .text.nan_send_disc_bcn_process + 0x00000000401288e4 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x17 (size before relaxing) + 0x00000000401288e4 nan_send_disc_bcn_process + *fill* 0x00000000401288f7 0x1 + .text.nan_send_sync_bcn_process + 0x00000000401288f8 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x17 (size before relaxing) + 0x00000000401288f8 nan_send_sync_bcn_process + *fill* 0x000000004012890b 0x1 + .text.nan_send_action_process + 0x000000004012890c 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x17 (size before relaxing) + 0x000000004012890c nan_send_action_process + *fill* 0x000000004012891f 0x1 + .text.nan_faw_start_process + 0x0000000040128920 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x17 (size before relaxing) + 0x0000000040128920 nan_faw_start_process + *fill* 0x0000000040128933 0x1 + .text.nan_faw_end_process + 0x0000000040128934 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x17 (size before relaxing) + 0x0000000040128934 nan_faw_end_process + *fill* 0x0000000040128947 0x1 + .text.nan_ndc_start_process + 0x0000000040128948 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x17 (size before relaxing) + 0x0000000040128948 nan_ndc_start_process + *fill* 0x000000004012895b 0x1 + .text.nan_sm_init + 0x000000004012895c 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x1b (size before relaxing) + 0x000000004012895c nan_sm_init + *fill* 0x0000000040128973 0x1 + .text.nan_sm_start + 0x0000000040128974 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x16 (size before relaxing) + 0x0000000040128974 nan_sm_start + *fill* 0x0000000040128983 0x1 + .text.wifi_nvs_cfg_item_init + 0x0000000040128984 0x88 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x98 (size before relaxing) + 0x0000000040128990 wifi_nvs_cfg_item_init + .text.wifi_nvs_cfg_init + 0x0000000040128a0c 0x93d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0xb15 (size before relaxing) + 0x0000000040128bf0 wifi_nvs_cfg_init + *fill* 0x0000000040129349 0x3 + .text.wifi_nvs_get + 0x000000004012934c 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0xe (size before relaxing) + 0x000000004012934c wifi_nvs_get + *fill* 0x0000000040129356 0x2 + .text.wifi_nvs_commit + 0x0000000040129358 0x3a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x4a (size before relaxing) + 0x0000000040129358 wifi_nvs_commit + *fill* 0x0000000040129392 0x2 + .text.wifi_nvs_set + 0x0000000040129394 0x182 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x1b2 (size before relaxing) + 0x00000000401293ac wifi_nvs_set + *fill* 0x0000000040129516 0x2 + .text.ieee80211_adjust_2nd_chan + 0x0000000040129518 0x64 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x7c (size before relaxing) + 0x0000000040129518 ieee80211_adjust_2nd_chan + .text.wifi_nvs_compare_cfg_diff + 0x000000004012957c 0x18a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x1a2 (size before relaxing) + 0x0000000040129580 wifi_nvs_compare_cfg_diff + *fill* 0x0000000040129706 0x2 + .text.wifi_set_default_ssid + 0x0000000040129708 0x44 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x58 (size before relaxing) + 0x000000004012970c wifi_set_default_ssid + .text.wifi_nvs_validate_ap_ssid + 0x000000004012974c 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x22 (size before relaxing) + 0x000000004012974c wifi_nvs_validate_ap_ssid + *fill* 0x0000000040129766 0x2 + .text.wifi_nvs_validate_ap_password + 0x0000000040129768 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x48 (size before relaxing) + 0x0000000040129768 wifi_nvs_validate_ap_password + .text.wifi_nvs_validate_sta_password + 0x00000000401297a0 0x41 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x51 (size before relaxing) + 0x00000000401297a0 wifi_nvs_validate_sta_password + *fill* 0x00000000401297e1 0x3 + .text.wifi_nvs_validate_country + 0x00000000401297e4 0x54 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x58 (size before relaxing) + 0x00000000401297e4 wifi_nvs_validate_country + .text.wifi_nvs_validate_ap_chan + 0x0000000040129838 0x4b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x6b (size before relaxing) + 0x0000000040129838 wifi_nvs_validate_ap_chan + *fill* 0x0000000040129883 0x1 + .text.wifi_nvs_validate_ap_num + 0x0000000040129884 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x21 (size before relaxing) + 0x0000000040129884 wifi_nvs_validate_ap_num + *fill* 0x00000000401298a1 0x3 + .text.wifi_nvs_validate_sta_listen_interval + 0x00000000401298a4 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x20 (size before relaxing) + 0x00000000401298a4 wifi_nvs_validate_sta_listen_interval + .text.wifi_nvs_load + 0x00000000401298c0 0x2ca /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x34e (size before relaxing) + *fill* 0x0000000040129b8a 0x2 + .text.wifi_nvs_get_sta_listen_interval + 0x0000000040129b8c 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x11 (size before relaxing) + 0x0000000040129b8c wifi_nvs_get_sta_listen_interval + *fill* 0x0000000040129b99 0x3 + .text.wifi_nvs_reset_current_ap_info + 0x0000000040129b9c 0x68 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x84 (size before relaxing) + 0x0000000040129b9c wifi_nvs_reset_current_ap_info + .text.wifi_nvs_deinit + 0x0000000040129c04 0x49 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x59 (size before relaxing) + 0x0000000040129c04 wifi_nvs_deinit + *fill* 0x0000000040129c4d 0x3 + .text.wifi_nvs_init + 0x0000000040129c50 0x75 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0xa1 (size before relaxing) + 0x0000000040129c5c wifi_nvs_init + *fill* 0x0000000040129cc5 0x3 + .text.add_appie + 0x0000000040129cc8 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x1b (size before relaxing) + *fill* 0x0000000040129cdf 0x1 + .text.ieee80211_vnd_ie_size$part$4 + 0x0000000040129ce0 0x31 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x35 (size before relaxing) + *fill* 0x0000000040129d11 0x3 + .text.ieee80211_reg_netstack_buf_cb + 0x0000000040129d14 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x0000000040129d1c ieee80211_reg_netstack_buf_cb + *fill* 0x0000000040129d2e 0x2 + .text.ieee80211_set_hmac_stop + 0x0000000040129d30 0x33 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x3f (size before relaxing) + 0x0000000040129d30 ieee80211_set_hmac_stop + *fill* 0x0000000040129d63 0x1 + .text.ieee80211_alloc_tx_buf + 0x0000000040129d64 0x5a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x72 (size before relaxing) + 0x0000000040129d64 ieee80211_alloc_tx_buf + *fill* 0x0000000040129dbe 0x2 + .text.ieee80211_recycle_cache_eb + 0x0000000040129dc0 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x2f (size before relaxing) + 0x0000000040129dc0 ieee80211_recycle_cache_eb + *fill* 0x0000000040129de4 0x0 + .text.ieee80211_empty_txq + 0x0000000040129de4 0x85 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x95 (size before relaxing) + 0x0000000040129de8 ieee80211_empty_txq + *fill* 0x0000000040129e69 0x3 + .text.ieee80211_copy_eb_header + 0x0000000040129e6c 0x8d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x95 (size before relaxing) + 0x0000000040129e70 ieee80211_copy_eb_header + *fill* 0x0000000040129ef9 0x3 + .text.ieee80211_amsdu_adjust_head + 0x0000000040129efc 0xe4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0xf8 (size before relaxing) + 0x0000000040129efc ieee80211_amsdu_adjust_head + .text.ieee80211_amsdu_adjust_last_length + 0x0000000040129fe0 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x34 (size before relaxing) + 0x0000000040129fe0 ieee80211_amsdu_adjust_last_length + .text.ieee80211_amsdu_length_check + 0x000000004012a010 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x2d (size before relaxing) + 0x000000004012a010 ieee80211_amsdu_length_check + *fill* 0x000000004012a039 0x3 + .text.ieee80211_output_init + 0x000000004012a03c 0x31 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x39 (size before relaxing) + 0x000000004012a048 ieee80211_output_init + *fill* 0x000000004012a06d 0x3 + .text.ieee80211_send_setup + 0x000000004012a070 0x141 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x16d (size before relaxing) + 0x000000004012a07c ieee80211_send_setup + *fill* 0x000000004012a1b1 0x3 + .text.ieee80211_tx_mgt_cb + 0x000000004012a1b4 0x11e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x152 (size before relaxing) + 0x000000004012a1b8 ieee80211_tx_mgt_cb + *fill* 0x000000004012a2d2 0x2 + .text.ieee80211_align_eb + 0x000000004012a2d4 0x6a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x72 (size before relaxing) + 0x000000004012a2dc ieee80211_align_eb + *fill* 0x000000004012a33e 0x2 + .text.ieee80211_classify + 0x000000004012a340 0xf8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x108 (size before relaxing) + 0x000000004012a350 ieee80211_classify + .text.ieee80211_add_rates + 0x000000004012a438 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x34 (size before relaxing) + 0x000000004012a438 ieee80211_add_rates + .text.ieee80211_add_dsparams + 0x000000004012a468 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x2a (size before relaxing) + 0x000000004012a468 ieee80211_add_dsparams + *fill* 0x000000004012a48e 0x2 + .text.ieee80211_add_xrates + 0x000000004012a490 0x56 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x5e (size before relaxing) + 0x000000004012a490 ieee80211_add_xrates + *fill* 0x000000004012a4e6 0x2 + .text.ieee80211_add_probe_resp_app_ies + 0x000000004012a4e8 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x23 (size before relaxing) + 0x000000004012a4e8 ieee80211_add_probe_resp_app_ies + *fill* 0x000000004012a507 0x1 + .text.ieee80211_add_beacon_app_ies + 0x000000004012a508 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x23 (size before relaxing) + 0x000000004012a508 ieee80211_add_beacon_app_ies + *fill* 0x000000004012a527 0x1 + .text.ieee80211_add_assoc_resp_ies + 0x000000004012a528 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x22 (size before relaxing) + 0x000000004012a528 ieee80211_add_assoc_resp_ies + *fill* 0x000000004012a546 0x2 + .text.ieee80211_add_assoc_req_ies + 0x000000004012a548 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x22 (size before relaxing) + 0x000000004012a548 ieee80211_add_assoc_req_ies + *fill* 0x000000004012a566 0x2 + .text.ieee80211_add_probe_req_ies + 0x000000004012a568 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x22 (size before relaxing) + 0x000000004012a568 ieee80211_add_probe_req_ies + *fill* 0x000000004012a586 0x2 + .text.ieee80211_add_wme_param + 0x000000004012a588 0x8c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x90 (size before relaxing) + 0x000000004012a590 ieee80211_add_wme_param + .text.ieee80211_add_csa + 0x000000004012a614 0x34 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x38 (size before relaxing) + 0x000000004012a614 ieee80211_add_csa + .text.ieee80211_vnd_ie_set + 0x000000004012a648 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x40 (size before relaxing) + 0x000000004012a648 ieee80211_vnd_ie_set + .text.ieee80211_vnd_lora_ie_size + 0x000000004012a680 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x1b (size before relaxing) + 0x000000004012a680 ieee80211_vnd_lora_ie_size + *fill* 0x000000004012a697 0x1 + .text.ieee80211_vnd_lora_ie_set + 0x000000004012a698 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x3a (size before relaxing) + 0x000000004012a698 ieee80211_vnd_lora_ie_set + *fill* 0x000000004012a6ca 0x2 + .text.ieee80211_setup_robust_mgmtframe + 0x000000004012a6cc 0x9f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0xab (size before relaxing) + 0x000000004012a6d0 ieee80211_setup_robust_mgmtframe + *fill* 0x000000004012a76b 0x1 + .text.ieee80211_mgmt_output + 0x000000004012a76c 0x21b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x27b (size before relaxing) + 0x000000004012a770 ieee80211_mgmt_output + *fill* 0x000000004012a987 0x1 + .text.ieee80211_getcapinfo + 0x000000004012a988 0x93 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0xaf (size before relaxing) + 0x000000004012a990 ieee80211_getcapinfo + *fill* 0x000000004012aa1b 0x1 + .text.ieee80211_assoc_req_construct + 0x000000004012aa1c 0x490 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x558 (size before relaxing) + 0x000000004012aa40 ieee80211_assoc_req_construct + .text.ieee80211_assoc_resp_construct + 0x000000004012aeac 0x35e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x40a (size before relaxing) + 0x000000004012aec0 ieee80211_assoc_resp_construct + *fill* 0x000000004012b20a 0x2 + .text.ieee80211_auth_construct + 0x000000004012b20c 0x32e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x366 (size before relaxing) + 0x000000004012b214 ieee80211_auth_construct + *fill* 0x000000004012b53a 0x2 + .text.ieee80211_deauth_construct + 0x000000004012b53c 0xa0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0xb0 (size before relaxing) + 0x000000004012b540 ieee80211_deauth_construct + .text.ieee80211_disassoc_construct + 0x000000004012b5dc 0xa0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0xb0 (size before relaxing) + 0x000000004012b5e0 ieee80211_disassoc_construct + .text.ieee80211_search_node + 0x000000004012b67c 0xea /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x102 (size before relaxing) + 0x000000004012b694 ieee80211_search_node + *fill* 0x000000004012b766 0x2 + .text.ieee80211_post_hmac_tx + 0x000000004012b768 0x69 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x99 (size before relaxing) + 0x000000004012b768 ieee80211_post_hmac_tx + *fill* 0x000000004012b7d1 0x3 + .text.ieee80211_output_do + 0x000000004012b7d4 0x1f4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x22c (size before relaxing) + 0x000000004012b7e0 ieee80211_output_do + .text.ieee80211_output + 0x000000004012b9c8 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x1d (size before relaxing) + 0x000000004012b9c8 ieee80211_output + *fill* 0x000000004012b9e1 0x3 + .text.esp_wifi_internal_tx + 0x000000004012b9e4 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x1d (size before relaxing) + 0x000000004012b9e4 esp_wifi_internal_tx + *fill* 0x000000004012b9fd 0x3 + .text.ieee80211_output_pending_eb + 0x000000004012ba00 0x70 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x94 (size before relaxing) + 0x000000004012ba04 ieee80211_output_pending_eb + .text.ieee80211_amsdu_send_check + 0x000000004012ba70 0xa5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0xb1 (size before relaxing) + 0x000000004012ba78 ieee80211_amsdu_send_check + *fill* 0x000000004012bb15 0x3 + .text.ieee80211_amsdu_encap_check + 0x000000004012bb18 0x60 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x70 (size before relaxing) + 0x000000004012bb18 ieee80211_amsdu_encap_check + .text.ieee80211_encap_amsdu + 0x000000004012bb78 0x181 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x1d1 (size before relaxing) + 0x000000004012bb78 ieee80211_encap_amsdu + *fill* 0x000000004012bcf9 0x3 + .text.ieee80211_alloc_proberesp + 0x000000004012bcfc 0x2a2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x352 (size before relaxing) + 0x000000004012bd0c ieee80211_alloc_proberesp + *fill* 0x000000004012bf9e 0x2 + .text.ieee80211_alloc_deauth + 0x000000004012bfa0 0x4c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x58 (size before relaxing) + 0x000000004012bfa4 ieee80211_alloc_deauth + .text.ieee80211_output_raw_process + 0x000000004012bfec 0x194 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x1d8 (size before relaxing) + 0x000000004012bff8 ieee80211_output_raw_process + .text.ieee80211_beacon_construct + 0x000000004012c180 0x26a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x2fa (size before relaxing) + 0x000000004012c180 ieee80211_beacon_construct + *fill* 0x000000004012c3ea 0x2 + .text.ieee80211_set_tx_desc + 0x000000004012c3ec 0xed /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x109 (size before relaxing) + 0x000000004012c3f0 ieee80211_set_tx_desc + *fill* 0x000000004012c4d9 0x3 + .text.ieee80211_send_nulldata + 0x000000004012c4dc 0x140 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x1a0 (size before relaxing) + 0x000000004012c4e4 ieee80211_send_nulldata + .text.ieee80211_send_probereq + 0x000000004012c61c 0x23d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x2c1 (size before relaxing) + 0x000000004012c624 ieee80211_send_probereq + *fill* 0x000000004012c859 0x3 + .text.ieee80211_send_mgmt + 0x000000004012c85c 0xc8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x108 (size before relaxing) + 0x000000004012c864 ieee80211_send_mgmt + .text.ieee80211_send_proberesp + 0x000000004012c924 0xec /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x13c (size before relaxing) + 0x000000004012c92c ieee80211_send_proberesp + .text.ieee80211_send_deauth + 0x000000004012ca10 0xf8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x144 (size before relaxing) + 0x000000004012ca18 ieee80211_send_deauth + .text.ieee80211_beacon_alloc + 0x000000004012cb08 0x203 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x273 (size before relaxing) + 0x000000004012cb24 ieee80211_beacon_alloc + *fill* 0x000000004012cd0b 0x1 + .text.ieee80211_encap_null_data + 0x000000004012cd0c 0x10b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x143 (size before relaxing) + 0x000000004012cd14 ieee80211_encap_null_data + *fill* 0x000000004012ce17 0x1 + .text.ieee80211_pm_tx_null_process + 0x000000004012ce18 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x32 (size before relaxing) + 0x000000004012ce18 ieee80211_pm_tx_null_process + *fill* 0x000000004012ce3e 0x2 + .text.ieee80211_phy_deinit + 0x000000004012ce40 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x11 (size before relaxing) + 0x000000004012ce40 ieee80211_phy_deinit + *fill* 0x000000004012ce4a 0x2 + .text.ieee80211_phy_type_get + 0x000000004012ce4c 0x5b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x5f (size before relaxing) + 0x000000004012ce4c ieee80211_phy_type_get + *fill* 0x000000004012cea7 0x1 + .text.ieee80211_phy_mode_show + 0x000000004012cea8 0x7d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x000000004012cec8 ieee80211_phy_mode_show + *fill* 0x000000004012cf25 0x3 + .text.ieee80211_setup_ratetable + 0x000000004012cf28 0x115 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x135 (size before relaxing) + 0x000000004012cf40 ieee80211_setup_ratetable + *fill* 0x000000004012d03d 0x3 + .text.ieee80211_phy_init + 0x000000004012d040 0xa0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0xee (size before relaxing) + 0x000000004012d044 ieee80211_phy_init + *fill* 0x000000004012d0e0 0x0 + .text.ieee80211_psq_init + 0x000000004012d0e0 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x1d (size before relaxing) + 0x000000004012d0e0 ieee80211_psq_init + *fill* 0x000000004012d0f9 0x3 + .text.ieee80211_gpsq_init + 0x000000004012d0fc 0x3e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x5a (size before relaxing) + 0x000000004012d100 ieee80211_gpsq_init + *fill* 0x000000004012d13a 0x2 + .text.ieee80211_psq_find_max_bss + 0x000000004012d13c 0x33 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x3b (size before relaxing) + 0x000000004012d13c ieee80211_psq_find_max_bss + *fill* 0x000000004012d16f 0x1 + .text.ieee80211_set_tim + 0x000000004012d170 0x7f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x87 (size before relaxing) + 0x000000004012d170 ieee80211_set_tim + *fill* 0x000000004012d1ef 0x1 + .text.ieee80211_psq_take_head + 0x000000004012d1f0 0x41 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x45 (size before relaxing) + 0x000000004012d1f0 ieee80211_psq_take_head + *fill* 0x000000004012d231 0x3 + .text.ieee80211_psq_drop_one_pkt + 0x000000004012d234 0x4f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x6b (size before relaxing) + 0x000000004012d234 ieee80211_psq_drop_one_pkt + *fill* 0x000000004012d283 0x1 + .text.ieee80211_psq_send_one_pkt + 0x000000004012d284 0x5d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x79 (size before relaxing) + 0x000000004012d284 ieee80211_psq_send_one_pkt + *fill* 0x000000004012d2e1 0x3 + .text.ieee80211_psq_is_buff_pkt + 0x000000004012d2e4 0x35 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x4c (size before relaxing) + 0x000000004012d2e4 ieee80211_psq_is_buff_pkt + *fill* 0x000000004012d319 0x3 + .text.ieee80211_pwrsave + 0x000000004012d31c 0x6e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x82 (size before relaxing) + 0x000000004012d31c ieee80211_pwrsave + *fill* 0x000000004012d38a 0x2 + .text.pwrsave_flushq + 0x000000004012d38c 0xc9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0xe9 (size before relaxing) + 0x000000004012d38c pwrsave_flushq + *fill* 0x000000004012d455 0x3 + .text.ieee80211_node_pwrsave + 0x000000004012d458 0x62 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x7a (size before relaxing) + 0x000000004012d458 ieee80211_node_pwrsave + *fill* 0x000000004012d4ba 0x2 + .text.ieee80211_pwrsave_node_cleanup + 0x000000004012d4bc 0x37 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x47 (size before relaxing) + 0x000000004012d4bc ieee80211_pwrsave_node_cleanup + *fill* 0x000000004012d4f3 0x1 + .text.ieee80211_pwrsave_txcb + 0x000000004012d4f4 0x7f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x9f (size before relaxing) + 0x000000004012d4f4 ieee80211_pwrsave_txcb + *fill* 0x000000004012d573 0x1 + .text.ieee80211_proto_attach + 0x000000004012d574 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x2f (size before relaxing) + 0x000000004012d578 ieee80211_proto_attach + *fill* 0x000000004012d59b 0x1 + .text.ieee80211_wme_updateparams + 0x000000004012d59c 0x3e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x4a (size before relaxing) + 0x000000004012d5a0 ieee80211_wme_updateparams + *fill* 0x000000004012d5da 0x2 + .text.ieee80211_mlme_connect_bss + 0x000000004012d5dc 0xf7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x11f (size before relaxing) + 0x000000004012d5ec ieee80211_mlme_connect_bss + *fill* 0x000000004012d6d3 0x1 + .text.get_country_chan_info + 0x000000004012d6d4 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + 0x30 (size before relaxing) + .text.ieee80211_is_40mhz_valid_bw + 0x000000004012d700 0x54 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + 0x64 (size before relaxing) + 0x000000004012d708 ieee80211_is_40mhz_valid_bw + .text.ieee80211_regdomain_get_country + 0x000000004012d754 0x36 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x3e (size before relaxing) + 0x000000004012d754 ieee80211_regdomain_get_country + *fill* 0x000000004012d78a 0x2 + .text.ieee80211_update_phy_country + 0x000000004012d78c 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x30 (size before relaxing) + 0x000000004012d78c ieee80211_update_phy_country + .text.ieee80211_regdomain_update + 0x000000004012d7b0 0x138 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x15c (size before relaxing) + 0x000000004012d7b4 ieee80211_regdomain_update + .text.ieee80211_regdomain_update_in_scan + 0x000000004012d8e8 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x16 (size before relaxing) + 0x000000004012d8e8 ieee80211_regdomain_update_in_scan + *fill* 0x000000004012d8fa 0x2 + .text.ieee80211_regdomain_update_in_connect + 0x000000004012d8fc 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x18 (size before relaxing) + 0x000000004012d8fc ieee80211_regdomain_update_in_connect + .text.ieee80211_add_countryie + 0x000000004012d910 0x65 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x71 (size before relaxing) + 0x000000004012d914 ieee80211_add_countryie + *fill* 0x000000004012d975 0x3 + .text.ieee80211_regdomain_max_chan + 0x000000004012d978 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x2e (size before relaxing) + 0x000000004012d978 ieee80211_regdomain_max_chan + *fill* 0x000000004012d99e 0x2 + .text.ieee80211_regdomain_ap_max_chan + 0x000000004012d9a0 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x1c (size before relaxing) + 0x000000004012d9a0 ieee80211_regdomain_ap_max_chan + .text.ieee80211_regdomain_min_chan + 0x000000004012d9b8 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x24 (size before relaxing) + 0x000000004012d9b8 ieee80211_regdomain_min_chan + .text.ieee80211_regdomain_ap_min_chan + 0x000000004012d9d4 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x12 (size before relaxing) + 0x000000004012d9d4 ieee80211_regdomain_ap_min_chan + *fill* 0x000000004012d9df 0x1 + .text.ieee80211_regdomain_policy + 0x000000004012d9e0 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x11 (size before relaxing) + 0x000000004012d9e0 ieee80211_regdomain_policy + *fill* 0x000000004012d9ea 0x2 + .text.ieee80211_regdomain_chan_in_range + 0x000000004012d9ec 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x2e (size before relaxing) + 0x000000004012d9ec ieee80211_regdomain_chan_in_range + *fill* 0x000000004012da0a 0x2 + .text.ieee80211_regdomain_is_active_scan + 0x000000004012da0c 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x33 (size before relaxing) + 0x000000004012da0c ieee80211_regdomain_is_active_scan + *fill* 0x000000004012da3b 0x1 + .text.ieee80211_rfid_locp_recv_reset + 0x000000004012da3c 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + 0x14 (size before relaxing) + 0x000000004012da3c ieee80211_rfid_locp_recv_reset + .text.ieee80211_rfid_locp_recv + 0x000000004012da4c 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + 0x20 (size before relaxing) + 0x000000004012da4c ieee80211_rfid_locp_recv + .text.scan_enter_oper_channel + 0x000000004012da68 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x16 (size before relaxing) + *fill* 0x000000004012da76 0x2 + .text.scan_inter_channel_timeout + 0x000000004012da78 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x16 (size before relaxing) + *fill* 0x000000004012da86 0x2 + .text.scan_op_start + 0x000000004012da88 0x1d6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x232 (size before relaxing) + *fill* 0x000000004012dc5e 0x2 + .text.unlikely.sta_update_owe_bssid + 0x000000004012dc60 0x5b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x77 (size before relaxing) + *fill* 0x000000004012dcbb 0x1 + .text.ieee80211_scan_attach + 0x000000004012dcbc 0xab /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xbb (size before relaxing) + 0x000000004012dccc ieee80211_scan_attach + *fill* 0x000000004012dd67 0x1 + .text.ieee80211_scan_deattach + 0x000000004012dd68 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x2c (size before relaxing) + 0x000000004012dd68 ieee80211_scan_deattach + .text.scan_get_apnum + 0x000000004012dd8c 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xf (size before relaxing) + 0x000000004012dd8c scan_get_apnum + *fill* 0x000000004012dd97 0x1 + .text.scan_freq_cal + 0x000000004012dd98 0xa1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xa5 (size before relaxing) + 0x000000004012dda4 scan_freq_cal + *fill* 0x000000004012de39 0x3 + .text.scan_flush_all_tx_buf + 0x000000004012de3c 0x68 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x84 (size before relaxing) + 0x000000004012de44 scan_flush_all_tx_buf + .text.scan_cancel + 0x000000004012dea4 0x78 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x94 (size before relaxing) + 0x000000004012dea8 scan_cancel + .text.scan_add_bssid + 0x000000004012df1c 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x2d (size before relaxing) + 0x000000004012df1c scan_add_bssid + *fill* 0x000000004012df41 0x3 + .text.scan_remove_bssid + 0x000000004012df44 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x19 (size before relaxing) + 0x000000004012df44 scan_remove_bssid + *fill* 0x000000004012df59 0x3 + .text.scan_hidden_ssid + 0x000000004012df5c 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x17 (size before relaxing) + 0x000000004012df5c scan_hidden_ssid + *fill* 0x000000004012df6f 0x1 + .text.scan_set_act_duration + 0x000000004012df70 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x15 (size before relaxing) + 0x000000004012df70 scan_set_act_duration + *fill* 0x000000004012df81 0x3 + .text.scan_set_pas_duration + 0x000000004012df84 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x13 (size before relaxing) + 0x000000004012df84 scan_set_pas_duration + *fill* 0x000000004012df93 0x1 + .text.scan_set_home_chan_dwell_time + 0x000000004012df94 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x1a (size before relaxing) + 0x000000004012df94 scan_set_home_chan_dwell_time + *fill* 0x000000004012dfaa 0x2 + .text.scan_add_probe_ssid + 0x000000004012dfac 0x66 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x72 (size before relaxing) + 0x000000004012dfac scan_add_probe_ssid + *fill* 0x000000004012e012 0x2 + .text.scan_remove_probe_ssid + 0x000000004012e014 0x2d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x31 (size before relaxing) + 0x000000004012e014 scan_remove_probe_ssid + *fill* 0x000000004012e041 0x3 + .text.scan_prefer_chan + 0x000000004012e044 0x1cd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x225 (size before relaxing) + 0x000000004012e064 scan_prefer_chan + *fill* 0x000000004012e211 0x3 + .text.scan_update_scan_history + 0x000000004012e214 0x180 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x1a8 (size before relaxing) + 0x000000004012e224 scan_update_scan_history + .text.scan_build_chan_list + 0x000000004012e394 0x90 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xa0 (size before relaxing) + 0x000000004012e39c scan_build_chan_list + .text.scan_set_desChan + 0x000000004012e424 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x19 (size before relaxing) + 0x000000004012e424 scan_set_desChan + *fill* 0x000000004012e439 0x3 + .text.scan_get_type + 0x000000004012e43c 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x10 (size before relaxing) + 0x000000004012e43c scan_get_type + .text.unlikely.scan_add_ssid_do + 0x000000004012e448 0x2e6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x31e (size before relaxing) + *fill* 0x000000004012e72e 0x2 + .text.unlikely.scan_add_ssid + 0x000000004012e730 0x177 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x19f (size before relaxing) + *fill* 0x000000004012e8a7 0x1 + .text.scan_reset_cipher_and_akm + 0x000000004012e8a8 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x33 (size before relaxing) + 0x000000004012e8a8 scan_reset_cipher_and_akm + *fill* 0x000000004012e8d7 0x1 + .text.scan_profile_check + 0x000000004012e8d8 0x358 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x3d4 (size before relaxing) + 0x000000004012e8f0 scan_profile_check + .text.free_bss_info + 0x000000004012ec30 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x2e (size before relaxing) + 0x000000004012ec30 free_bss_info + *fill* 0x000000004012ec5a 0x2 + .text.clear_bss_queue + 0x000000004012ec5c 0x36 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x4d (size before relaxing) + 0x000000004012ec60 clear_bss_queue + *fill* 0x000000004012ec92 0x2 + .text.scan_done + 0x000000004012ec94 0x23d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x2cd (size before relaxing) + *fill* 0x000000004012eed1 0x3 + .text.scan_next_channel + 0x000000004012eed4 0x1a4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x204 (size before relaxing) + .text.scan_enter_oper_channel_process + 0x000000004012f078 0x34 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x52 (size before relaxing) + 0x000000004012f07c scan_enter_oper_channel_process + *fill* 0x000000004012f0ac 0x0 + .text.scan_inter_channel_timeout_process + 0x000000004012f0ac 0x70 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x8c (size before relaxing) + 0x000000004012f0b4 scan_inter_channel_timeout_process + .text.scan_op_end + 0x000000004012f11c 0x174 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x1d8 (size before relaxing) + .text.scan_start + 0x000000004012f290 0x137 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x19f (size before relaxing) + 0x000000004012f2a4 scan_start + *fill* 0x000000004012f3c7 0x1 + .text.check_bss_queue + 0x000000004012f3c8 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x30 (size before relaxing) + 0x000000004012f3c8 check_bss_queue + .text.scan_set_scan_id + 0x000000004012f3f0 0x43 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x57 (size before relaxing) + 0x000000004012f3f4 scan_set_scan_id + *fill* 0x000000004012f433 0x1 + .text.scan_get_scan_id + 0x000000004012f434 0x3f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x53 (size before relaxing) + 0x000000004012f438 scan_get_scan_id + *fill* 0x000000004012f473 0x1 + .text.scan_parse_ht2040_coex + 0x000000004012f474 0x74 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x84 (size before relaxing) + 0x000000004012f47c scan_parse_ht2040_coex + .text.scan_get_owe_channel_info + 0x000000004012f4e8 0x81 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x8d (size before relaxing) + 0x000000004012f4e8 scan_get_owe_channel_info + *fill* 0x000000004012f569 0x3 + .text.scan_validate_owe_scenarios + 0x000000004012f56c 0x8c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xa4 (size before relaxing) + 0x000000004012f578 scan_validate_owe_scenarios + .text.scan_parse_beacon + 0x000000004012f5f8 0xc77 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xe8b (size before relaxing) + 0x000000004012f660 scan_parse_beacon + *fill* 0x000000004013026f 0x1 + .text.sta_assoc_comeback + 0x0000000040130270 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x16 (size before relaxing) + *fill* 0x000000004013027e 0x2 + .text.sta_try_sa_query + 0x0000000040130280 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x16 (size before relaxing) + *fill* 0x000000004013028e 0x2 + .text.sta_sa_query_timeout + 0x0000000040130290 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x16 (size before relaxing) + *fill* 0x000000004013029e 0x2 + .text.ieee80211_sta_new_state + 0x00000000401302a0 0xb65 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xd61 (size before relaxing) + 0x0000000040130340 ieee80211_sta_new_state + *fill* 0x0000000040130e05 0x3 + .text.sta_rx_eapol + 0x0000000040130e08 0x184 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x1a4 (size before relaxing) + 0x0000000040130e20 sta_rx_eapol + .text.wifi_sta_reg_rxcb + 0x0000000040130f8c 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x11 (size before relaxing) + 0x0000000040130f8c wifi_sta_reg_rxcb + *fill* 0x0000000040130f99 0x3 + .text.sta_michael_mic_failure + 0x0000000040130f9c 0x36 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x3e (size before relaxing) + 0x0000000040130fa0 sta_michael_mic_failure + *fill* 0x0000000040130fd2 0x2 + .text.sta_auth_ft + 0x0000000040130fd4 0xd2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x102 (size before relaxing) + 0x0000000040130fe4 sta_auth_ft + *fill* 0x00000000401310a6 0x2 + .text.sta_auth_open + 0x00000000401310a8 0x147 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x18f (size before relaxing) + 0x00000000401310bc sta_auth_open + *fill* 0x00000000401311ef 0x1 + .text.sta_auth_shared + 0x00000000401311f0 0x14e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x176 (size before relaxing) + 0x00000000401311f8 sta_auth_shared + *fill* 0x000000004013133e 0x2 + .text.ieee80211_wme_standard_ac_to_esp_ac + 0x0000000040131340 0x4f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x53 (size before relaxing) + 0x0000000040131348 ieee80211_wme_standard_ac_to_esp_ac + *fill* 0x000000004013138f 0x1 + .text.ieee80211_parse_wmeparams + 0x0000000040131390 0x9c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xa0 (size before relaxing) + 0x0000000040131390 ieee80211_parse_wmeparams + .text.sta_rx_csa + 0x000000004013142c 0x240 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x270 (size before relaxing) + 0x0000000040131458 sta_rx_csa + .text.reset_cs_thres + 0x000000004013166c 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x3a (size before relaxing) + 0x0000000040131670 reset_cs_thres + *fill* 0x000000004013169a 0x2 + .text.ieee80211_parse_obss_scan_param + 0x000000004013169c 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x2a (size before relaxing) + 0x000000004013169c ieee80211_parse_obss_scan_param + *fill* 0x00000000401316c2 0x2 + .text.sta_retry_assoc + 0x00000000401316c4 0x6a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x7a (size before relaxing) + 0x00000000401316c4 sta_retry_assoc + *fill* 0x000000004013172e 0x2 + .text.sta_recv_assoc + 0x0000000040131730 0x634 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x700 (size before relaxing) + 0x0000000040131770 sta_recv_assoc + .text.sta_recv_ctl + 0x0000000040131d64 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x16 (size before relaxing) + 0x0000000040131d64 sta_recv_ctl + *fill* 0x0000000040131d73 0x1 + .text.wifi_station_start + 0x0000000040131d74 0xaa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xda (size before relaxing) + 0x0000000040131d7c wifi_station_start + *fill* 0x0000000040131e1e 0x2 + .text.wifi_station_stop + 0x0000000040131e20 0x86 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xae (size before relaxing) + 0x0000000040131e24 wifi_station_stop + *fill* 0x0000000040131ea6 0x2 + .text.sta_bip_check + 0x0000000040131ea8 0x79 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x91 (size before relaxing) + 0x0000000040131ea8 sta_bip_check + *fill* 0x0000000040131f21 0x3 + .text.sta_sa_query_process_timeout + 0x0000000040131f24 0x76 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x92 (size before relaxing) + 0x0000000040131f30 sta_sa_query_process_timeout + *fill* 0x0000000040131f9a 0x2 + .text.sta_try_sa_query_process + 0x0000000040131f9c 0x179 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x1a1 (size before relaxing) + 0x0000000040131fac sta_try_sa_query_process + *fill* 0x0000000040132115 0x3 + .text.sta_is_wpa3_enabled + 0x0000000040132118 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x31 (size before relaxing) + 0x0000000040132118 sta_is_wpa3_enabled + *fill* 0x000000004013213d 0x3 + .text.sta_auth_sae + 0x0000000040132140 0x187 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x1bf (size before relaxing) + 0x0000000040132144 sta_auth_sae + *fill* 0x00000000401322c7 0x1 + .text.sta_recv_mgmt + 0x00000000401322c8 0xb00 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xc44 (size before relaxing) + 0x00000000401322f8 sta_recv_mgmt + .text.sta_get_owe_data + 0x0000000040132dc8 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x13 (size before relaxing) + 0x0000000040132dc8 sta_get_owe_data + *fill* 0x0000000040132dd7 0x1 + .text.esp_wifi_ap_get_prof_pmk_internal + 0x0000000040132dd8 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x13 (size before relaxing) + 0x0000000040132dd8 esp_wifi_ap_get_prof_pmk_internal + *fill* 0x0000000040132de7 0x1 + .text.esp_wifi_sta_update_ap_info_internal + 0x0000000040132de8 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x3d (size before relaxing) + 0x0000000040132de8 esp_wifi_sta_update_ap_info_internal + *fill* 0x0000000040132e11 0x3 + .text.esp_wifi_sta_get_ap_info_prof_pmk_internal + 0x0000000040132e14 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x22 (size before relaxing) + 0x0000000040132e14 esp_wifi_sta_get_ap_info_prof_pmk_internal + *fill* 0x0000000040132e32 0x2 + .text.esp_wifi_ap_get_prof_ap_ssid_internal + 0x0000000040132e34 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x13 (size before relaxing) + 0x0000000040132e34 esp_wifi_ap_get_prof_ap_ssid_internal + *fill* 0x0000000040132e43 0x1 + .text.esp_wifi_sta_get_prof_ssid_internal + 0x0000000040132e44 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x10 (size before relaxing) + 0x0000000040132e44 esp_wifi_sta_get_prof_ssid_internal + .text.esp_wifi_ap_get_prof_authmode_internal + 0x0000000040132e50 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x0000000040132e50 esp_wifi_ap_get_prof_authmode_internal + .text.esp_wifi_ap_get_max_sta_conn + 0x0000000040132e60 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x0000000040132e60 esp_wifi_ap_get_max_sta_conn + .text.esp_wifi_ap_get_prof_pairwise_cipher_internal + 0x0000000040132e70 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x0000000040132e70 esp_wifi_ap_get_prof_pairwise_cipher_internal + .text.esp_wifi_sta_get_prof_authmode_internal + 0x0000000040132e80 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x0000000040132e80 esp_wifi_sta_get_prof_authmode_internal + *fill* 0x0000000040132e8e 0x2 + .text.esp_wifi_get_pmf_config_internal + 0x0000000040132e90 0x56 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x5a (size before relaxing) + 0x0000000040132e90 esp_wifi_get_pmf_config_internal + *fill* 0x0000000040132ee6 0x2 + .text.esp_wifi_sta_get_use_h2e_internal + 0x0000000040132ee8 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x0000000040132ee8 esp_wifi_sta_get_use_h2e_internal + *fill* 0x0000000040132ef6 0x2 + .text.esp_wifi_get_config_sae_pwe_h2e_internal + 0x0000000040132ef8 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x44 (size before relaxing) + 0x0000000040132efc esp_wifi_get_config_sae_pwe_h2e_internal + .text.esp_wifi_sta_disable_wpa2_authmode_internal + 0x0000000040132f34 0x4a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x5e (size before relaxing) + 0x0000000040132f3c esp_wifi_sta_disable_wpa2_authmode_internal + *fill* 0x0000000040132f7e 0x2 + .text.esp_wifi_sta_get_config_sae_pk_internal + 0x0000000040132f80 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x0000000040132f80 esp_wifi_sta_get_config_sae_pk_internal + .text.esp_wifi_ap_notify_node_sae_auth_done + 0x0000000040132f90 0x4e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x5a (size before relaxing) + 0x0000000040132f94 esp_wifi_ap_notify_node_sae_auth_done + *fill* 0x0000000040132fde 0x2 + .text.esp_wifi_ap_is_sta_sae_reauth_node + 0x0000000040132fe0 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x20 (size before relaxing) + 0x0000000040132fe0 esp_wifi_ap_is_sta_sae_reauth_node + .text.esp_wifi_sta_get_sae_identifier_internal + 0x0000000040132ffc 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x13 (size before relaxing) + 0x0000000040132ffc esp_wifi_sta_get_sae_identifier_internal + *fill* 0x000000004013300b 0x1 + .text.esp_wifi_sta_is_ap_notify_completed_rsne_internal + 0x000000004013300c 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x19 (size before relaxing) + 0x000000004013300c esp_wifi_sta_is_ap_notify_completed_rsne_internal + *fill* 0x0000000040133021 0x3 + .text.esp_wifi_ap_get_prof_password_internal + 0x0000000040133024 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x13 (size before relaxing) + 0x0000000040133024 esp_wifi_ap_get_prof_password_internal + *fill* 0x0000000040133033 0x1 + .text.wifi_sta_get_prof_password + 0x0000000040133034 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x11 (size before relaxing) + 0x0000000040133034 wifi_sta_get_prof_password + *fill* 0x0000000040133041 0x3 + .text.wifi_ap_pmf_enabled + 0x0000000040133044 0x40 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x48 (size before relaxing) + 0x0000000040133044 wifi_ap_pmf_enabled + .text.esp_wifi_sta_get_prof_password_internal + 0x0000000040133084 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x11 (size before relaxing) + 0x0000000040133084 esp_wifi_sta_get_prof_password_internal + *fill* 0x0000000040133091 0x3 + .text.esp_wifi_sta_get_reset_param_internal + 0x0000000040133094 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x0000000040133094 esp_wifi_sta_get_reset_param_internal + *fill* 0x00000000401330a2 0x2 + .text.esp_wifi_sta_set_reset_param_internal + 0x00000000401330a4 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1a (size before relaxing) + 0x00000000401330a4 esp_wifi_sta_set_reset_param_internal + *fill* 0x00000000401330ba 0x2 + .text.esp_wifi_sta_prof_is_wpa_internal + 0x00000000401330bc 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x2f (size before relaxing) + 0x00000000401330bc esp_wifi_sta_prof_is_wpa_internal + *fill* 0x00000000401330e7 0x1 + .text.esp_wifi_sta_prof_is_wpa2_internal + 0x00000000401330e8 0x2d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x31 (size before relaxing) + 0x00000000401330ec esp_wifi_sta_prof_is_wpa2_internal + *fill* 0x0000000040133115 0x3 + .text.esp_wifi_sta_prof_is_wapi_internal + 0x0000000040133118 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x22 (size before relaxing) + 0x0000000040133118 esp_wifi_sta_prof_is_wapi_internal + *fill* 0x0000000040133136 0x2 + .text.esp_wifi_sta_prof_is_rsn_internal + 0x0000000040133138 0x2d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x31 (size before relaxing) + 0x000000004013313c esp_wifi_sta_prof_is_rsn_internal + *fill* 0x0000000040133165 0x3 + .text.esp_wifi_sta_get_pairwise_cipher_internal + 0x0000000040133168 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x0000000040133168 esp_wifi_sta_get_pairwise_cipher_internal + *fill* 0x0000000040133176 0x2 + .text.esp_wifi_sta_get_group_cipher_internal + 0x0000000040133178 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x0000000040133178 esp_wifi_sta_get_group_cipher_internal + *fill* 0x0000000040133186 0x2 + .text.ieee80211_set_key + 0x0000000040133188 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x44 (size before relaxing) + 0x0000000040133188 ieee80211_set_key + .text.ieee80211_set_sta_gtk_index + 0x00000000401331c4 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x2d (size before relaxing) + 0x00000000401331c4 ieee80211_set_sta_gtk_index + *fill* 0x00000000401331ed 0x3 + .text.ieee80211_set_gtk + 0x00000000401331f0 0x45 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x55 (size before relaxing) + 0x00000000401331f8 ieee80211_set_gtk + *fill* 0x0000000040133235 0x3 + .text.ieee80211_get_ptk + 0x0000000040133238 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1c (size before relaxing) + 0x0000000040133238 ieee80211_get_ptk + .text.ieee80211_get_spp + 0x0000000040133250 0x2d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x35 (size before relaxing) + 0x0000000040133250 ieee80211_get_spp + *fill* 0x000000004013327d 0x3 + .text.esp_wifi_wpa_ptk_init_done_internal + 0x0000000040133280 0x7d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x9d (size before relaxing) + 0x0000000040133284 esp_wifi_wpa_ptk_init_done_internal + *fill* 0x00000000401332fd 0x3 + .text.esp_wifi_sta_is_running_internal + 0x0000000040133300 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x22 (size before relaxing) + 0x0000000040133300 esp_wifi_sta_is_running_internal + *fill* 0x000000004013331e 0x2 + .text.esp_wifi_sta_send_mgmt_internal + 0x0000000040133320 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x23 (size before relaxing) + 0x0000000040133320 esp_wifi_sta_send_mgmt_internal + *fill* 0x000000004013333b 0x1 + .text.esp_wifi_auth_done_internal + 0x000000004013333c 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x11 (size before relaxing) + 0x000000004013333c esp_wifi_auth_done_internal + *fill* 0x0000000040133346 0x2 + .text.esp_wifi_unregister_wpa_cb_internal + 0x0000000040133348 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x2a (size before relaxing) + 0x0000000040133348 esp_wifi_unregister_wpa_cb_internal + *fill* 0x000000004013336a 0x2 + .text.esp_wifi_register_wpa_cb_internal + 0x000000004013336c 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1e (size before relaxing) + 0x000000004013336c esp_wifi_register_wpa_cb_internal + *fill* 0x000000004013337f 0x1 + .text.ieee80211_sta_is_connected + 0x0000000040133380 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x0000000040133384 ieee80211_sta_is_connected + .text.esp_wifi_get_hostap_private_internal + 0x0000000040133398 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x16 (size before relaxing) + 0x0000000040133398 esp_wifi_get_hostap_private_internal + *fill* 0x00000000401333aa 0x2 + .text.esp_wifi_deauthenticate_internal + 0x00000000401333ac 0x56 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x66 (size before relaxing) + 0x00000000401333ac esp_wifi_deauthenticate_internal + *fill* 0x0000000040133402 0x2 + .text.esp_wifi_get_spp_attrubute_internal + 0x0000000040133404 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x28 (size before relaxing) + 0x0000000040133404 esp_wifi_get_spp_attrubute_internal + .text.esp_wifi_get_user_init_flag_internal + 0x0000000040133428 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1d (size before relaxing) + 0x0000000040133428 esp_wifi_get_user_init_flag_internal + *fill* 0x0000000040133441 0x3 + .text.wifi_set_rx_policy + 0x0000000040133444 0x17c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1f7 (size before relaxing) + 0x0000000040133448 wifi_set_rx_policy + *fill* 0x00000000401335c0 0x0 + .text.esp_wifi_register_tx_cb_internal + 0x00000000401335c0 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x18 (size before relaxing) + 0x00000000401335c0 esp_wifi_register_tx_cb_internal + .text.esp_wifi_get_macaddr_internal + 0x00000000401335d4 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1f (size before relaxing) + 0x00000000401335d4 esp_wifi_get_macaddr_internal + *fill* 0x00000000401335ef 0x1 + .text.esp_wifi_ap_deauth_internal + 0x00000000401335f0 0x58 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x6c (size before relaxing) + 0x00000000401335f4 esp_wifi_ap_deauth_internal + .text.wifi_init_key + 0x0000000040133648 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x34 (size before relaxing) + 0x000000004013364c wifi_init_key + .text.esp_wifi_set_ap_key_internal + 0x0000000040133674 0x15c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1b4 (size before relaxing) + 0x0000000040133680 esp_wifi_set_ap_key_internal + .text.ppInstallKey + 0x00000000401337d0 0x12e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x176 (size before relaxing) + 0x00000000401337d4 ppInstallKey + *fill* 0x00000000401338fe 0x2 + .text.esp_wifi_set_sta_key_internal + 0x0000000040133900 0x60 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x68 (size before relaxing) + 0x0000000040133900 esp_wifi_set_sta_key_internal + .text.esp_wifi_get_sta_key_internal + 0x0000000040133960 0x4a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x4e (size before relaxing) + 0x0000000040133960 esp_wifi_get_sta_key_internal + *fill* 0x00000000401339aa 0x2 + .text.esp_wifi_set_appie_internal + 0x00000000401339ac 0x56 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x6a (size before relaxing) + 0x00000000401339b0 esp_wifi_set_appie_internal + *fill* 0x0000000040133a02 0x2 + .text.esp_wifi_unset_appie_internal + 0x0000000040133a04 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1a (size before relaxing) + 0x0000000040133a04 esp_wifi_unset_appie_internal + *fill* 0x0000000040133a1a 0x2 + .text.esp_wifi_get_wps_status_internal + 0x0000000040133a1c 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x10 (size before relaxing) + 0x0000000040133a1c esp_wifi_get_wps_status_internal + .text.esp_wifi_sta_pmf_enabled + 0x0000000040133a28 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x0000000040133a28 esp_wifi_sta_pmf_enabled + *fill* 0x0000000040133a36 0x2 + .text.esp_wifi_sta_get_mgmt_group_cipher + 0x0000000040133a38 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x2a (size before relaxing) + 0x0000000040133a3c esp_wifi_sta_get_mgmt_group_cipher + *fill* 0x0000000040133a5e 0x2 + .text.esp_wifi_set_igtk_internal + 0x0000000040133a60 0xcc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0xd4 (size before relaxing) + 0x0000000040133a74 esp_wifi_set_igtk_internal + .text.ieee80211w_get_active_igtk_key_id + 0x0000000040133b2c 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x26 (size before relaxing) + 0x0000000040133b2c ieee80211w_get_active_igtk_key_id + *fill* 0x0000000040133b46 0x2 + .text.ieee80211w_get_igtk_from_keyidx + 0x0000000040133b48 0x3e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x46 (size before relaxing) + 0x0000000040133b50 ieee80211w_get_igtk_from_keyidx + *fill* 0x0000000040133b86 0x2 + .text.esp_wifi_skip_supp_pmkcaching + 0x0000000040133b88 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x0000000040133b88 esp_wifi_skip_supp_pmkcaching + *fill* 0x0000000040133b96 0x2 + .text.esp_wifi_register_mgmt_frame_internal + 0x0000000040133b98 0x4c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x64 (size before relaxing) + 0x0000000040133b9c esp_wifi_register_mgmt_frame_internal + .text.esp_wifi_send_mgmt_frm_internal + 0x0000000040133be4 0x6e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x8e (size before relaxing) + 0x0000000040133be8 esp_wifi_send_mgmt_frm_internal + *fill* 0x0000000040133c52 0x2 + .text.ieee80211_nan_ndp_resp_timeout + 0x0000000040133c54 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x0000000040133c63 0x1 + .text.ieee80211_nan_ndc_start + 0x0000000040133c64 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x0000000040133c73 0x1 + .text.ieee80211_nan_faw_end + 0x0000000040133c74 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x0000000040133c83 0x1 + .text.ieee80211_nan_faw_start + 0x0000000040133c84 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x0000000040133c93 0x1 + .text.ieee80211_nan_send_action + 0x0000000040133c94 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x0000000040133ca3 0x1 + .text.ieee80211_nan_send_sync_bcn + 0x0000000040133ca4 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x0000000040133cb3 0x1 + .text.ieee80211_nan_send_disc_bcn + 0x0000000040133cb4 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x0000000040133cc3 0x1 + .text.ieee80211_nan_dw_end + 0x0000000040133cc4 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x0000000040133cd3 0x1 + .text.ieee80211_nan_dw_start + 0x0000000040133cd4 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x0000000040133ce3 0x1 + .text.ieee80211_nan_scan_timeout + 0x0000000040133ce4 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x0000000040133cf3 0x1 + .text.ieee80211_nan_warmup_timeout + 0x0000000040133cf4 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x0000000040133d03 0x1 + .text.ieee80211_ampdu_age_handle + 0x0000000040133d04 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x0000000040133d13 0x1 + .text.ieee80211_addba + 0x0000000040133d14 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x0000000040133d23 0x1 + .text.ieee80211_sta_retry_assoc + 0x0000000040133d24 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x0000000040133d53 0x1 + .text.ieee80211_ap_try_sa_query + 0x0000000040133d54 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x0000000040133d86 0x2 + .text.ieee80211_ap_sa_query_timeout + 0x0000000040133d88 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x0000000040133dba 0x2 + .text.ieee80211_sta_sa_query_timeout + 0x0000000040133dbc 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x0000000040133deb 0x1 + .text.ieee80211_sta_try_sa_query + 0x0000000040133dec 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x41 (size before relaxing) + *fill* 0x0000000040133e1a 0x2 + .text.ieee80211_assoc + 0x0000000040133e1c 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x0000000040133e4b 0x1 + .text.ieee80211_auth + 0x0000000040133e4c 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x0000000040133e7b 0x1 + .text.ieee80211_chm_dwell + 0x0000000040133e7c 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x0000000040133eae 0x2 + .text.ieee80211_handshake + 0x0000000040133eb0 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x0000000040133edf 0x1 + .text.ieee80211_beacon + 0x0000000040133ee0 0x3f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x52 (size before relaxing) + *fill* 0x0000000040133f1f 0x1 + .text.ieee80211_probe_send + 0x0000000040133f20 0x3f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x52 (size before relaxing) + *fill* 0x0000000040133f5f 0x1 + .text.ieee80211_csa + 0x0000000040133f60 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x4e (size before relaxing) + *fill* 0x0000000040133f9b 0x1 + .text.ieee80211_scan_enter_op_chan + 0x0000000040133f9c 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x0000000040133fce 0x2 + .text.ieee80211_scan_inter_chan + 0x0000000040133fd0 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x0000000040134002 0x2 + .text.ieee80211_timer_connect + 0x0000000040134004 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x0000000040134033 0x1 + .text.ieee80211_hostap_handle + 0x0000000040134034 0x32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x0000000040134066 0x2 + .text.ieee80211_send_beacon + 0x0000000040134068 0x34 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x44 (size before relaxing) + .text.ieee80211_register_hostap_timer + 0x000000004013409c 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x00000000401340a8 ieee80211_register_hostap_timer + .text.ieee80211_timer_do_process + 0x00000000401340d8 0x9a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0xae (size before relaxing) + 0x00000000401340e0 ieee80211_timer_do_process + *fill* 0x0000000040134172 0x2 + .text.ieee80211_timer_process + 0x0000000040134174 0xb4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0xfc (size before relaxing) + 0x0000000040134184 ieee80211_timer_process + .text.chm_end_op_timeout + 0x0000000040134228 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x16 (size before relaxing) + *fill* 0x0000000040134236 0x2 + .text.chm_phy_change_channel$constprop$3 + 0x0000000040134238 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x57 (size before relaxing) + *fill* 0x0000000040134273 0x1 + .text.chm_mhz2num + 0x0000000040134274 0x64 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x68 (size before relaxing) + 0x0000000040134288 chm_mhz2num + .text.chm_deinit + 0x00000000401342d8 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x2e (size before relaxing) + 0x00000000401342d8 chm_deinit + *fill* 0x00000000401342fe 0x2 + .text.chm_release_lock + 0x0000000040134300 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x20 (size before relaxing) + 0x0000000040134300 chm_release_lock + .text.chm_end_op + 0x000000004013431c 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x36 (size before relaxing) + 0x000000004013431c chm_end_op + *fill* 0x000000004013434a 0x2 + .text.chm_end_op_timeout_process + 0x000000004013434c 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x2e (size before relaxing) + 0x000000004013434c chm_end_op_timeout_process + *fill* 0x000000004013436b 0x1 + .text.chm_cancel_op + 0x000000004013436c 0x40 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x50 (size before relaxing) + 0x000000004013436c chm_cancel_op + .text.chm_acquire_lock + 0x00000000401343ac 0x35 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x41 (size before relaxing) + 0x00000000401343ac chm_acquire_lock + *fill* 0x00000000401343e1 0x3 + .text.chm_get_current_channel + 0x00000000401343e4 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x11 (size before relaxing) + 0x00000000401343e4 chm_get_current_channel + *fill* 0x00000000401343f1 0x3 + .text.chm_get_home_channel + 0x00000000401343f4 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x11 (size before relaxing) + 0x00000000401343f4 chm_get_home_channel + *fill* 0x0000000040134401 0x3 + .text.chm_set_home_channel + 0x0000000040134404 0x68 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x84 (size before relaxing) + 0x000000004013440c chm_set_home_channel + .text.chm_get_chan_info + 0x000000004013446c 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x26 (size before relaxing) + 0x000000004013446c chm_get_chan_info + *fill* 0x000000004013448e 0x2 + .text.chm_set_current_channel + 0x0000000040134490 0xfb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x12f (size before relaxing) + 0x00000000401344a4 chm_set_current_channel + *fill* 0x000000004013458b 0x1 + .text.chm_init + 0x000000004013458c 0xdb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0xfb (size before relaxing) + 0x0000000040134594 chm_init + *fill* 0x0000000040134667 0x1 + .text.chm_change_channel + 0x0000000040134668 0xe3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x113 (size before relaxing) + *fill* 0x000000004013474b 0x1 + .text.chm_start_op + 0x000000004013474c 0x3e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x46 (size before relaxing) + 0x000000004013474c chm_start_op + *fill* 0x000000004013478a 0x2 + .text.chm_return_home_channel + 0x000000004013478c 0x49 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x59 (size before relaxing) + 0x0000000040134790 chm_return_home_channel + *fill* 0x00000000401347d5 0x3 + .text.cnx_sta_connect_led_timer_cb + 0x00000000401347d8 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x23 (size before relaxing) + 0x00000000401347d8 cnx_sta_connect_led_timer_cb + *fill* 0x00000000401347f7 0x1 + .text.cnx_cal_rc_util + 0x00000000401347f8 0x5a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x5e (size before relaxing) + *fill* 0x0000000040134852 0x2 + .text.cnx_get_next_rc + 0x0000000040134854 0x3a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x42 (size before relaxing) + *fill* 0x000000004013488e 0x2 + .text.cnx_traverse_rc_lis_done + 0x0000000040134890 0x33 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x43 (size before relaxing) + *fill* 0x00000000401348c3 0x1 + .text.cnx_connect_op + 0x00000000401348c4 0x236 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x29e (size before relaxing) + *fill* 0x0000000040134afa 0x2 + .text.cnx_connect_timeout + 0x0000000040134afc 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x0000000040134afc cnx_connect_timeout + *fill* 0x0000000040134b0a 0x2 + .text.cnx_handshake_timeout + 0x0000000040134b0c 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x0000000040134b0c cnx_handshake_timeout + *fill* 0x0000000040134b1a 0x2 + .text.cnx_csa_fn + 0x0000000040134b1c 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x18 (size before relaxing) + 0x0000000040134b1c cnx_csa_fn + .text.mgd_probe_send_timeout + 0x0000000040134b2c 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + *fill* 0x0000000040134b3a 0x2 + .text.cnx_beacon_timeout + 0x0000000040134b3c 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + *fill* 0x0000000040134b4a 0x2 + .text.cnx_probe_rc + 0x0000000040134b4c 0x5b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x77 (size before relaxing) + *fill* 0x0000000040134ba7 0x1 + .text.cnx_connect_to_bss + 0x0000000040134ba8 0x3b2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x456 (size before relaxing) + *fill* 0x0000000040134f5a 0x2 + .text.ieee80211_cnx_attach + 0x0000000040134f5c 0x3e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x52 (size before relaxing) + 0x0000000040134f64 ieee80211_cnx_attach + *fill* 0x0000000040134f9a 0x2 + .text._cnx_start_connect_without_scan + 0x0000000040134f9c 0x60 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x78 (size before relaxing) + 0x0000000040134fa0 _cnx_start_connect_without_scan + .text.cnx_can_do_obss_scan + 0x0000000040134ffc 0x66 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x72 (size before relaxing) + 0x000000004013500c cnx_can_do_obss_scan + *fill* 0x0000000040135062 0x2 + .text.cnx_obss_scan + 0x0000000040135064 0x76 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xb6 (size before relaxing) + 0x0000000040135074 cnx_obss_scan + *fill* 0x00000000401350da 0x2 + .text.cnx_obss_scan_timeout + 0x00000000401350dc 0x5d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x75 (size before relaxing) + 0x00000000401350ec cnx_obss_scan_timeout + *fill* 0x0000000040135139 0x3 + .text.cnx_sta_scan_cmd + 0x000000004013513c 0x2f6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x402 (size before relaxing) + 0x0000000040135170 cnx_sta_scan_cmd + *fill* 0x0000000040135432 0x2 + .text.cnx_auth_timeout + 0x0000000040135434 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x0000000040135434 cnx_auth_timeout + *fill* 0x0000000040135442 0x2 + .text.cnx_assoc_timeout + 0x0000000040135444 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x0000000040135444 cnx_assoc_timeout + *fill* 0x0000000040135452 0x2 + .text.wl_is_ap_no_lr + 0x0000000040135454 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040135458 wl_is_ap_no_lr + *fill* 0x0000000040135463 0x1 + .text.wl_clear_ap_no_lr + 0x0000000040135464 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x17 (size before relaxing) + 0x0000000040135464 wl_clear_ap_no_lr + *fill* 0x0000000040135477 0x1 + .text.cnx_csa_fn_process + 0x0000000040135478 0xe0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x128 (size before relaxing) + 0x0000000040135484 cnx_csa_fn_process + .text.cnx_validate_owe_bss + 0x0000000040135558 0x108 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x14c (size before relaxing) + 0x0000000040135558 cnx_validate_owe_bss + .text.cnx_bss_init + 0x0000000040135660 0xbe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xd2 (size before relaxing) + 0x000000004013566c cnx_bss_init + *fill* 0x000000004013571e 0x2 + .text.cnx_check_bssid_in_blacklist + 0x0000000040135720 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x31 (size before relaxing) + 0x0000000040135720 cnx_check_bssid_in_blacklist + *fill* 0x0000000040135749 0x3 + .text.cnx_remove_from_blacklist + 0x000000004013574c 0x8d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x9d (size before relaxing) + 0x0000000040135750 cnx_remove_from_blacklist + *fill* 0x00000000401357d9 0x3 + .text.cnx_add_to_blacklist + 0x00000000401357dc 0xb4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xd8 (size before relaxing) + 0x00000000401357e8 cnx_add_to_blacklist + .text.cnx_clear_blacklist + 0x0000000040135890 0x5d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x71 (size before relaxing) + 0x0000000040135894 cnx_clear_blacklist + *fill* 0x00000000401358ed 0x3 + .text.cnx_choose_rc + 0x00000000401358f0 0x1da /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x23e (size before relaxing) + *fill* 0x0000000040135aca 0x2 + .text.cnx_rc_search + 0x0000000040135acc 0x39 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x45 (size before relaxing) + 0x0000000040135acc cnx_rc_search + *fill* 0x0000000040135b05 0x3 + .text.cnx_add_rc + 0x0000000040135b08 0x92 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x96 (size before relaxing) + 0x0000000040135b0c cnx_add_rc + *fill* 0x0000000040135b9a 0x2 + .text.cnx_remove_all_rc + 0x0000000040135b9c 0x51 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x5d (size before relaxing) + 0x0000000040135ba0 cnx_remove_all_rc + *fill* 0x0000000040135bed 0x3 + .text.cnx_do_handoff + 0x0000000040135bf0 0x2fd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3b5 (size before relaxing) + *fill* 0x0000000040135eed 0x3 + .text.cnx_connect_next_ap + 0x0000000040135ef0 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x54 (size before relaxing) + 0x0000000040135ef4 cnx_connect_next_ap + .text.cnx_start_handoff_cb + 0x0000000040135f2c 0x5a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x86 (size before relaxing) + 0x0000000040135f34 cnx_start_handoff_cb + *fill* 0x0000000040135f86 0x2 + .text.cnx_remove_rc + 0x0000000040135f88 0xb4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xc8 (size before relaxing) + 0x0000000040135f90 cnx_remove_rc + .text.cnx_sta_connect_cmd + 0x000000004013603c 0x210 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x2d4 (size before relaxing) + 0x0000000040136054 cnx_sta_connect_cmd + .text.cnx_connect_timeout_process + 0x000000004013624c 0x84 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xab (size before relaxing) + 0x0000000040136254 cnx_connect_timeout_process + *fill* 0x00000000401362d0 0x0 + .text.cnx_auth_timeout_process + 0x00000000401362d0 0x39 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x61 (size before relaxing) + 0x00000000401362d8 cnx_auth_timeout_process + *fill* 0x0000000040136309 0x3 + .text.cnx_assoc_timeout_process + 0x000000004013630c 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x4c (size before relaxing) + 0x0000000040136314 cnx_assoc_timeout_process + .text.cnx_handshake_timeout_process + 0x0000000040136338 0x4e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x76 (size before relaxing) + 0x0000000040136340 cnx_handshake_timeout_process + *fill* 0x0000000040136386 0x2 + .text.cnx_bss_alloc + 0x0000000040136388 0x298 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x2f4 (size before relaxing) + 0x00000000401363a4 cnx_bss_alloc + .text.cnx_remove_rc_except + 0x0000000040136620 0x6e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x7e (size before relaxing) + 0x0000000040136624 cnx_remove_rc_except + *fill* 0x000000004013668e 0x2 + .text.cnx_rc_update_rssi + 0x0000000040136690 0x71 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x75 (size before relaxing) + 0x0000000040136690 cnx_rc_update_rssi + *fill* 0x0000000040136701 0x3 + .text.cnx_rc_update_state_metric + 0x0000000040136704 0x6f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x77 (size before relaxing) + 0x0000000040136704 cnx_rc_update_state_metric + *fill* 0x0000000040136773 0x1 + .text.cnx_probe_rc_tx_cb + 0x0000000040136774 0x55 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x7c (size before relaxing) + *fill* 0x00000000401367c9 0x3 + .text.cnx_update_bss + 0x00000000401367cc 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x2a (size before relaxing) + 0x00000000401367cc cnx_update_bss + *fill* 0x00000000401367ea 0x2 + .text.send_ap_probe + 0x00000000401367ec 0x96 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xc2 (size before relaxing) + 0x00000000401367ec send_ap_probe + *fill* 0x0000000040136882 0x2 + .text.mgd_probe_send_timeout_process + 0x0000000040136884 0x134 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x178 (size before relaxing) + 0x000000004013689c mgd_probe_send_timeout_process + .text.cnx_node_alloc + 0x00000000401369b8 0xca /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xe6 (size before relaxing) + 0x00000000401369b8 cnx_node_alloc + *fill* 0x0000000040136a82 0x2 + .text.cnx_node_remove + 0x0000000040136a84 0xbf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xe3 (size before relaxing) + 0x0000000040136a84 cnx_node_remove + *fill* 0x0000000040136b43 0x1 + .text.cnx_sta_pm + 0x0000000040136b44 0x31 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3c (size before relaxing) + 0x0000000040136b44 cnx_sta_pm + *fill* 0x0000000040136b75 0x3 + .text.cnx_update_bss_more + 0x0000000040136b78 0x343 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3df (size before relaxing) + 0x0000000040136b7c cnx_update_bss_more + *fill* 0x0000000040136ebb 0x1 + .text.cnx_beacon_timeout_process + 0x0000000040136ebc 0x7c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xb4 (size before relaxing) + 0x0000000040136ec0 cnx_beacon_timeout_process + .text.ic_set_sta + 0x0000000040136f38 0xca /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xe6 (size before relaxing) + 0x0000000040136f3c ic_set_sta + *fill* 0x0000000040137002 0x2 + .text.cnx_sta_leave + 0x0000000040137004 0x292 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x322 (size before relaxing) + 0x0000000040137010 cnx_sta_leave + *fill* 0x0000000040137296 0x2 + .text.cnx_sta_associated + 0x0000000040137298 0x16a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x1a2 (size before relaxing) + 0x00000000401372b4 cnx_sta_associated + *fill* 0x0000000040137402 0x2 + .text.cnx_node_leave + 0x0000000040137404 0x1d0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x22a (size before relaxing) + 0x0000000040137414 cnx_node_leave + *fill* 0x00000000401375d4 0x0 + .text.cnx_node_join + 0x00000000401375d4 0x329 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3bd (size before relaxing) + 0x0000000040137608 cnx_node_join + *fill* 0x00000000401378fd 0x3 + .text.cnx_start_obss_scan + 0x0000000040137900 0xd8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xf8 (size before relaxing) + 0x0000000040137910 cnx_start_obss_scan + .text.cnx_obss_scan_done_cb + 0x00000000401379d8 0x12d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x171 (size before relaxing) + 0x00000000401379ec cnx_obss_scan_done_cb + *fill* 0x0000000040137b05 0x3 + .text.cnx_auth_done + 0x0000000040137b08 0x2c2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x37e (size before relaxing) + 0x0000000040137b38 cnx_auth_done + *fill* 0x0000000040137dca 0x2 + .text.offchan_in_progress + 0x0000000040137dcc 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + 0x0000000040137dd0 offchan_in_progress + *fill* 0x0000000040137ddb 0x1 + .text.offchan_recv_action + 0x0000000040137ddc 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + 0x20 (size before relaxing) + 0x0000000040137ddc offchan_recv_action + .text.offchan_send_action_tx_status + 0x0000000040137df8 0x37 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + 0x3f (size before relaxing) + 0x0000000040137df8 offchan_send_action_tx_status + *fill* 0x0000000040137e2f 0x1 + .text.ieee80211_send_action_register + 0x0000000040137e30 0x6f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x0000000040137e40 ieee80211_send_action_register + *fill* 0x0000000040137e9f 0x1 + .text.ieee80211_send_action + 0x0000000040137ea0 0x72 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x82 (size before relaxing) + 0x0000000040137ea4 ieee80211_send_action + *fill* 0x0000000040137f12 0x2 + .text.ieee80211_recv_action_register + 0x0000000040137f14 0x83 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x0000000040137f28 ieee80211_recv_action_register + *fill* 0x0000000040137f97 0x1 + .text.ieee80211_recv_action + 0x0000000040137f98 0xbb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0xdf (size before relaxing) + 0x0000000040137fa4 ieee80211_recv_action + *fill* 0x0000000040138053 0x1 + .text.get_iav_key + 0x0000000040138054 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + 0x0000000040138058 get_iav_key + .text.ieee80211_recv_action_vendor_spec + 0x0000000040138070 0x106 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + 0x116 (size before relaxing) + 0x0000000040138078 ieee80211_recv_action_vendor_spec + *fill* 0x0000000040138176 0x2 + .text.ieee80211_action_vendor_spec_attach + 0x0000000040138178 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + 0x38 (size before relaxing) + 0x000000004013817c ieee80211_action_vendor_spec_attach + .text.ccmp_encap + 0x00000000401381a8 0x83 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x87 (size before relaxing) + 0x00000000401381a8 ccmp_encap + *fill* 0x000000004013822b 0x1 + .text.ccmp_decap + 0x000000004013822c 0x94 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x9b (size before relaxing) + 0x000000004013822c ccmp_decap + *fill* 0x00000000401382c0 0x0 + .text.ieee80211_decrypt_espnow_pkt + 0x00000000401382c0 0x52 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x66 (size before relaxing) + 0x00000000401382c0 ieee80211_decrypt_espnow_pkt + *fill* 0x0000000040138312 0x2 + .text.ieee80211_ccmp_decrypt + 0x0000000040138314 0x1dd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x1f5 (size before relaxing) + 0x0000000040138320 ieee80211_ccmp_decrypt + *fill* 0x00000000401384f1 0x3 + .text.ieee80211_ccmp_encrypt + 0x00000000401384f4 0xea /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x102 (size before relaxing) + 0x00000000401384f8 ieee80211_ccmp_encrypt + *fill* 0x00000000401385de 0x2 + .text.sms4_decap + 0x00000000401385e0 0x86 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + 0x8e (size before relaxing) + *fill* 0x0000000040138666 0x2 + .text.sms4_encap + 0x0000000040138668 0xca /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + 0xd2 (size before relaxing) + *fill* 0x0000000040138732 0x2 + .text.tkip_decap + 0x0000000040138734 0x9f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + 0xa7 (size before relaxing) + 0x0000000040138734 tkip_decap + *fill* 0x00000000401387d3 0x1 + .text.tkip_encap + 0x00000000401387d4 0x9d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + 0xa5 (size before relaxing) + 0x00000000401387d8 tkip_encap + *fill* 0x0000000040138871 0x3 + .text.wep_encap + 0x0000000040138874 0x65 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + 0x69 (size before relaxing) + 0x0000000040138874 wep_encap + *fill* 0x00000000401388d9 0x3 + .text.esf_buf_alloc_dynamic_default_handler + 0x00000000401388dc 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x21 (size before relaxing) + 0x00000000401388e0 esf_buf_alloc_dynamic_default_handler + *fill* 0x00000000401388f9 0x3 + .text.esf_buf_alloc_default_handler + 0x00000000401388fc 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x21 (size before relaxing) + 0x0000000040138900 esf_buf_alloc_default_handler + *fill* 0x0000000040138919 0x3 + .text.esf_buf_recycle_default_handler + 0x000000004013891c 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x22 (size before relaxing) + 0x0000000040138920 esf_buf_recycle_default_handler + *fill* 0x000000004013893a 0x2 + .text.esf_buf_setup_static + 0x000000004013893c 0x52 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x62 (size before relaxing) + 0x0000000040138948 esf_buf_setup_static + *fill* 0x000000004013898e 0x2 + .text.esf_buf_free_static + 0x0000000040138990 0x96 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0xaa (size before relaxing) + 0x0000000040138990 esf_buf_free_static + *fill* 0x0000000040138a26 0x2 + .text.esf_buf_setdown + 0x0000000040138a28 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x19 (size before relaxing) + 0x0000000040138a28 esf_buf_setdown + *fill* 0x0000000040138a3d 0x3 + .text.esf_buf_setup + 0x0000000040138a40 0x1a7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x22a (size before relaxing) + 0x0000000040138a60 esf_buf_setup + *fill* 0x0000000040138be7 0x1 + .text.ic_get_addr + 0x0000000040138be8 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040138bec ic_get_addr + *fill* 0x0000000040138bfd 0x3 + .text.ic_get_ptk_alg + 0x0000000040138c00 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x0000000040138c00 ic_get_ptk_alg + .text.ic_disable_crypto + 0x0000000040138c14 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x30 (size before relaxing) + 0x0000000040138c14 ic_disable_crypto + .text.ic_set_key + 0x0000000040138c3c 0x8e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x9e (size before relaxing) + 0x0000000040138c3c ic_set_key + *fill* 0x0000000040138cca 0x2 + .text.ic_get_key + 0x0000000040138ccc 0x50 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x5c (size before relaxing) + 0x0000000040138ccc ic_get_key + .text.ic_obtain_key + 0x0000000040138d1c 0x6f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x7f (size before relaxing) + 0x0000000040138d1c ic_obtain_key + *fill* 0x0000000040138d8b 0x1 + .text.ic_tx_pkt + 0x0000000040138d8c 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x15 (size before relaxing) + 0x0000000040138d8c ic_tx_pkt + *fill* 0x0000000040138d9d 0x3 + .text.ic_ebuf_alloc + 0x0000000040138da0 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040138da4 ic_ebuf_alloc + .text.ic_ebuf_recycle_tx + 0x0000000040138db8 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x0000000040138db8 ic_ebuf_recycle_tx + *fill* 0x0000000040138dc6 0x2 + .text.ic_ebuf_recycle_rx + 0x0000000040138dc8 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x0000000040138dc8 ic_ebuf_recycle_rx + *fill* 0x0000000040138dd2 0x2 + .text.esp_wifi_internal_free_rx_buffer + 0x0000000040138dd4 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x0000000040138dd4 esp_wifi_internal_free_rx_buffer + *fill* 0x0000000040138dde 0x2 + .text.ic_register_tx_cb + 0x0000000040138de0 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x19 (size before relaxing) + 0x0000000040138de0 ic_register_tx_cb + *fill* 0x0000000040138df5 0x3 + .text.ic_register_rx_cb + 0x0000000040138df8 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x16 (size before relaxing) + 0x0000000040138df8 ic_register_rx_cb + *fill* 0x0000000040138e0a 0x2 + .text.ic_register_timer_post_cb + 0x0000000040138e0c 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x0000000040138e0c ic_register_timer_post_cb + .text.ic_register_michael_mic_failure_cb + 0x0000000040138e18 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x0000000040138e18 ic_register_michael_mic_failure_cb + .text.ic_register_config_cb + 0x0000000040138e24 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x0000000040138e24 ic_register_config_cb + .text.ic_is_mgmt_hwdecr_enabled + 0x0000000040138e38 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x0000000040138e38 ic_is_mgmt_hwdecr_enabled + *fill* 0x0000000040138e45 0x3 + .text.ic_register_pm_tx_null_cb + 0x0000000040138e48 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x0000000040138e48 ic_register_pm_tx_null_cb + .text.ic_register_net80211_tx_cb + 0x0000000040138e5c 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x0000000040138e5c ic_register_net80211_tx_cb + .text.ic_register_timer_cb + 0x0000000040138e70 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x0000000040138e70 ic_register_timer_cb + .text.ic_enable_sniffer + 0x0000000040138e84 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x0000000040138e84 ic_enable_sniffer + *fill* 0x0000000040138e8e 0x2 + .text.ic_disable_sniffer + 0x0000000040138e90 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x0000000040138e90 ic_disable_sniffer + *fill* 0x0000000040138e9a 0x2 + .text.ic_set_vif + 0x0000000040138e9c 0x1bf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x22b (size before relaxing) + 0x0000000040138ec0 ic_set_vif + *fill* 0x000000004013905b 0x1 + .text.ic_get_next_tbtt + 0x000000004013905c 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x000000004013905c ic_get_next_tbtt + *fill* 0x0000000040139066 0x2 + .text.ic_del_rx_ba + 0x0000000040139068 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x0000000040139068 ic_del_rx_ba + *fill* 0x0000000040139073 0x1 + .text.ic_reset_rx_ba + 0x0000000040139074 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x1b (size before relaxing) + 0x0000000040139074 ic_reset_rx_ba + *fill* 0x0000000040139088 0x0 + .text.ic_add_rx_ba + 0x0000000040139088 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x20 (size before relaxing) + 0x0000000040139088 ic_add_rx_ba + *fill* 0x00000000401390a1 0x3 + .text.ic_reset_tbtt + 0x00000000401390a4 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0xf (size before relaxing) + 0x00000000401390a4 ic_reset_tbtt + *fill* 0x00000000401390ac 0x0 + .text.ic_del_key_all + 0x00000000401390ac 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x00000000401390ac ic_del_key_all + *fill* 0x00000000401390b9 0x3 + .text.ic_del_key + 0x00000000401390bc 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x28 (size before relaxing) + 0x00000000401390bc ic_del_key + .text.ic_set_ac_param + 0x00000000401390dc 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x1e (size before relaxing) + 0x00000000401390dc ic_set_ac_param + *fill* 0x00000000401390f3 0x1 + .text.ic_ampdu_op + 0x00000000401390f4 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x2c (size before relaxing) + 0x00000000401390f4 ic_ampdu_op + *fill* 0x0000000040139111 0x3 + .text.ic_set_trc + 0x0000000040139114 0xac /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0xd0 (size before relaxing) + 0x0000000040139118 ic_set_trc + .text.ic_deinit + 0x00000000401391c0 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x2f (size before relaxing) + 0x00000000401391c0 ic_deinit + *fill* 0x00000000401391d3 0x1 + .text.ic_init 0x00000000401391d4 0x5b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x9a (size before relaxing) + 0x00000000401391dc ic_init + *fill* 0x000000004013922f 0x1 + .text.ic_enable + 0x0000000040139230 0x36 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x4a (size before relaxing) + 0x0000000040139234 ic_enable + *fill* 0x0000000040139266 0x2 + .text.ic_disable + 0x0000000040139268 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x38 (size before relaxing) + 0x0000000040139268 ic_disable + .text.ic_enable_rx + 0x0000000040139294 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x23 (size before relaxing) + 0x0000000040139294 ic_enable_rx + *fill* 0x00000000401392af 0x1 + .text.ic_disable_rx + 0x00000000401392b0 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x23 (size before relaxing) + 0x00000000401392b0 ic_disable_rx + *fill* 0x00000000401392cb 0x1 + .text.ic_set_beacon_int + 0x00000000401392cc 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x00000000401392cc ic_set_beacon_int + *fill* 0x00000000401392d6 0x2 + .text.ic_set_mac + 0x00000000401392d8 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x00000000401392d8 ic_set_mac + *fill* 0x00000000401392e5 0x3 + .text.ic_set_bssid + 0x00000000401392e8 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x00000000401392e8 ic_set_bssid + *fill* 0x00000000401392f5 0x3 + .text.ic_set_current_channel + 0x00000000401392f8 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x13 (size before relaxing) + 0x00000000401392f8 ic_set_current_channel + *fill* 0x0000000040139304 0x0 + .text.ic_get_trc + 0x0000000040139304 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x17 (size before relaxing) + 0x0000000040139304 ic_get_trc + *fill* 0x0000000040139314 0x0 + .text.ic_get_pp_hdl + 0x0000000040139314 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x0000000040139314 ic_get_pp_hdl + *fill* 0x000000004013931e 0x2 + .text.ic_set_rx_policy_ubssid_check + 0x0000000040139320 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x1c (size before relaxing) + 0x0000000040139320 ic_set_rx_policy_ubssid_check + .text.ic_set_rx_policy + 0x0000000040139338 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x1d (size before relaxing) + 0x0000000040139338 ic_set_rx_policy + *fill* 0x000000004013934e 0x2 + .text.ic_set_sta_auth_flag + 0x0000000040139350 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x0000000040139350 ic_set_sta_auth_flag + *fill* 0x000000004013935b 0x1 + .text.ic_set_interface + 0x000000004013935c 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x000000004013935c ic_set_interface + *fill* 0x0000000040139369 0x3 + .text.ic_trc_update_ifx_phy_mode + 0x000000004013936c 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x13 (size before relaxing) + 0x000000004013936c ic_trc_update_ifx_phy_mode + *fill* 0x000000004013937b 0x1 + .text.ic_stop_hw_txq + 0x000000004013937c 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x000000004013937c ic_stop_hw_txq + *fill* 0x0000000040139386 0x2 + .text.ic_stop_sw_txq + 0x0000000040139388 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x2a (size before relaxing) + 0x000000004013938c ic_stop_sw_txq + *fill* 0x00000000401393a2 0x2 + .text.ic_txq_empty + 0x00000000401393a4 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x00000000401393a4 ic_txq_empty + *fill* 0x00000000401393ae 0x2 + .text.ic_create_wifi_task + 0x00000000401393b0 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x00000000401393b0 ic_create_wifi_task + *fill* 0x00000000401393ba 0x2 + .text.ic_delete_wifi_task + 0x00000000401393bc 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x00000000401393bc ic_delete_wifi_task + *fill* 0x00000000401393c6 0x2 + .text.lmacIsIdle + 0x00000000401393c8 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x00000000401393cc lmacIsIdle + *fill* 0x00000000401393e7 0x1 + .text.lmacGetTxFrame + 0x00000000401393e8 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x1e (size before relaxing) + 0x00000000401393e8 lmacGetTxFrame + *fill* 0x0000000040139402 0x2 + .text.lmacIsLongFrame + 0x0000000040139404 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x0000000040139408 lmacIsLongFrame + *fill* 0x0000000040139425 0x3 + .text.lmacSetTxFrame + 0x0000000040139428 0x142 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x166 (size before relaxing) + 0x0000000040139430 lmacSetTxFrame + *fill* 0x000000004013956a 0x2 + .text.lmacSetAcParam + 0x000000004013956c 0x4d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x51 (size before relaxing) + 0x000000004013956c lmacSetAcParam + *fill* 0x00000000401395b9 0x3 + .text.lmacInitAc + 0x00000000401395bc 0x3d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x41 (size before relaxing) + 0x00000000401395bc lmacInitAc + *fill* 0x00000000401395f9 0x3 + .text.lmacInit + 0x00000000401395fc 0x9c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xd8 (size before relaxing) + 0x0000000040139604 lmacInit + .text.lmacEndRetryAMPDUFail + 0x0000000040139698 0x73 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x8f (size before relaxing) + 0x000000004013969c lmacEndRetryAMPDUFail + *fill* 0x000000004013970b 0x1 + .text.lmacDiscardMSDU + 0x000000004013970c 0xd3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xdb (size before relaxing) + 0x0000000040139718 lmacDiscardMSDU + *fill* 0x00000000401397df 0x1 + .text.lmacRetryTxFrame + 0x00000000401397e0 0xb3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xc6 (size before relaxing) + 0x00000000401397f0 lmacRetryTxFrame + *fill* 0x0000000040139893 0x1 + .text.lmacDiscardFrameExchangeSequence + 0x0000000040139894 0xb3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xce (size before relaxing) + 0x00000000401398a4 lmacDiscardFrameExchangeSequence + *fill* 0x0000000040139947 0x1 + .text.lmacProcessTxSuccess + 0x0000000040139948 0xfa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x116 (size before relaxing) + 0x0000000040139958 lmacProcessTxSuccess + *fill* 0x0000000040139a42 0x2 + .text.lmacProcessShortRetryFail + 0x0000000040139a44 0x213 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x256 (size before relaxing) + 0x0000000040139a64 lmacProcessShortRetryFail + *fill* 0x0000000040139c57 0x1 + .text.lmacProcessCtsTimeout + 0x0000000040139c58 0x60 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x78 (size before relaxing) + 0x0000000040139c60 lmacProcessCtsTimeout + .text.lmacProcessLongRetryFail + 0x0000000040139cb8 0x18f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x1bf (size before relaxing) + 0x0000000040139cc8 lmacProcessLongRetryFail + *fill* 0x0000000040139e47 0x1 + .text.lmacProcessCollision + 0x0000000040139e48 0xc4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xec (size before relaxing) + 0x0000000040139e58 lmacProcessCollision + .text.lmacProcessCollisions_task + 0x0000000040139f0c 0x44 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x60 (size before relaxing) + 0x0000000040139f0c lmacProcessCollisions_task + .text.lmacProcessAckTimeout + 0x0000000040139f50 0xc4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xec (size before relaxing) + 0x0000000040139f60 lmacProcessAckTimeout + .text.lmacProcessTxRtsError + 0x000000004013a014 0xba /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xe2 (size before relaxing) + 0x000000004013a024 lmacProcessTxRtsError + *fill* 0x000000004013a0ce 0x2 + .text.lmacProcessTxseckiderr + 0x000000004013a0d0 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x16 (size before relaxing) + 0x000000004013a0d0 lmacProcessTxseckiderr + *fill* 0x000000004013a0e2 0x2 + .text.lmacProcessTxError + 0x000000004013a0e4 0x9c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xc4 (size before relaxing) + 0x000000004013a0ec lmacProcessTxError + .text.lmacProcessTxComplete + 0x000000004013a180 0x158 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x1b0 (size before relaxing) + 0x000000004013a198 lmacProcessTxComplete + .text.lmacRxDone + 0x000000004013a2d8 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x20 (size before relaxing) + 0x000000004013a2dc lmacRxDone + .text.lmacDisableTransmit + 0x000000004013a2f4 0x89 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xb1 (size before relaxing) + 0x000000004013a2f8 lmacDisableTransmit + *fill* 0x000000004013a37d 0x3 + .text.lmacProcessTxTimeout + 0x000000004013a380 0x3e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x52 (size before relaxing) + 0x000000004013a380 lmacProcessTxTimeout + *fill* 0x000000004013a3be 0x2 + .text.lmac_stop_hw_txq + 0x000000004013a3c0 0x8b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xa7 (size before relaxing) + 0x000000004013a3c8 lmac_stop_hw_txq + *fill* 0x000000004013a44b 0x1 + .text.hal_pm_unblock_txq + 0x000000004013a44c 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x23 (size before relaxing) + *fill* 0x000000004013a46b 0x1 + .text.pm_incr_active_cnt + 0x000000004013a46c 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + *fill* 0x000000004013a48d 0x3 + .text.pm_incr_coex_active_cnt + 0x000000004013a490 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x23 (size before relaxing) + *fill* 0x000000004013a4af 0x1 + .text.pm_disable_active_timer + 0x000000004013a4b0 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x29 (size before relaxing) + *fill* 0x000000004013a4d1 0x3 + .text.pm_mac_sleep_deinit + 0x000000004013a4d4 0x36 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x46 (size before relaxing) + *fill* 0x000000004013a50a 0x2 + .text.pm_mac_sleep_init + 0x000000004013a50c 0x8c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xa4 (size before relaxing) + .text.pm_beacon_monitor_tbtt_timeout + 0x000000004013a598 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x000000004013a5a7 0x1 + .text.pm_beacon_monitor_timeout + 0x000000004013a5a8 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x000000004013a5b7 0x1 + .text.pm_connectionless_wake_window_timeout + 0x000000004013a5b8 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x000000004013a5c7 0x1 + .text.pm_connectionless_wake_interval_timeout + 0x000000004013a5c8 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x000000004013a5d7 0x1 + .text.pm_disconnected_sleep_delay_timeout + 0x000000004013a5d8 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x000000004013a5e7 0x1 + .text.pm_coex_slice_wifi_timeout + 0x000000004013a5e8 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x000000004013a5f7 0x1 + .text.pm_sleep_delay_timeout + 0x000000004013a5f8 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x000000004013a607 0x1 + .text.pm_active_timeout + 0x000000004013a608 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x000000004013a617 0x1 + .text.pm_dream_timeout + 0x000000004013a618 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x000000004013a627 0x1 + .text.pm_tbtt_timeout + 0x000000004013a628 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x000000004013a637 0x1 + .text.pm_is_sleeping + 0x000000004013a638 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x26 (size before relaxing) + 0x000000004013a638 pm_is_sleeping + *fill* 0x000000004013a65a 0x2 + .text.pm_is_open + 0x000000004013a65c 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xf (size before relaxing) + 0x000000004013a65c pm_is_open + *fill* 0x000000004013a667 0x1 + .text.pm_allow_tx + 0x000000004013a668 0x60 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x70 (size before relaxing) + 0x000000004013a668 pm_allow_tx + .text.pm_noise_check_disable + 0x000000004013a6c8 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x17 (size before relaxing) + 0x000000004013a6c8 pm_noise_check_disable + *fill* 0x000000004013a6db 0x1 + .text.pm_noise_check_enable + 0x000000004013a6dc 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x17 (size before relaxing) + 0x000000004013a6dc pm_noise_check_enable + *fill* 0x000000004013a6ef 0x1 + .text.pm_enable_sleep_delay_timer + 0x000000004013a6f0 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x43 (size before relaxing) + 0x000000004013a6f4 pm_enable_sleep_delay_timer + *fill* 0x000000004013a72b 0x1 + .text.pm_disable_disconnected_sleep_delay_timer + 0x000000004013a72c 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x30 (size before relaxing) + 0x000000004013a730 pm_disable_disconnected_sleep_delay_timer + .text.pm_enable_disconnected_sleep_delay_timer + 0x000000004013a754 0x47 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x57 (size before relaxing) + 0x000000004013a754 pm_enable_disconnected_sleep_delay_timer + *fill* 0x000000004013a79b 0x1 + .text.pm_noise_check + 0x000000004013a79c 0x5e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x7a (size before relaxing) + 0x000000004013a79c pm_noise_check + *fill* 0x000000004013a7fa 0x2 + .text.pm_register_pm_tx_null_cb + 0x000000004013a7fc 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x000000004013a800 pm_register_pm_tx_null_cb + *fill* 0x000000004013a80f 0x1 + .text.pm_send_nullfunc + 0x000000004013a810 0x3a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x42 (size before relaxing) + 0x000000004013a810 pm_send_nullfunc + *fill* 0x000000004013a84a 0x2 + .text.pm_mac_wakeup + 0x000000004013a84c 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x000000004013a850 pm_mac_wakeup + *fill* 0x000000004013a85b 0x1 + .text.pm_mac_sleep + 0x000000004013a85c 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x000000004013a860 pm_mac_sleep + *fill* 0x000000004013a86b 0x1 + .text.pm_disconnected_wake + 0x000000004013a86c 0x35 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x3d (size before relaxing) + 0x000000004013a870 pm_disconnected_wake + *fill* 0x000000004013a8a1 0x3 + .text.pm_disconnected_sleep + 0x000000004013a8a4 0x86 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x9e (size before relaxing) + 0x000000004013a8ac pm_disconnected_sleep + *fill* 0x000000004013a92a 0x2 + .text.pm_wake_up + 0x000000004013a92c 0x3e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x4d (size before relaxing) + 0x000000004013a934 pm_wake_up + *fill* 0x000000004013a96a 0x2 + .text.pm_send_probe_start + 0x000000004013a96c 0x35 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x45 (size before relaxing) + 0x000000004013a96c pm_send_probe_start + *fill* 0x000000004013a9a1 0x3 + .text.pm_off_channel + 0x000000004013a9a4 0xb9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xd9 (size before relaxing) + 0x000000004013a9a4 pm_off_channel + *fill* 0x000000004013aa5d 0x3 + .text.pm_wake_done + 0x000000004013aa60 0x50 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x5b (size before relaxing) + 0x000000004013aa64 pm_wake_done + *fill* 0x000000004013aab0 0x0 + .text.pm_coex_separate_connectionless_window + 0x000000004013aab0 0x2af /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x2bf (size before relaxing) + 0x000000004013aabc pm_coex_separate_connectionless_window + *fill* 0x000000004013ad5f 0x1 + .text.pm_go_to_sleep + 0x000000004013ad60 0x64 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x7f (size before relaxing) + 0x000000004013ad6c pm_go_to_sleep + *fill* 0x000000004013adc4 0x0 + .text.pm_go_to_wake + 0x000000004013adc4 0x5f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x86 (size before relaxing) + 0x000000004013adc4 pm_go_to_wake + *fill* 0x000000004013ae23 0x1 + .text.pm_set_next_tbtt + 0x000000004013ae24 0x188 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x19c (size before relaxing) + 0x000000004013ae30 pm_set_next_tbtt + .text.pm_mesh_set_next_tbtt + 0x000000004013afac 0x62 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x7e (size before relaxing) + 0x000000004013afac pm_mesh_set_next_tbtt + *fill* 0x000000004013b00e 0x2 + .text.pm_beacon_timestamp_statistic + 0x000000004013b010 0x31 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x39 (size before relaxing) + 0x000000004013b014 pm_beacon_timestamp_statistic + *fill* 0x000000004013b041 0x3 + .text.pm_is_in_wifi_slice_threshold + 0x000000004013b044 0x45 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x4d (size before relaxing) + 0x000000004013b044 pm_is_in_wifi_slice_threshold + *fill* 0x000000004013b089 0x3 + .text.pm_prepare_tx_null$constprop$20 + 0x000000004013b08c 0x41 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x51 (size before relaxing) + *fill* 0x000000004013b0cd 0x3 + .text.pm_update_params + 0x000000004013b0d0 0x81 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x9d (size before relaxing) + 0x000000004013b0d0 pm_update_params + *fill* 0x000000004013b151 0x3 + .text.pm_on_channel + 0x000000004013b154 0x87 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x9f (size before relaxing) + 0x000000004013b158 pm_on_channel + *fill* 0x000000004013b1db 0x1 + .text.pm_send_probe_stop + 0x000000004013b1dc 0x5c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x7c (size before relaxing) + 0x000000004013b1dc pm_send_probe_stop + .text.pm_coex_schm_process + 0x000000004013b238 0x199 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x1d5 (size before relaxing) + 0x000000004013b240 pm_coex_schm_process + *fill* 0x000000004013b3d1 0x3 + .text.pm_coex_schm_process_restart + 0x000000004013b3d4 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x14 (size before relaxing) + 0x000000004013b3d4 pm_coex_schm_process_restart + .text.pm_coex_tbtt_process + 0x000000004013b3e4 0xcc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x107 (size before relaxing) + 0x000000004013b3e4 pm_coex_tbtt_process + *fill* 0x000000004013b4b0 0x0 + .text.pm_coex_slice_timeout_process + 0x000000004013b4b0 0xba /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xf2 (size before relaxing) + 0x000000004013b4b0 pm_coex_slice_timeout_process + *fill* 0x000000004013b56a 0x2 + .text.pm_active_timeout_process + 0x000000004013b56c 0x5d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x85 (size before relaxing) + 0x000000004013b56c pm_active_timeout_process + *fill* 0x000000004013b5c9 0x3 + .text.pm_dream_timeout_process + 0x000000004013b5cc 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x22 (size before relaxing) + 0x000000004013b5cc pm_dream_timeout_process + *fill* 0x000000004013b5e2 0x2 + .text.pm_sleep_delay_timeout_process + 0x000000004013b5e4 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x2a (size before relaxing) + 0x000000004013b5e4 pm_sleep_delay_timeout_process + *fill* 0x000000004013b606 0x2 + .text.pm_disconnected_sleep_delay_timeout_process + 0x000000004013b608 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x2a (size before relaxing) + 0x000000004013b608 pm_disconnected_sleep_delay_timeout_process + *fill* 0x000000004013b627 0x1 + .text.pm_tx_data_process + 0x000000004013b628 0x18c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x1ef (size before relaxing) + 0x000000004013b628 pm_tx_data_process + *fill* 0x000000004013b7b4 0x0 + .text.pm_tx_data_done_process + 0x000000004013b7b4 0x6c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x98 (size before relaxing) + 0x000000004013b7b8 pm_tx_data_done_process + .text.pm_tx_null_data_done_process + 0x000000004013b820 0x198 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x1e0 (size before relaxing) + 0x000000004013b820 pm_tx_null_data_done_process + .text.pm_send_sleep_null_cb + 0x000000004013b9b8 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x16 (size before relaxing) + 0x000000004013b9b8 pm_send_sleep_null_cb + *fill* 0x000000004013b9ca 0x2 + .text.pm_send_wake_null_cb + 0x000000004013b9cc 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x16 (size before relaxing) + 0x000000004013b9cc pm_send_wake_null_cb + *fill* 0x000000004013b9de 0x2 + .text.pm_on_coex_schm_process_restart + 0x000000004013b9e0 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xf (size before relaxing) + 0x000000004013b9e0 pm_on_coex_schm_process_restart + *fill* 0x000000004013b9e8 0x0 + .text.pm_on_coex_schm_status_config + 0x000000004013b9e8 0x50 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x5c (size before relaxing) + 0x000000004013b9e8 pm_on_coex_schm_status_config + .text.pm_on_coex_start + 0x000000004013ba38 0x36 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x52 (size before relaxing) + 0x000000004013ba3c pm_on_coex_start + *fill* 0x000000004013ba6e 0x2 + .text.pm_on_probe_resp_rx + 0x000000004013ba70 0x66 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x76 (size before relaxing) + 0x000000004013ba74 pm_on_probe_resp_rx + *fill* 0x000000004013bad6 0x2 + .text.pm_on_data_tx + 0x000000004013bad8 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x17 (size before relaxing) + 0x000000004013bad8 pm_on_data_tx + *fill* 0x000000004013bae8 0x0 + .text.pm_on_data_tx_done + 0x000000004013bae8 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x18 (size before relaxing) + 0x000000004013bae8 pm_on_data_tx_done + *fill* 0x000000004013baf9 0x3 + .text.pm_disconnected_start + 0x000000004013bafc 0x56 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x7a (size before relaxing) + 0x000000004013bafc pm_disconnected_start + *fill* 0x000000004013bb52 0x2 + .text.pm_disconnected_stop + 0x000000004013bb54 0x37 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x53 (size before relaxing) + 0x000000004013bb54 pm_disconnected_stop + *fill* 0x000000004013bb8b 0x1 + .text.pm_start + 0x000000004013bb8c 0x16b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x1c6 (size before relaxing) + 0x000000004013bb90 pm_start + *fill* 0x000000004013bcf7 0x1 + .text.pm_stop 0x000000004013bcf8 0x1ca /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x252 (size before relaxing) + 0x000000004013bd08 pm_stop + *fill* 0x000000004013bec2 0x2 + .text.pm_attach + 0x000000004013bec4 0x142 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x18e (size before relaxing) + 0x000000004013bef4 pm_attach + *fill* 0x000000004013c006 0x2 + .text.pm_deattach + 0x000000004013c008 0x85 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xb1 (size before relaxing) + 0x000000004013c008 pm_deattach + *fill* 0x000000004013c08d 0x3 + .text.pm_enable_sta_disconnected_power_management + 0x000000004013c090 0x2d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x31 (size before relaxing) + 0x000000004013c090 pm_enable_sta_disconnected_power_management + *fill* 0x000000004013c0bd 0x3 + .text.pp_delete_task_manually + 0x000000004013c0c0 0x41 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x45 (size before relaxing) + *fill* 0x000000004013c101 0x3 + .text.xswap 0x000000004013c104 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x22 (size before relaxing) + 0x000000004013c104 xswap + *fill* 0x000000004013c11e 0x2 + .text.pp_register_net80211_tx_cb + 0x000000004013c120 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004013c124 pp_register_net80211_tx_cb + *fill* 0x000000004013c133 0x1 + .text.pp_register_config_cb + 0x000000004013c134 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004013c138 pp_register_config_cb + *fill* 0x000000004013c147 0x1 + .text.pp_register_timer_cb + 0x000000004013c148 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004013c14c pp_register_timer_cb + *fill* 0x000000004013c15b 0x1 + .text.pp_register_michael_mic_failure_cb + 0x000000004013c15c 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004013c160 pp_register_michael_mic_failure_cb + *fill* 0x000000004013c16f 0x1 + .text.pp_default_event_handler + 0x000000004013c170 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x2c (size before relaxing) + 0x000000004013c178 pp_default_event_handler + *fill* 0x000000004013c191 0x3 + .text.ppRegisterRxCallback + 0x000000004013c194 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x23 (size before relaxing) + 0x000000004013c194 ppRegisterRxCallback + *fill* 0x000000004013c1b3 0x1 + .text.ppRegisterTxCallback + 0x000000004013c1b4 0x49 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x4d (size before relaxing) + 0x000000004013c1b4 ppRegisterTxCallback + *fill* 0x000000004013c1fd 0x3 + .text.ppRecycleRxPkt + 0x000000004013c200 0x5b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x6f (size before relaxing) + 0x000000004013c208 ppRecycleRxPkt + *fill* 0x000000004013c25b 0x1 + .text.ppCheckTxQIdle + 0x000000004013c25c 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x1f (size before relaxing) + 0x000000004013c25c ppCheckTxQIdle + *fill* 0x000000004013c277 0x1 + .text.ppCheckTxConnTrafficIdle + 0x000000004013c278 0xb0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xcc (size before relaxing) + 0x000000004013c278 ppCheckTxConnTrafficIdle + .text.pp_coex_tx_release + 0x000000004013c328 0x5b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x5f (size before relaxing) + 0x000000004013c328 pp_coex_tx_release + *fill* 0x000000004013c383 0x1 + .text.ppAssembleMicHdr + 0x000000004013c384 0x88 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x9c (size before relaxing) + 0x000000004013c384 ppAssembleMicHdr + .text.ppCalTkipMic + 0x000000004013c40c 0x104 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x138 (size before relaxing) + 0x000000004013c410 ppCalTkipMic + .text.ppClearRxFragment + 0x000000004013c510 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x3a (size before relaxing) + 0x000000004013c514 ppClearRxFragment + *fill* 0x000000004013c53a 0x2 + .text.ppDequeueTxQ + 0x000000004013c53c 0x35 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x39 (size before relaxing) + 0x000000004013c53c ppDequeueTxQ + *fill* 0x000000004013c571 0x3 + .text.ppFillAMPDUBar + 0x000000004013c574 0xfa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x11a (size before relaxing) + 0x000000004013c578 ppFillAMPDUBar + *fill* 0x000000004013c66e 0x2 + .text.ppCheckTxAMPDUlength + 0x000000004013c670 0x81 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x89 (size before relaxing) + 0x000000004013c670 ppCheckTxAMPDUlength + *fill* 0x000000004013c6f1 0x3 + .text.ppReSendBar + 0x000000004013c6f4 0x126 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x162 (size before relaxing) + 0x000000004013c6f8 ppReSendBar + *fill* 0x000000004013c81a 0x2 + .text.ppRecordBarRRC + 0x000000004013c81c 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x22 (size before relaxing) + 0x000000004013c81c ppRecordBarRRC + *fill* 0x000000004013c83a 0x2 + .text.ppTxqUpdateBitmap + 0x000000004013c83c 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x2e (size before relaxing) + 0x000000004013c83c ppTxqUpdateBitmap + *fill* 0x000000004013c866 0x2 + .text.ppEnqueueTxDone + 0x000000004013c868 0x5b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x73 (size before relaxing) + 0x000000004013c870 ppEnqueueTxDone + *fill* 0x000000004013c8c3 0x1 + .text.ppDequeueTxDone_Locked + 0x000000004013c8c4 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x29 (size before relaxing) + 0x000000004013c8c4 ppDequeueTxDone_Locked + *fill* 0x000000004013c8e9 0x3 + .text.ppProcTxDone + 0x000000004013c8ec 0x156 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x182 (size before relaxing) + 0x000000004013c904 ppProcTxDone + *fill* 0x000000004013ca42 0x2 + .text.pp_create_task + 0x000000004013ca44 0x189 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x1d1 (size before relaxing) + 0x000000004013ca70 pp_create_task + *fill* 0x000000004013cbcd 0x3 + .text.pp_deattach + 0x000000004013cbd0 0x36 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x42 (size before relaxing) + 0x000000004013cbd0 pp_deattach + *fill* 0x000000004013cc06 0x2 + .text.ppGetTxframe + 0x000000004013cc08 0x8f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x93 (size before relaxing) + 0x000000004013cc10 ppGetTxframe + *fill* 0x000000004013cc97 0x1 + .text.ppInitTxq + 0x000000004013cc98 0x62 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x66 (size before relaxing) + 0x000000004013cc98 ppInitTxq + *fill* 0x000000004013ccfa 0x2 + .text.ppEnableQueue + 0x000000004013ccfc 0x4f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x53 (size before relaxing) + 0x000000004013ccfc ppEnableQueue + *fill* 0x000000004013cd4b 0x1 + .text.ppTxqEmpty + 0x000000004013cd4c 0x5a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x5e (size before relaxing) + 0x000000004013cd50 ppTxqEmpty + *fill* 0x000000004013cda6 0x2 + .text.pp_delete_task + 0x000000004013cda8 0x79 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x94 (size before relaxing) + 0x000000004013cdac pp_delete_task + *fill* 0x000000004013ce21 0x3 + .text.ppMapWaitTxq + 0x000000004013ce24 0xda /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xea (size before relaxing) + 0x000000004013ce28 ppMapWaitTxq + *fill* 0x000000004013cefe 0x2 + .text.ppProcessWaitingQueue + 0x000000004013cf00 0x59 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x65 (size before relaxing) + 0x000000004013cf04 ppProcessWaitingQueue + *fill* 0x000000004013cf59 0x3 + .text.ppDisableQueue + 0x000000004013cf5c 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x37 (size before relaxing) + 0x000000004013cf5c ppDisableQueue + *fill* 0x000000004013cf8b 0x1 + .text.ppCheckTxIdle + 0x000000004013cf8c 0xb0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xbc (size before relaxing) + 0x000000004013cf8c ppCheckTxIdle + .text.ppSelectNextQueue + 0x000000004013d03c 0x8e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x9a (size before relaxing) + 0x000000004013d03c ppSelectNextQueue + *fill* 0x000000004013d0ca 0x2 + .text.ppDiscardMPDU + 0x000000004013d0cc 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x32 (size before relaxing) + 0x000000004013d0cc ppDiscardMPDU + *fill* 0x000000004013d0f6 0x2 + .text.ppPrepareBarFrame + 0x000000004013d0f8 0xcc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xe8 (size before relaxing) + 0x000000004013d108 ppPrepareBarFrame + .text.pp_attach + 0x000000004013d1c4 0xd1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x108 (size before relaxing) + 0x000000004013d1cc pp_attach + *fill* 0x000000004013d295 0x3 + .text.ppAssembleAMPDU + 0x000000004013d298 0x9b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xbf (size before relaxing) + 0x000000004013d2a0 ppAssembleAMPDU + *fill* 0x000000004013d333 0x1 + .text.ppAMPDU2Normal + 0x000000004013d334 0xaf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xc3 (size before relaxing) + 0x000000004013d338 ppAMPDU2Normal + *fill* 0x000000004013d3e3 0x1 + .text.ppDirectRecycleAmpdu + 0x000000004013d3e4 0x51 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x5d (size before relaxing) + 0x000000004013d3e8 ppDirectRecycleAmpdu + *fill* 0x000000004013d435 0x3 + .text.ppClearTxq + 0x000000004013d438 0x40 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x53 (size before relaxing) + 0x000000004013d438 ppClearTxq + *fill* 0x000000004013d478 0x0 + .text.pp_stop_sw_txq + 0x000000004013d478 0x65 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x83 (size before relaxing) + 0x000000004013d478 pp_stop_sw_txq + *fill* 0x000000004013d4dd 0x3 + .text.ppRecycleAmpdu + 0x000000004013d4e0 0x70 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x88 (size before relaxing) + 0x000000004013d4e0 ppRecycleAmpdu + .text.ppRegressAmpdu + 0x000000004013d550 0x7c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x8c (size before relaxing) + 0x000000004013d550 ppRegressAmpdu + .text.ppGetTaskHdl + 0x000000004013d5cc 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xe (size before relaxing) + 0x000000004013d5cc ppGetTaskHdl + *fill* 0x000000004013d5d6 0x2 + .text.dbg_lmac_ps_statis_reset + 0x000000004013d5d8 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x1a (size before relaxing) + 0x000000004013d5d8 dbg_lmac_ps_statis_reset + *fill* 0x000000004013d5ea 0x2 + .text.pp_timer_beacon_monitor_tbtt + 0x000000004013d5ec 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + *fill* 0x000000004013d5ff 0x1 + .text.pp_timer_beacon_monitor + 0x000000004013d600 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + *fill* 0x000000004013d613 0x1 + .text.pp_timer_connectionless_wake_window + 0x000000004013d614 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x000000004013d623 0x1 + .text.pp_timer_connectionless_wake_interval + 0x000000004013d624 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x000000004013d633 0x1 + .text.pp_timer_disconnected_sleep_delay + 0x000000004013d634 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x000000004013d643 0x1 + .text.pp_timer_sleep_delay + 0x000000004013d644 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x000000004013d653 0x1 + .text.pp_timer_coex_slice + 0x000000004013d654 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x000000004013d663 0x1 + .text.pp_timer_active + 0x000000004013d664 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x000000004013d673 0x1 + .text.pp_timer_dream + 0x000000004013d674 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x000000004013d683 0x1 + .text.pp_timer_noise_check + 0x000000004013d684 0xf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x000000004013d693 0x1 + .text.pp_timer_register_post_cb + 0x000000004013d694 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x000000004013d698 pp_timer_register_post_cb + *fill* 0x000000004013d6a7 0x1 + .text.pp_timer_process + 0x000000004013d6a8 0x1a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x1e (size before relaxing) + 0x000000004013d6a8 pp_timer_process + *fill* 0x000000004013d6c2 0x2 + .text.RC_GetDuration + 0x000000004013d6c4 0x75 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + *fill* 0x000000004013d739 0x3 + .text.RC_GetAckTime + 0x000000004013d73c 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x1b (size before relaxing) + 0x000000004013d73c RC_GetAckTime + *fill* 0x000000004013d753 0x1 + .text.RC_GetCtsTime + 0x000000004013d754 0x49 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x4d (size before relaxing) + 0x000000004013d754 RC_GetCtsTime + *fill* 0x000000004013d79d 0x3 + .text.RC_GetBlockAckTime + 0x000000004013d7a0 0x46 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x52 (size before relaxing) + 0x000000004013d7a0 RC_GetBlockAckTime + *fill* 0x000000004013d7e6 0x2 + .text.rc11GRate2SchedIdx + 0x000000004013d7e8 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc11BRate2SchedIdx + 0x000000004013d804 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rx11NRate2AMPDULimit + 0x000000004013d820 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004013d824 rx11NRate2AMPDULimit + *fill* 0x000000004013d83f 0x1 + .text.rcUpdateAMPDUParam + 0x000000004013d840 0xc2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xc6 (size before relaxing) + 0x000000004013d850 rcUpdateAMPDUParam + *fill* 0x000000004013d902 0x2 + .text.rcGet11NHighestRateIdx + 0x000000004013d904 0x6c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x70 (size before relaxing) + 0x000000004013d908 rcGet11NHighestRateIdx + .text.rcGet11GHighestRateIdx + 0x000000004013d970 0x60 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x64 (size before relaxing) + 0x000000004013d974 rcGet11GHighestRateIdx + .text.rcGet11BHighestRateIdx + 0x000000004013d9d0 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x40 (size before relaxing) + 0x000000004013d9d4 rcGet11BHighestRateIdx + .text.rcGetHighestRateIdx + 0x000000004013da0c 0x42 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x52 (size before relaxing) + 0x000000004013da0c rcGetHighestRateIdx + *fill* 0x000000004013da4e 0x2 + .text.rcClearCurSched + 0x000000004013da50 0x31 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004013da54 rcClearCurSched + *fill* 0x000000004013da81 0x3 + .text.rcClearCurAMPDUSched + 0x000000004013da84 0x33 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x37 (size before relaxing) + 0x000000004013da84 rcClearCurAMPDUSched + *fill* 0x000000004013dab7 0x1 + .text.rcUpdatePhyMode + 0x000000004013dab8 0x2dc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x314 (size before relaxing) + 0x000000004013db00 rcUpdatePhyMode + .text.rcLowerSched + 0x000000004013dd94 0x7a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x9a (size before relaxing) + 0x000000004013dd94 rcLowerSched + *fill* 0x000000004013de0e 0x2 + .text.rcUpSched + 0x000000004013de10 0x6e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x8e (size before relaxing) + 0x000000004013de10 rcUpSched + *fill* 0x000000004013de7e 0x2 + .text.rcTxUpdatePer + 0x000000004013de80 0x76 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x7e (size before relaxing) + 0x000000004013de84 rcTxUpdatePer + *fill* 0x000000004013def6 0x2 + .text.trc_onAmpduOp + 0x000000004013def8 0xe1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xe9 (size before relaxing) + 0x000000004013def8 trc_onAmpduOp + *fill* 0x000000004013dfd9 0x3 + .text.rcGetAmpduSched + 0x000000004013dfdc 0x8c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x98 (size before relaxing) + 0x000000004013dfe8 rcGetAmpduSched + .text.rcGetRate + 0x000000004013e068 0x8f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x9f (size before relaxing) + 0x000000004013e074 rcGetRate + *fill* 0x000000004013e0f7 0x1 + .text.rssi_margin + 0x000000004013e0f8 0x140 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004013e0fc rssi_margin + .text.TRC_PER_IS_GOOD + 0x000000004013e238 0x4d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x51 (size before relaxing) + 0x000000004013e238 TRC_PER_IS_GOOD + *fill* 0x000000004013e285 0x3 + .text.TRC_AMPDU_PER_DOWN_THRESHOLD + 0x000000004013e288 0x72 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x86 (size before relaxing) + 0x000000004013e28c TRC_AMPDU_PER_DOWN_THRESHOLD + *fill* 0x000000004013e2fa 0x2 + .text.rcAmpduLowerRate + 0x000000004013e2fc 0xdb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x126 (size before relaxing) + 0x000000004013e2fc rcAmpduLowerRate + *fill* 0x000000004013e3d7 0x1 + .text.TRC_AMPDU_PER_UP_THRESHOLD + 0x000000004013e3d8 0x5d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x69 (size before relaxing) + 0x000000004013e3dc TRC_AMPDU_PER_UP_THRESHOLD + *fill* 0x000000004013e435 0x3 + .text.rcUpdateRate + 0x000000004013e438 0x1fe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x252 (size before relaxing) + 0x000000004013e444 rcUpdateRate + *fill* 0x000000004013e636 0x2 + .text.rcReachRetryLimit + 0x000000004013e638 0xc6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xee (size before relaxing) + 0x000000004013e650 rcReachRetryLimit + *fill* 0x000000004013e6fe 0x2 + .text.rcAttach + 0x000000004013e700 0x46 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x92 (size before relaxing) + 0x000000004013e700 rcAttach + *fill* 0x000000004013e746 0x2 + .text.trc_onPPTxDone + 0x000000004013e748 0x89 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xa1 (size before relaxing) + 0x000000004013e748 trc_onPPTxDone + *fill* 0x000000004013e7d1 0x3 + .text.rc_disable_trc + 0x000000004013e7d4 0x5e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x6e (size before relaxing) + 0x000000004013e7dc rc_disable_trc + *fill* 0x000000004013e832 0x2 + .text.rc_disable_trc_by_interface + 0x000000004013e834 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x22 (size before relaxing) + 0x000000004013e834 rc_disable_trc_by_interface + *fill* 0x000000004013e852 0x2 + .text.rc_get_trc_by_index + 0x000000004013e854 0x5a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x62 (size before relaxing) + 0x000000004013e854 rc_get_trc_by_index + *fill* 0x000000004013e8ae 0x2 + .text.trc_init + 0x000000004013e8b0 0xd8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xf0 (size before relaxing) + 0x000000004013e8b4 trc_init + .text.trc_update_ifx_phy_mode + 0x000000004013e988 0x94 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xb4 (size before relaxing) + 0x000000004013e98c trc_update_ifx_phy_mode + .text.trc_deinit + 0x000000004013ea1c 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x30 (size before relaxing) + 0x000000004013ea1c trc_deinit + .text.rc_set_per_conn_fix_rate + 0x000000004013ea44 0x7d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x81 (size before relaxing) + 0x000000004013ea4c rc_set_per_conn_fix_rate + *fill* 0x000000004013eac1 0x3 + .text.rc_enable_trc + 0x000000004013eac4 0xd0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xf8 (size before relaxing) + 0x000000004013eacc rc_enable_trc + .text.wDev_SetCurChannel + 0x000000004013eb94 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x21 (size before relaxing) + 0x000000004013eb94 wDev_SetCurChannel + *fill* 0x000000004013ebb1 0x3 + .text.wDev_Set_Beacon_Int + 0x000000004013ebb4 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004013ebb8 wDev_Set_Beacon_Int + *fill* 0x000000004013ebc5 0x3 + .text.wDev_Reset_TBTT + 0x000000004013ebc8 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x12 (size before relaxing) + 0x000000004013ebc8 wDev_Reset_TBTT + *fill* 0x000000004013ebd2 0x2 + .text.wDev_reset_bcnSendTick + 0x000000004013ebd4 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004013ebd8 wDev_reset_bcnSendTick + *fill* 0x000000004013ebe7 0x1 + .text.wDev_Get_Next_TBTT + 0x000000004013ebe8 0x31 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x41 (size before relaxing) + 0x000000004013ebe8 wDev_Get_Next_TBTT + *fill* 0x000000004013ec19 0x3 + .text.wdev_mac_sleep_init + 0x000000004013ec1c 0x52 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x66 (size before relaxing) + 0x000000004013ec2c wdev_mac_sleep_init + *fill* 0x000000004013ec6e 0x2 + .text.wdev_mac_sleep_deinit + 0x000000004013ec70 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x26 (size before relaxing) + 0x000000004013ec70 wdev_mac_sleep_deinit + *fill* 0x000000004013ec8e 0x2 + .text.wdev_csi_hw_bug_check + 0x000000004013ec90 0x6e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x76 (size before relaxing) + 0x000000004013ec94 wdev_csi_hw_bug_check + *fill* 0x000000004013ecfe 0x2 + .text.wdev_csi_rx_process + 0x000000004013ed00 0xf2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x10e (size before relaxing) + 0x000000004013ed10 wdev_csi_rx_process + *fill* 0x000000004013edf2 0x2 + .text.wdev_set_promis_misc_pkt + 0x000000004013edf4 0x78 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x88 (size before relaxing) + 0x000000004013edfc wdev_set_promis_misc_pkt + .text.wdev_pop_promis_misc_buf + 0x000000004013ee6c 0x72 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x76 (size before relaxing) + 0x000000004013ee70 wdev_pop_promis_misc_buf + *fill* 0x000000004013eede 0x2 + .text.wdev_process_misc_pkt + 0x000000004013eee0 0x88 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x9c (size before relaxing) + 0x000000004013eee0 wdev_process_misc_pkt + .text.wdev_set_promis_misc_buf + 0x000000004013ef68 0x6d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x81 (size before relaxing) + 0x000000004013ef6c wdev_set_promis_misc_buf + *fill* 0x000000004013efd5 0x3 + .text.wdev_set_promis_ctrl_pkt + 0x000000004013efd8 0x35 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3d (size before relaxing) + 0x000000004013efdc wdev_set_promis_ctrl_pkt + *fill* 0x000000004013f00d 0x3 + .text.wdev_set_promis + 0x000000004013f010 0x6e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xb2 (size before relaxing) + 0x000000004013f018 wdev_set_promis + *fill* 0x000000004013f07e 0x2 + .text.wDev_SnifferRxAmpdu + 0x000000004013f080 0x72 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x82 (size before relaxing) + 0x000000004013f080 wDev_SnifferRxAmpdu + *fill* 0x000000004013f0f2 0x2 + .text.wDev_SnifferRxData + 0x000000004013f0f4 0x264 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x2a0 (size before relaxing) + 0x000000004013f0f4 wDev_SnifferRxData + .text.wDev_IndicateCtrlFrame + 0x000000004013f358 0x104 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x128 (size before relaxing) + 0x000000004013f35c wDev_IndicateCtrlFrame + .text.wDev_nan_is_in_dw + 0x000000004013f45c 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004013f460 wDev_nan_is_in_dw + .text.wDev_Rxbuf_Deinit + 0x000000004013f474 0x61 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x71 (size before relaxing) + 0x000000004013f478 wDev_Rxbuf_Deinit + *fill* 0x000000004013f4d5 0x3 + .text.wDev_Rxbuf_Init + 0x000000004013f4d8 0x1f9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x251 (size before relaxing) + 0x000000004013f4fc wDev_Rxbuf_Init + *fill* 0x000000004013f6d1 0x3 + .text.wDev_disable_low_rate + 0x000000004013f6d4 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x000000004013f6d4 wDev_disable_low_rate + *fill* 0x000000004013f6dc 0x0 + .text.wDev_enable_low_rate + 0x000000004013f6dc 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x000000004013f6dc wDev_enable_low_rate + *fill* 0x000000004013f6e4 0x0 + .text.wDev_is_low_rate_enable + 0x000000004013f6e4 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004013f6e8 wDev_is_low_rate_enable + *fill* 0x000000004013f6f5 0x3 + .text.wDev_Insert_KeyEntry + 0x000000004013f6f8 0x82 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x96 (size before relaxing) + 0x000000004013f6f8 wDev_Insert_KeyEntry + *fill* 0x000000004013f77a 0x2 + .text.wDev_remove_KeyEntry + 0x000000004013f77c 0x37 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3f (size before relaxing) + 0x000000004013f77c wDev_remove_KeyEntry + *fill* 0x000000004013f7b3 0x1 + .text.wDev_remove_KeyEntry_all_cnx + 0x000000004013f7b4 0x2a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x35 (size before relaxing) + 0x000000004013f7b4 wDev_remove_KeyEntry_all_cnx + *fill* 0x000000004013f7de 0x2 + .text.wDev_Crypto_Disable + 0x000000004013f7e0 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x2a (size before relaxing) + 0x000000004013f7e0 wDev_Crypto_Disable + *fill* 0x000000004013f802 0x2 + .text.wdev_is_mgmt_hwdecr_enabled + 0x000000004013f804 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x14 (size before relaxing) + 0x000000004013f804 wdev_is_mgmt_hwdecr_enabled + *fill* 0x000000004013f811 0x3 + .text.config_get_wifi_ampdu_rx_enable + 0x000000004013f814 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004013f814 config_get_wifi_ampdu_rx_enable + *fill* 0x000000004013f81e 0x2 + .text.config_get_wifi_ampdu_tx_enable + 0x000000004013f820 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004013f820 config_get_wifi_ampdu_tx_enable + *fill* 0x000000004013f82a 0x2 + .text.config_get_wifi_amsdu_tx_enable + 0x000000004013f82c 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x000000004013f82c config_get_wifi_amsdu_tx_enable + *fill* 0x000000004013f837 0x1 + .text.config_get_wifi_nvs_enable + 0x000000004013f838 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004013f838 config_get_wifi_nvs_enable + *fill* 0x000000004013f842 0x2 + .text.config_get_wifi_rx_baw + 0x000000004013f844 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004013f844 config_get_wifi_rx_baw + *fill* 0x000000004013f84e 0x2 + .text.config_get_wifi_static_rx_buffer_num + 0x000000004013f850 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004013f850 config_get_wifi_static_rx_buffer_num + *fill* 0x000000004013f85a 0x2 + .text.config_get_wifi_dynamic_rx_buffer_num + 0x000000004013f85c 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004013f85c config_get_wifi_dynamic_rx_buffer_num + *fill* 0x000000004013f866 0x2 + .text.config_get_wifi_tx_buffer_type + 0x000000004013f868 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004013f868 config_get_wifi_tx_buffer_type + *fill* 0x000000004013f872 0x2 + .text.config_get_wifi_static_tx_buffer_num + 0x000000004013f874 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004013f874 config_get_wifi_static_tx_buffer_num + *fill* 0x000000004013f87e 0x2 + .text.config_get_wifi_dynamic_tx_buffer_num + 0x000000004013f880 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004013f880 config_get_wifi_dynamic_tx_buffer_num + *fill* 0x000000004013f88a 0x2 + .text.config_get_wifi_cache_tx_buffer_num + 0x000000004013f88c 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004013f88c config_get_wifi_cache_tx_buffer_num + *fill* 0x000000004013f896 0x2 + .text.config_get_wifi_task_stack_size + 0x000000004013f898 0x25 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x2d (size before relaxing) + 0x000000004013f89c config_get_wifi_task_stack_size + *fill* 0x000000004013f8bd 0x3 + .text.config_get_wifi_task_core_id + 0x000000004013f8c0 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004013f8c0 config_get_wifi_task_core_id + *fill* 0x000000004013f8ca 0x2 + .text.config_get_wifi_beacon_max_len + 0x000000004013f8cc 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004013f8cc config_get_wifi_beacon_max_len + *fill* 0x000000004013f8d6 0x2 + .text.config_get_wifi_mgmt_sbuf_num + 0x000000004013f8d8 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004013f8d8 config_get_wifi_mgmt_sbuf_num + *fill* 0x000000004013f8e2 0x2 + .text.config_get_wifi_feature_capabilities + 0x000000004013f8e4 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x12 (size before relaxing) + 0x000000004013f8e4 config_get_wifi_feature_capabilities + *fill* 0x000000004013f8f2 0x2 + .text.config_get_wifi_espnow_max_encrypt_num + 0x000000004013f8f4 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x000000004013f8f4 config_get_wifi_espnow_max_encrypt_num + *fill* 0x000000004013f8ff 0x1 + .text.config_is_cache_tx_buf_enabled + 0x000000004013f900 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x12 (size before relaxing) + 0x000000004013f900 config_is_cache_tx_buf_enabled + *fill* 0x000000004013f90e 0x2 + .text.config_get_wifi_sta_disconnected_pm + 0x000000004013f910 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x000000004013f910 config_get_wifi_sta_disconnected_pm + *fill* 0x000000004013f91b 0x1 + .text.hal_agreement_add_rx_ba + 0x000000004013f91c 0x115 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + 0x121 (size before relaxing) + 0x000000004013f93c hal_agreement_add_rx_ba + *fill* 0x000000004013fa31 0x3 + .text.hal_agreement_clr_rx_ba + 0x000000004013fa34 0x82 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + 0xa2 (size before relaxing) + 0x000000004013fa38 hal_agreement_clr_rx_ba + *fill* 0x000000004013fab6 0x2 + .text.hal_agreement_del_rx_ba + 0x000000004013fab8 0x70 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + 0x90 (size before relaxing) + 0x000000004013fabc hal_agreement_del_rx_ba + .text.hal_ba_session_store + 0x000000004013fb28 0x3e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + 0x46 (size before relaxing) + 0x000000004013fb28 hal_ba_session_store + *fill* 0x000000004013fb66 0x2 + .text.hal_ba_session_restore + 0x000000004013fb68 0x67 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + 0x77 (size before relaxing) + 0x000000004013fb68 hal_ba_session_restore + *fill* 0x000000004013fbcf 0x1 + .text.hal_crypto_clr_key_entry + 0x000000004013fbd0 0xb8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0x000000004013fbfc hal_crypto_clr_key_entry + .text.hal_crypto_set_key_entry + 0x000000004013fc88 0x10c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0x134 (size before relaxing) + 0x000000004013fca0 hal_crypto_set_key_entry + .text.hal_crypto_is_key_valid + 0x000000004013fd94 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0x1b (size before relaxing) + 0x000000004013fd94 hal_crypto_is_key_valid + *fill* 0x000000004013fdab 0x1 + .text.hal_crypto_get_key_entry + 0x000000004013fdac 0xa4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0xbc (size before relaxing) + 0x000000004013fdb8 hal_crypto_get_key_entry + .text.hal_crypto_init + 0x000000004013fe50 0x4d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0x000000004013fe68 hal_crypto_init + *fill* 0x000000004013fe9d 0x3 + .text.hal_crypto_mgmt_rx_enabled + 0x000000004013fea0 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0x23 (size before relaxing) + 0x000000004013fea0 hal_crypto_mgmt_rx_enabled + *fill* 0x000000004013febb 0x1 + .text.hal_crypto_enable + 0x000000004013febc 0xa3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0xbb (size before relaxing) + 0x000000004013fecc hal_crypto_enable + *fill* 0x000000004013ff5f 0x1 + .text.hal_crypto_disable + 0x000000004013ff60 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0x4c (size before relaxing) + 0x000000004013ff60 hal_crypto_disable + .text.mac_tx_set_plcp0 + 0x000000004013ff9c 0xbc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0xcc (size before relaxing) + 0x000000004013ffb8 mac_tx_set_plcp0 + .text.mac_tx_set_duration + 0x0000000040140058 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x000000004014005c mac_tx_set_duration + .text.hal_mac_tx_set_ppdu + 0x0000000040140094 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x46 (size before relaxing) + 0x0000000040140094 hal_mac_tx_set_ppdu + *fill* 0x00000000401400b6 0x2 + .text.hal_mac_txq_disable + 0x00000000401400b8 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x2c (size before relaxing) + 0x00000000401400b8 hal_mac_txq_disable + .text.hal_mac_set_txq_invalid + 0x00000000401400dc 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x2c (size before relaxing) + 0x00000000401400dc hal_mac_set_txq_invalid + .text.hal_mac_is_txq_enabled + 0x0000000040140100 0x19 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x1d (size before relaxing) + 0x0000000040140100 hal_mac_is_txq_enabled + *fill* 0x0000000040140119 0x3 + .text.hal_now 0x000000004014011c 0x43 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x5b (size before relaxing) + 0x000000004014011c hal_now + *fill* 0x000000004014015f 0x1 + .text.hal_mac_tx_set_cca + 0x0000000040140160 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x2b (size before relaxing) + 0x0000000040140164 hal_mac_tx_set_cca + *fill* 0x0000000040140187 0x1 + .text.hal_mac_disable_low_rate + 0x0000000040140188 0x6f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x77 (size before relaxing) + 0x00000000401401a0 hal_mac_disable_low_rate + *fill* 0x00000000401401f7 0x1 + .text.hal_mac_enable_low_rate + 0x00000000401401f8 0x58 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x70 (size before relaxing) + 0x00000000401401fc hal_mac_enable_low_rate + .text.mac_rxbuf_init + 0x0000000040140250 0x7e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x86 (size before relaxing) + 0x0000000040140270 mac_rxbuf_init + *fill* 0x00000000401402ce 0x2 + .text.hal_disable_mac + 0x00000000401402d0 0x4a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x00000000401402e0 hal_disable_mac + *fill* 0x000000004014031a 0x2 + .text.hal_enable_mac + 0x000000004014031c 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x37 (size before relaxing) + 0x000000004014031c hal_enable_mac + *fill* 0x0000000040140347 0x1 + .text.mac_txrx_init + 0x0000000040140348 0x261 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x281 (size before relaxing) + 0x00000000401403a0 mac_txrx_init + *fill* 0x00000000401405a9 0x3 + .text.hal_mac_set_rxq_policy + 0x00000000401405ac 0x45 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x00000000401405b0 hal_mac_set_rxq_policy + *fill* 0x00000000401405f1 0x3 + .text.mac_last_rxbuf_init + 0x00000000401405f4 0x79 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x7d (size before relaxing) + 0x0000000040140610 mac_last_rxbuf_init + *fill* 0x000000004014066d 0x3 + .text.hal_deinit + 0x0000000040140670 0x65 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x6d (size before relaxing) + 0x000000004014067c hal_deinit + *fill* 0x00000000401406d5 0x3 + .text.hal_mac_set_addr + 0x00000000401406d8 0x6a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x72 (size before relaxing) + 0x00000000401406dc hal_mac_set_addr + *fill* 0x0000000040140742 0x2 + .text.hal_mac_set_bssid + 0x0000000040140744 0xa3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0xb3 (size before relaxing) + 0x0000000040140754 hal_mac_set_bssid + *fill* 0x00000000401407e7 0x1 + .text.hal_mac_rx_set_policy + 0x00000000401407e8 0xc6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0xde (size before relaxing) + 0x00000000401407f0 hal_mac_rx_set_policy + *fill* 0x00000000401408ae 0x2 + .text.hal_init + 0x00000000401408b0 0xc6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x10e (size before relaxing) + 0x00000000401408bc hal_init + *fill* 0x0000000040140976 0x2 + .text.hal_mac_tsf_get_time + 0x0000000040140978 0xcc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0xd4 (size before relaxing) + 0x0000000040140988 hal_mac_tsf_get_time + .text.hal_get_tsf_time + 0x0000000040140a44 0x73 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x7b (size before relaxing) + 0x0000000040140a50 hal_get_tsf_time + *fill* 0x0000000040140ab7 0x1 + .text.hal_mac_tsf_reset + 0x0000000040140ab8 0x169 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x179 (size before relaxing) + 0x0000000040140ae4 hal_mac_tsf_reset + *fill* 0x0000000040140c21 0x3 + .text.mac_tx_set_plcp1 + 0x0000000040140c24 0x90 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x98 (size before relaxing) + 0x0000000040140c2c mac_tx_set_plcp1 + .text.mac_tx_set_plcp2 + 0x0000000040140cb4 0x7e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x92 (size before relaxing) + 0x0000000040140cc8 mac_tx_set_plcp2 + *fill* 0x0000000040140d32 0x2 + .text.mac_tx_set_htsig + 0x0000000040140d34 0x135 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x15d (size before relaxing) + 0x0000000040140d3c mac_tx_set_htsig + *fill* 0x0000000040140e69 0x3 + .text.hal_mac_get_txq_state + 0x0000000040140e6c 0x45 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x0000000040140e74 hal_mac_get_txq_state + *fill* 0x0000000040140eb1 0x3 + .text.hal_mac_clr_txq_state + 0x0000000040140eb4 0x5f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x0000000040140ec0 hal_mac_clr_txq_state + *fill* 0x0000000040140f13 0x1 + .text.hal_mac_get_txq_pmd + 0x0000000040140f14 0x54 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x0000000040140f18 hal_mac_get_txq_pmd + .text.hal_attenna_init + 0x0000000040140f68 0x80 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x84 (size before relaxing) + 0x0000000040140f6c hal_attenna_init + .text.hal_mac_rate_autoack_init + 0x0000000040140fe8 0x79 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x8d (size before relaxing) + 0x0000000040141008 hal_mac_rate_autoack_init + *fill* 0x0000000040141061 0x3 + .text.hal_sniffer_enable + 0x0000000040141064 0x89 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + 0x8d (size before relaxing) + 0x0000000040141068 hal_sniffer_enable + *fill* 0x00000000401410ed 0x3 + .text.hal_sniffer_disable + 0x00000000401410f0 0x8b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + 0x8f (size before relaxing) + 0x00000000401410f4 hal_sniffer_disable + *fill* 0x000000004014117b 0x1 + .text.hal_sniffer_rx_set_promis + 0x000000004014117c 0xbb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + 0xc7 (size before relaxing) + 0x0000000040141184 hal_sniffer_rx_set_promis + *fill* 0x0000000040141237 0x1 + .text.hal_sniffer_rx_clr_statistics + 0x0000000040141238 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + 0x37 (size before relaxing) + 0x000000004014123c hal_sniffer_rx_clr_statistics + *fill* 0x0000000040141267 0x1 + .text.hal_enable_sta_tsf + 0x0000000040141268 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + 0x23 (size before relaxing) + 0x000000004014126c hal_enable_sta_tsf + *fill* 0x0000000040141287 0x1 + .text.hal_disable_sta_tsf + 0x0000000040141288 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + 0x23 (size before relaxing) + 0x000000004014128c hal_disable_sta_tsf + *fill* 0x00000000401412a7 0x1 + .text.load_partitions + 0x00000000401412a8 0x198 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x19c (size before relaxing) + .text.ensure_partitions_loaded + 0x0000000040141440 0x54 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x58 (size before relaxing) + .text.iterator_create + 0x0000000040141494 0x24 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_iterator_release + 0x00000000401414b8 0xe esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x00000000401414b8 esp_partition_iterator_release + *fill* 0x00000000401414c6 0x2 + .text.esp_partition_next + 0x00000000401414c8 0x8c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x00000000401414c8 esp_partition_next + .text.esp_partition_find + 0x0000000040141554 0x3c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x44 (size before relaxing) + 0x0000000040141554 esp_partition_find + .text.esp_partition_get + 0x0000000040141590 0x1c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x0000000040141590 esp_partition_get + .text.esp_partition_find_first + 0x00000000401415ac 0x24 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x2c (size before relaxing) + 0x00000000401415ac esp_partition_find_first + .text.esp_partition_write + 0x00000000401415d0 0x6d esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x00000000401415d0 esp_partition_write + *fill* 0x000000004014163d 0x3 + .text.esp_partition_read_raw + 0x0000000040141640 0x41 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x0000000040141640 esp_partition_read_raw + *fill* 0x0000000040141681 0x3 + .text.esp_partition_write_raw + 0x0000000040141684 0x45 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x0000000040141684 esp_partition_write_raw + *fill* 0x00000000401416c9 0x3 + .text.esp_partition_erase_range + 0x00000000401416cc 0x5d esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x00000000401416cc esp_partition_erase_range + *fill* 0x0000000040141729 0x3 + .text.esp_partition_mmap + 0x000000004014172c 0x66 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x6a (size before relaxing) + 0x000000004014172c esp_partition_mmap + *fill* 0x0000000040141792 0x2 + .text.esp_partition_munmap + 0x0000000040141794 0xa esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0xe (size before relaxing) + 0x0000000040141794 esp_partition_munmap + *fill* 0x000000004014179e 0x2 + .text.esp_partition_read + 0x00000000401417a0 0x82 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x86 (size before relaxing) + 0x00000000401417a0 esp_partition_read + *fill* 0x0000000040141822 0x2 + .text.esp_partition_main_flash_region_safe + 0x0000000040141824 0x39 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x3d (size before relaxing) + 0x0000000040141824 esp_partition_main_flash_region_safe + *fill* 0x000000004014185d 0x3 + .text.esp_ota_get_running_partition + 0x0000000040141860 0x80 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x8f (size before relaxing) + 0x0000000040141860 esp_ota_get_running_partition + *fill* 0x00000000401418e0 0x0 + .text.clk_hal_lp_slow_get_freq_hz + 0x00000000401418e0 0x3d esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x00000000401418e0 clk_hal_lp_slow_get_freq_hz + *fill* 0x000000004014191d 0x3 + .text.clk_hal_xtal_get_freq_mhz + 0x0000000040141920 0x36 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x0000000040141920 clk_hal_xtal_get_freq_mhz + *fill* 0x0000000040141956 0x2 + .text.clk_hal_apll_get_freq_hz + 0x0000000040141958 0xfe esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x106 (size before relaxing) + 0x0000000040141958 clk_hal_apll_get_freq_hz + *fill* 0x0000000040141a56 0x2 + .text.clk_hal_soc_root_get_freq_mhz + 0x0000000040141a58 0x6c esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x70 (size before relaxing) + 0x0000000040141a58 clk_hal_soc_root_get_freq_mhz + .text.clk_hal_cpu_get_freq_hz + 0x0000000040141ac4 0xc2 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x0000000040141ac4 clk_hal_cpu_get_freq_hz + *fill* 0x0000000040141b86 0x2 + .text.clk_hal_ahb_get_freq_hz + 0x0000000040141b88 0x2d esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x31 (size before relaxing) + 0x0000000040141b88 clk_hal_ahb_get_freq_hz + *fill* 0x0000000040141bb5 0x3 + .text.clk_hal_apb_get_freq_hz + 0x0000000040141bb8 0xa esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0xd (size before relaxing) + 0x0000000040141bb8 clk_hal_apb_get_freq_hz + *fill* 0x0000000040141bc2 0x2 + .text.mpi_ll_write_to_mem_block + 0x0000000040141bc4 0x3d esp-idf/hal/libhal.a(mpi_hal.c.obj) + *fill* 0x0000000040141c01 0x3 + .text.mpi_ll_clear_power_control_bit + 0x0000000040141c04 0x1a esp-idf/hal/libhal.a(mpi_hal.c.obj) + *fill* 0x0000000040141c1e 0x2 + .text.mpi_ll_set_power_control_bit + 0x0000000040141c20 0x1a esp-idf/hal/libhal.a(mpi_hal.c.obj) + *fill* 0x0000000040141c3a 0x2 + .text.mpi_ll_read_from_mem_block + 0x0000000040141c3c 0x3e esp-idf/hal/libhal.a(mpi_hal.c.obj) + *fill* 0x0000000040141c7a 0x2 + .text.mpi_hal_enable_hardware_hw_op + 0x0000000040141c7c 0x17 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x0000000040141c7c mpi_hal_enable_hardware_hw_op + *fill* 0x0000000040141c93 0x1 + .text.mpi_hal_disable_hardware_hw_op + 0x0000000040141c94 0x8 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0xb (size before relaxing) + 0x0000000040141c94 mpi_hal_disable_hardware_hw_op + *fill* 0x0000000040141c9c 0x0 + .text.mpi_hal_clear_interrupt + 0x0000000040141c9c 0xf esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x0000000040141c9c mpi_hal_clear_interrupt + *fill* 0x0000000040141cab 0x1 + .text.mpi_hal_set_mode + 0x0000000040141cac 0xd esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x0000000040141cac mpi_hal_set_mode + *fill* 0x0000000040141cb9 0x3 + .text.mpi_hal_write_to_mem_block + 0x0000000040141cbc 0x12 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x16 (size before relaxing) + 0x0000000040141cbc mpi_hal_write_to_mem_block + *fill* 0x0000000040141cce 0x2 + .text.mpi_hal_write_at_offset + 0x0000000040141cd0 0x14 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x0000000040141cd0 mpi_hal_write_at_offset + .text.mpi_hal_write_m_prime + 0x0000000040141ce4 0xd esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x0000000040141ce4 mpi_hal_write_m_prime + *fill* 0x0000000040141cf1 0x3 + .text.mpi_hal_write_rinv + 0x0000000040141cf4 0xf esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x0000000040141cf4 mpi_hal_write_rinv + *fill* 0x0000000040141d03 0x1 + .text.mpi_hal_start_op + 0x0000000040141d04 0x1a esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x0000000040141d04 mpi_hal_start_op + *fill* 0x0000000040141d1e 0x2 + .text.mpi_hal_wait_op_complete + 0x0000000040141d20 0x14 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x17 (size before relaxing) + 0x0000000040141d20 mpi_hal_wait_op_complete + *fill* 0x0000000040141d34 0x0 + .text.mpi_hal_read_result_hw_op + 0x0000000040141d34 0x13 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x17 (size before relaxing) + 0x0000000040141d34 mpi_hal_read_result_hw_op + *fill* 0x0000000040141d47 0x1 + .text.sha_ll_busy + 0x0000000040141d48 0x48 esp-idf/hal/libhal.a(sha_hal.c.obj) + .text.sha_ll_read_digest + 0x0000000040141d90 0x5a esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x5e (size before relaxing) + *fill* 0x0000000040141dea 0x2 + .text.sha_hal_wait_idle + 0x0000000040141dec 0xb esp-idf/hal/libhal.a(sha_hal.c.obj) + 0xe (size before relaxing) + 0x0000000040141dec sha_hal_wait_idle + *fill* 0x0000000040141df7 0x1 + .text.sha_hal_hash_block + 0x0000000040141df8 0x57 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x0000000040141df8 sha_hal_hash_block + *fill* 0x0000000040141e4f 0x1 + .text.sha_hal_read_digest + 0x0000000040141e50 0x60 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x64 (size before relaxing) + 0x0000000040141e50 sha_hal_read_digest + .text.aes_ll_write_key + 0x0000000040141eb0 0x5e esp-idf/hal/libhal.a(aes_hal.c.obj) + *fill* 0x0000000040141f0e 0x2 + .text.aes_hal_wait_idle + 0x0000000040141f10 0x11 esp-idf/hal/libhal.a(aes_hal.c.obj) + *fill* 0x0000000040141f21 0x3 + .text.aes_hal_setkey + 0x0000000040141f24 0x30 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x0000000040141f24 aes_hal_setkey + .text.aes_hal_transform_block + 0x0000000040141f54 0x46 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x4a (size before relaxing) + 0x0000000040141f54 aes_hal_transform_block + *fill* 0x0000000040141f9a 0x2 + .text.esp_dport_access_read_buffer + 0x0000000040141f9c 0x27 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + 0x0000000040141f9c esp_dport_access_read_buffer + *fill* 0x0000000040141fc3 0x1 + .text.esp_deep_sleep_register_hook + 0x0000000040141fc4 0x65 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x0000000040141fc4 esp_deep_sleep_register_hook + *fill* 0x0000000040142029 0x3 + .text.esp_crypto_mpi_lock_acquire + 0x000000004014202c 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x000000004014202c esp_crypto_mpi_lock_acquire + *fill* 0x000000004014203a 0x2 + .text.esp_crypto_mpi_lock_release + 0x000000004014203c 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x000000004014203c esp_crypto_mpi_lock_release + *fill* 0x000000004014204a 0x2 + .text.lib_printf + 0x000000004014204c 0x74 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.phy_printf + 0x00000000401420c0 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x00000000401420c0 phy_printf + *fill* 0x00000000401420ea 0x2 + .text.net80211_printf + 0x00000000401420ec 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x00000000401420ec net80211_printf + *fill* 0x0000000040142116 0x2 + .text.coexist_printf + 0x0000000040142118 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x0000000040142118 coexist_printf + *fill* 0x0000000040142142 0x2 + .text.tryget_socket_unconn_nouse + 0x0000000040142144 0x1c esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.free_socket_locked + 0x0000000040142160 0x4b esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x00000000401421ab 0x1 + .text.sock_inc_used_locked + 0x00000000401421ac 0x5d esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x0000000040142209 0x3 + .text.tryget_socket_unconn_locked + 0x000000004014220c 0x26 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x2a (size before relaxing) + *fill* 0x0000000040142232 0x2 + .text.sock_inc_used + 0x0000000040142234 0x4f esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x52 (size before relaxing) + *fill* 0x0000000040142283 0x1 + .text.tryget_socket_unconn + 0x0000000040142284 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .text.lwip_select_inc_sockets_used_set + 0x000000004014229c 0x5c esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x60 (size before relaxing) + .text.lwip_select_inc_sockets_used + 0x00000000401422f8 0x32 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x3a (size before relaxing) + *fill* 0x000000004014232a 0x2 + .text.lwip_link_select_cb + 0x000000004014232c 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_unlink_select_cb + 0x000000004014235c 0x6b esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x00000000401423c7 0x1 + .text.sockaddr_to_ipaddr_port + 0x00000000401423c8 0x7b esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x7f (size before relaxing) + *fill* 0x0000000040142443 0x1 + .text.lwip_sock_make_addr + 0x0000000040142444 0xf6 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xfa (size before relaxing) + *fill* 0x000000004014253a 0x2 + .text.lwip_recv_tcp_from + 0x000000004014253c 0x40 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x44 (size before relaxing) + .text.free_socket_free_elements + 0x000000004014257c 0x1f esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x26 (size before relaxing) + *fill* 0x000000004014259b 0x1 + .text.free_socket + 0x000000004014259c 0x28 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x34 (size before relaxing) + .text.done_socket + 0x00000000401425c4 0x82 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8a (size before relaxing) + *fill* 0x0000000040142646 0x2 + .text.tryget_socket + 0x0000000040142648 0x1a esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1e (size before relaxing) + *fill* 0x0000000040142662 0x2 + .text.get_socket + 0x0000000040142664 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .text.lwip_selscan + 0x000000004014267c 0x23a esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x246 (size before relaxing) + *fill* 0x00000000401428b6 0x2 + .text.lwip_select_dec_sockets_used + 0x00000000401428b8 0x4b esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4f (size before relaxing) + *fill* 0x0000000040142903 0x1 + .text.lwip_socket_drop_registered_memberships + 0x0000000040142904 0x6a esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x76 (size before relaxing) + *fill* 0x000000004014296e 0x2 + .text.lwip_socket_drop_registered_mld6_memberships + 0x0000000040142970 0x72 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x7a (size before relaxing) + *fill* 0x00000000401429e2 0x2 + .text.lwip_recv_tcp + 0x00000000401429e4 0x150 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x158 (size before relaxing) + .text.lwip_recvfrom_udp_raw + 0x0000000040142b34 0xdc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xe0 (size before relaxing) + .text.lwip_close + 0x0000000040142c10 0x85 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x99 (size before relaxing) + 0x0000000040142c10 lwip_close + *fill* 0x0000000040142c95 0x3 + .text.lwip_recvfrom + 0x0000000040142c98 0xc7 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xdf (size before relaxing) + 0x0000000040142c98 lwip_recvfrom + *fill* 0x0000000040142d5f 0x1 + .text.lwip_read + 0x0000000040142d60 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x0000000040142d60 lwip_read + *fill* 0x0000000040142d79 0x3 + .text.lwip_sendto + 0x0000000040142d7c 0x16e esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x19a (size before relaxing) + 0x0000000040142d7c lwip_sendto + *fill* 0x0000000040142eea 0x2 + .text.lwip_send + 0x0000000040142eec 0x85 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x99 (size before relaxing) + 0x0000000040142eec lwip_send + *fill* 0x0000000040142f71 0x3 + .text.lwip_write + 0x0000000040142f74 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x0000000040142f74 lwip_write + *fill* 0x0000000040142f89 0x3 + .text.lwip_select + 0x0000000040142f8c 0x3c1 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x411 (size before relaxing) + 0x0000000040142f8c lwip_select + *fill* 0x000000004014334d 0x3 + .text.lwip_ioctl + 0x0000000040143350 0x5a esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x62 (size before relaxing) + 0x0000000040143350 lwip_ioctl + *fill* 0x00000000401433aa 0x2 + .text.lwip_fcntl + 0x00000000401433ac 0xbf esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xcb (size before relaxing) + 0x00000000401433ac lwip_fcntl + *fill* 0x000000004014346b 0x1 + .text.tcpip_timeouts_mbox_fetch + 0x000000004014346c 0x36 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x42 (size before relaxing) + *fill* 0x00000000401434a2 0x2 + .text.tcpip_thread_handle_msg + 0x00000000401434a4 0x93 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x9b (size before relaxing) + *fill* 0x0000000040143537 0x1 + .text.tcpip_thread + 0x0000000040143538 0x3e esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x49 (size before relaxing) + *fill* 0x0000000040143576 0x2 + .text.tcpip_inpkt + 0x0000000040143578 0x52 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x5a (size before relaxing) + 0x0000000040143578 tcpip_inpkt + *fill* 0x00000000401435ca 0x2 + .text.tcpip_input + 0x00000000401435cc 0x2e esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x31 (size before relaxing) + 0x00000000401435cc tcpip_input + *fill* 0x00000000401435fa 0x2 + .text.tcpip_try_callback + 0x00000000401435fc 0x52 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x5a (size before relaxing) + 0x00000000401435fc tcpip_try_callback + *fill* 0x000000004014364e 0x2 + .text.tcpip_send_msg_wait_sem + 0x0000000040143650 0x50 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x54 (size before relaxing) + 0x0000000040143650 tcpip_send_msg_wait_sem + .text.tcpip_api_call + 0x00000000401436a0 0x41 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x49 (size before relaxing) + 0x00000000401436a0 tcpip_api_call + *fill* 0x00000000401436e1 0x3 + .text.tcpip_init + 0x00000000401436e4 0x46 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x4e (size before relaxing) + 0x00000000401436e4 tcpip_init + *fill* 0x000000004014372a 0x2 + .text.lwip_htonl + 0x000000004014372c 0x26 esp-idf/lwip/liblwip.a(def.c.obj) + 0x000000004014372c lwip_htonl + *fill* 0x0000000040143752 0x2 + .text.dns_setserver + 0x0000000040143754 0x3a esp-idf/lwip/liblwip.a(dns.c.obj) + 0x0000000040143754 dns_setserver + *fill* 0x000000004014378e 0x2 + .text.lwip_init + 0x0000000040143790 0x20 esp-idf/lwip/liblwip.a(init.c.obj) + 0x3b (size before relaxing) + 0x0000000040143790 lwip_init + *fill* 0x00000000401437b0 0x0 + .text.ip_input + 0x00000000401437b0 0x31 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x39 (size before relaxing) + 0x00000000401437b0 ip_input + *fill* 0x00000000401437e1 0x3 + .text.mem_malloc + 0x00000000401437e4 0x37 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x3f (size before relaxing) + 0x00000000401437e4 mem_malloc + *fill* 0x000000004014381b 0x1 + .text.mem_free + 0x000000004014381c 0x3e esp-idf/lwip/liblwip.a(mem.c.obj) + 0x000000004014381c mem_free + *fill* 0x000000004014385a 0x2 + .text.mem_calloc + 0x000000004014385c 0x11 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x000000004014385c mem_calloc + *fill* 0x000000004014386d 0x3 + .text.do_memp_malloc_pool + 0x0000000040143870 0x3d esp-idf/lwip/liblwip.a(memp.c.obj) + 0x48 (size before relaxing) + *fill* 0x00000000401438ad 0x3 + .text.do_memp_free_pool + 0x00000000401438b0 0x28 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x30 (size before relaxing) + .text.memp_malloc + 0x00000000401438d8 0x20 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x00000000401438d8 memp_malloc + .text.memp_free + 0x00000000401438f8 0x1c esp-idf/lwip/liblwip.a(memp.c.obj) + 0x00000000401438f8 memp_free + .text.netif_loopif_init + 0x0000000040143914 0x34 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_do_set_netmask + 0x0000000040143948 0x6a esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x00000000401439b2 0x2 + .text.netif_do_set_gw + 0x00000000401439b4 0x6c esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_do_ip_addr_changed + 0x0000000040143a20 0x1c esp-idf/lwip/liblwip.a(netif.c.obj) + 0x24 (size before relaxing) + .text.netif_issue_reports + 0x0000000040143a3c 0x4b esp-idf/lwip/liblwip.a(netif.c.obj) + 0x53 (size before relaxing) + *fill* 0x0000000040143a87 0x1 + .text.netif_do_set_ipaddr + 0x0000000040143a88 0x8d esp-idf/lwip/liblwip.a(netif.c.obj) + 0x91 (size before relaxing) + *fill* 0x0000000040143b15 0x3 + .text.netif_poll + 0x0000000040143b18 0xc3 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xd5 (size before relaxing) + 0x0000000040143b18 netif_poll + *fill* 0x0000000040143bdb 0x1 + .text.netif_set_default + 0x0000000040143bdc 0xa esp-idf/lwip/liblwip.a(netif.c.obj) + 0x0000000040143bdc netif_set_default + *fill* 0x0000000040143be6 0x2 + .text.netif_loop_output + 0x0000000040143be8 0xe8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x104 (size before relaxing) + 0x0000000040143be8 netif_loop_output + .text.netif_loop_output_ipv6 + 0x0000000040143cd0 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x0000000040143ce2 0x2 + .text.netif_loop_output_ipv4 + 0x0000000040143ce4 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x0000000040143cf6 0x2 + .text.netif_get_ip6_addr_match + 0x0000000040143cf8 0xa4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x0000000040143cf8 netif_get_ip6_addr_match + .text.netif_get_by_index + 0x0000000040143d9c 0x28 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x0000000040143d9c netif_get_by_index + .text.netif_add_ext_callback + 0x0000000040143dc4 0x39 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x0000000040143dc4 netif_add_ext_callback + *fill* 0x0000000040143dfd 0x3 + .text.netif_remove_ext_callback + 0x0000000040143e00 0x5e esp-idf/lwip/liblwip.a(netif.c.obj) + 0x0000000040143e00 netif_remove_ext_callback + *fill* 0x0000000040143e5e 0x2 + .text.netif_invoke_ext_callback + 0x0000000040143e60 0x35 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x0000000040143e60 netif_invoke_ext_callback + *fill* 0x0000000040143e95 0x3 + .text.netif_set_addr + 0x0000000040143e98 0xa6 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xae (size before relaxing) + 0x0000000040143e98 netif_set_addr + *fill* 0x0000000040143f3e 0x2 + .text.netif_add + 0x0000000040143f40 0x1fe esp-idf/lwip/liblwip.a(netif.c.obj) + 0x206 (size before relaxing) + 0x0000000040143f40 netif_add + *fill* 0x000000004014413e 0x2 + .text.netif_set_up + 0x0000000040144140 0x2e esp-idf/lwip/liblwip.a(netif.c.obj) + 0x36 (size before relaxing) + 0x0000000040144140 netif_set_up + *fill* 0x000000004014416e 0x2 + .text.netif_set_down + 0x0000000040144170 0x38 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x3c (size before relaxing) + 0x0000000040144170 netif_set_down + .text.netif_remove + 0x00000000401441a8 0x9d esp-idf/lwip/liblwip.a(netif.c.obj) + 0xa5 (size before relaxing) + 0x00000000401441a8 netif_remove + *fill* 0x0000000040144245 0x3 + .text.netif_set_link_up + 0x0000000040144248 0x36 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x42 (size before relaxing) + 0x0000000040144248 netif_set_link_up + *fill* 0x000000004014427e 0x2 + .text.netif_init + 0x0000000040144280 0x56 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x5e (size before relaxing) + 0x0000000040144280 netif_init + *fill* 0x00000000401442d6 0x2 + .text.netif_set_link_down + 0x00000000401442d8 0x2c esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000401442d8 netif_set_link_down + .text.netif_ip6_addr_set_parts + 0x0000000040144304 0x12a esp-idf/lwip/liblwip.a(netif.c.obj) + 0x12e (size before relaxing) + 0x0000000040144304 netif_ip6_addr_set_parts + *fill* 0x000000004014442e 0x2 + .text.netif_ip6_addr_set + 0x0000000040144430 0x43 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x0000000040144430 netif_ip6_addr_set + *fill* 0x0000000040144473 0x1 + .text.netif_ip6_addr_set_state + 0x0000000040144474 0xc0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xcc (size before relaxing) + 0x0000000040144474 netif_ip6_addr_set_state + .text.pbuf_add_header_impl + 0x0000000040144534 0x84 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_pool_is_empty + 0x00000000401445b8 0x3f esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4f (size before relaxing) + *fill* 0x00000000401445f7 0x1 + .text.pbuf_free_ooseq + 0x00000000401445f8 0x33 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x3b (size before relaxing) + *fill* 0x000000004014462b 0x1 + .text.pbuf_free_ooseq_callback + 0x000000004014462c 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0xb (size before relaxing) + *fill* 0x0000000040144634 0x0 + .text.pbuf_alloc_reference + 0x0000000040144634 0x48 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4c (size before relaxing) + 0x0000000040144634 pbuf_alloc_reference + .text.pbuf_alloced_custom + 0x000000004014467c 0x38 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x000000004014467c pbuf_alloced_custom + .text.pbuf_add_header + 0x00000000401446b4 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + 0x00000000401446b4 pbuf_add_header + .text.pbuf_add_header_force + 0x00000000401446c4 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + 0x00000000401446c4 pbuf_add_header_force + .text.pbuf_remove_header + 0x00000000401446d4 0x5a esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000401446d4 pbuf_remove_header + *fill* 0x000000004014472e 0x2 + .text.pbuf_header_impl + 0x0000000040144730 0x22 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x0000000040144752 0x2 + .text.pbuf_header_force + 0x0000000040144754 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x0000000040144754 pbuf_header_force + .text.pbuf_free + 0x0000000040144768 0xbd esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0xcd (size before relaxing) + 0x0000000040144768 pbuf_free + *fill* 0x0000000040144825 0x3 + .text.pbuf_alloc + 0x0000000040144828 0x154 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x160 (size before relaxing) + 0x0000000040144828 pbuf_alloc + .text.pbuf_realloc + 0x000000004014497c 0x9b esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x9e (size before relaxing) + 0x000000004014497c pbuf_realloc + *fill* 0x0000000040144a17 0x1 + .text.pbuf_free_header + 0x0000000040144a18 0x4c esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x50 (size before relaxing) + 0x0000000040144a18 pbuf_free_header + .text.pbuf_ref + 0x0000000040144a64 0x2e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x32 (size before relaxing) + 0x0000000040144a64 pbuf_ref + *fill* 0x0000000040144a92 0x2 + .text.pbuf_cat + 0x0000000040144a94 0x51 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x0000000040144a94 pbuf_cat + *fill* 0x0000000040144ae5 0x3 + .text.pbuf_chain + 0x0000000040144ae8 0x13 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x17 (size before relaxing) + 0x0000000040144ae8 pbuf_chain + *fill* 0x0000000040144afb 0x1 + .text.pbuf_copy_partial_pbuf + 0x0000000040144afc 0x11d esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x0000000040144afc pbuf_copy_partial_pbuf + *fill* 0x0000000040144c19 0x3 + .text.pbuf_copy + 0x0000000040144c1c 0x1f esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x0000000040144c1c pbuf_copy + *fill* 0x0000000040144c3b 0x1 + .text.pbuf_copy_partial + 0x0000000040144c3c 0x7e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x0000000040144c3c pbuf_copy_partial + *fill* 0x0000000040144cba 0x2 + .text.pbuf_skip + 0x0000000040144cbc 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x0000000040144cbc pbuf_skip + .text.pbuf_take + 0x0000000040144cd0 0x7a esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x0000000040144cd0 pbuf_take + *fill* 0x0000000040144d4a 0x2 + .text.pbuf_take_at + 0x0000000040144d4c 0x7e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x86 (size before relaxing) + 0x0000000040144d4c pbuf_take_at + *fill* 0x0000000040144dca 0x2 + .text.pbuf_clone + 0x0000000040144dcc 0x32 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x36 (size before relaxing) + 0x0000000040144dcc pbuf_clone + *fill* 0x0000000040144dfe 0x2 + .text.pbuf_try_get_at + 0x0000000040144e00 0x2e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x0000000040144e00 pbuf_try_get_at + *fill* 0x0000000040144e2e 0x2 + .text.pbuf_get_at + 0x0000000040144e30 0x18 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + 0x0000000040144e30 pbuf_get_at + .text.raw_input_local_match + 0x0000000040144e48 0xf6 esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x0000000040144f3e 0x2 + .text.raw_input + 0x0000000040144f40 0x106 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x0000000040144f40 raw_input + *fill* 0x0000000040145046 0x2 + .text.raw_sendto_if_src + 0x0000000040145048 0x24f esp-idf/lwip/liblwip.a(raw.c.obj) + 0x26b (size before relaxing) + 0x0000000040145048 raw_sendto_if_src + *fill* 0x0000000040145297 0x1 + .text.raw_sendto + 0x0000000040145298 0x135 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x0000000040145298 raw_sendto + *fill* 0x00000000401453cd 0x3 + .text.raw_send + 0x00000000401453d0 0x15 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000401453d0 raw_send + *fill* 0x00000000401453e5 0x3 + .text.raw_remove + 0x00000000401453e8 0x36 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x3a (size before relaxing) + 0x00000000401453e8 raw_remove + *fill* 0x000000004014541e 0x2 + .text.raw_netif_ip_addr_changed + 0x0000000040145420 0xd0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x0000000040145420 raw_netif_ip_addr_changed + .text.tcp_remove_listener + 0x00000000401454f0 0x2b esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000004014551b 0x1 + .text.tcp_listen_closed + 0x000000004014551c 0x45 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x49 (size before relaxing) + *fill* 0x0000000040145561 0x3 + .text.tcp_free_listen + 0x0000000040145564 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000004014558a 0x2 + .text.tcp_init + 0x000000004014558c 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000004014558c tcp_init + *fill* 0x00000000401455a3 0x1 + .text.tcp_free + 0x00000000401455a4 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000401455a4 tcp_free + *fill* 0x00000000401455ca 0x2 + .text.tcp_backlog_accepted + 0x00000000401455cc 0x4d esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000401455cc tcp_backlog_accepted + *fill* 0x0000000040145619 0x3 + .text.tcp_close_shutdown_fin + 0x000000004014561c 0x84 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8c (size before relaxing) + .text.tcp_handle_closepend + 0x00000000401456a0 0x29 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x00000000401456c9 0x3 + .text.tcp_update_rcv_ann_wnd + 0x00000000401456cc 0x73 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000401456cc tcp_update_rcv_ann_wnd + *fill* 0x000000004014573f 0x1 + .text.tcp_recved + 0x0000000040145740 0x5f esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x63 (size before relaxing) + 0x0000000040145740 tcp_recved + *fill* 0x000000004014579f 0x1 + .text.tcp_seg_free + 0x00000000401457a0 0x18 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1c (size before relaxing) + 0x00000000401457a0 tcp_seg_free + .text.tcp_segs_free + 0x00000000401457b8 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000401457b8 tcp_segs_free + *fill* 0x00000000401457cf 0x1 + .text.tcp_seg_copy + 0x00000000401457d0 0x36 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3a (size before relaxing) + 0x00000000401457d0 tcp_seg_copy + *fill* 0x0000000040145806 0x2 + .text.tcp_recv + 0x0000000040145808 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x0000000040145808 tcp_recv + *fill* 0x000000004014582a 0x2 + .text.tcp_sent + 0x000000004014582c 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000004014582c tcp_sent + *fill* 0x000000004014584e 0x2 + .text.tcp_err 0x0000000040145850 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x0000000040145850 tcp_err + *fill* 0x0000000040145872 0x2 + .text.tcp_poll + 0x0000000040145874 0x28 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x0000000040145874 tcp_poll + .text.tcp_next_iss + 0x000000004014589c 0x2d esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000004014589c tcp_next_iss + *fill* 0x00000000401458c9 0x3 + .text.tcp_eff_send_mss_netif + 0x00000000401458cc 0x53 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x57 (size before relaxing) + 0x00000000401458cc tcp_eff_send_mss_netif + *fill* 0x000000004014591f 0x1 + .text.tcp_free_ooseq + 0x0000000040145920 0x12 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x16 (size before relaxing) + 0x0000000040145920 tcp_free_ooseq + *fill* 0x0000000040145932 0x2 + .text.tcp_pcb_purge + 0x0000000040145934 0x5e esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x66 (size before relaxing) + 0x0000000040145934 tcp_pcb_purge + *fill* 0x0000000040145992 0x2 + .text.tcp_pcb_remove + 0x0000000040145994 0xd1 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xd9 (size before relaxing) + 0x0000000040145994 tcp_pcb_remove + *fill* 0x0000000040145a65 0x3 + .text.tcp_abandon + 0x0000000040145a68 0xd6 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xea (size before relaxing) + 0x0000000040145a68 tcp_abandon + *fill* 0x0000000040145b3e 0x2 + .text.tcp_abort + 0x0000000040145b40 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x0000000040145b40 tcp_abort + *fill* 0x0000000040145b4f 0x1 + .text.tcp_kill_timewait + 0x0000000040145b50 0x2f esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x32 (size before relaxing) + *fill* 0x0000000040145b7f 0x1 + .text.tcp_kill_prio + 0x0000000040145b80 0x58 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x5b (size before relaxing) + *fill* 0x0000000040145bd8 0x0 + .text.tcp_netif_ip_addr_changed_pcblist + 0x0000000040145bd8 0x79 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x0000000040145c51 0x3 + .text.tcp_netif_ip_addr_changed + 0x0000000040145c54 0xe4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xec (size before relaxing) + 0x0000000040145c54 tcp_netif_ip_addr_changed + .text.tcp_kill_state + 0x0000000040145d38 0x4f esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x0000000040145d87 0x1 + .text.tcp_alloc + 0x0000000040145d88 0xb2 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xd2 (size before relaxing) + 0x0000000040145d88 tcp_alloc + *fill* 0x0000000040145e3a 0x2 + .text.tcp_close_shutdown + 0x0000000040145e3c 0x157 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x16a (size before relaxing) + *fill* 0x0000000040145f93 0x1 + .text.tcp_close_ext + 0x0000000040145f94 0x29 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x2d (size before relaxing) + 0x0000000040145f94 tcp_close_ext + *fill* 0x0000000040145fbd 0x3 + .text.tcp_close + 0x0000000040145fc0 0x12 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x0000000040145fc0 tcp_close + *fill* 0x0000000040145fd2 0x2 + .text.tcp_recv_null + 0x0000000040145fd4 0x36 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3e (size before relaxing) + 0x0000000040145fd4 tcp_recv_null + *fill* 0x000000004014600a 0x2 + .text.tcp_process_refused_data + 0x000000004014600c 0x89 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8d (size before relaxing) + 0x000000004014600c tcp_process_refused_data + *fill* 0x0000000040146095 0x3 + .text.tcp_fasttmr + 0x0000000040146098 0x87 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x0000000040146098 tcp_fasttmr + *fill* 0x000000004014611f 0x1 + .text.tcp_shutdown + 0x0000000040146120 0x76 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x7a (size before relaxing) + 0x0000000040146120 tcp_shutdown + *fill* 0x0000000040146196 0x2 + .literal.tcp_get_next_optbyte + 0x0000000040146198 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .literal.tcp_parseopt + 0x00000000401461a8 0x14 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x2c (size before relaxing) + .literal.tcp_input_delayed_close + 0x00000000401461bc 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x20 (size before relaxing) + .literal.tcp_timewait_input + 0x00000000401461cc 0x24 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x38 (size before relaxing) + .literal.tcp_listen_input + 0x00000000401461f0 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x64 (size before relaxing) + .literal.tcp_oos_insert_segment + 0x0000000040146200 0x8 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x2c (size before relaxing) + .literal.tcp_free_acked_segments + 0x0000000040146208 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x30 (size before relaxing) + .literal.tcp_receive + 0x0000000040146218 0x40 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x188 (size before relaxing) + .literal.tcp_process + 0x0000000040146258 0x20 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xc4 (size before relaxing) + .literal.tcp_input + 0x0000000040146278 0x3c esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x134 (size before relaxing) + .literal.tcp_trigger_input_pcb_close + 0x00000000401462b4 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x4 (size before relaxing) + .literal.tcp_write_checks + 0x00000000401462b4 0x14 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x20 (size before relaxing) + .literal.tcp_output_segment_busy + 0x00000000401462c8 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x10 (size before relaxing) + .literal.tcp_output_fill_options + 0x00000000401462d0 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x18 (size before relaxing) + .literal.tcp_pbuf_prealloc + 0x00000000401462dc 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x24 (size before relaxing) + .literal.tcp_create_segment + 0x00000000401462ec 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x40 (size before relaxing) + .literal.tcp_output_alloc_header_common + 0x00000000401462fc 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x28 (size before relaxing) + .literal.tcp_output_alloc_header + 0x0000000040146304 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x14 (size before relaxing) + .literal.tcp_route + 0x000000004014630c 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xc (size before relaxing) + .literal.tcp_output_segment + 0x000000004014630c 0x14 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x54 (size before relaxing) + .literal.tcp_output_control_segment + 0x0000000040146320 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x24 (size before relaxing) + .literal.tcp_write + 0x0000000040146328 0x24 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x68 (size before relaxing) + .literal.tcp_split_unsent_seg + 0x000000004014634c 0x14 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x54 (size before relaxing) + .literal.tcp_enqueue_flags + 0x0000000040146360 0x1c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x44 (size before relaxing) + .literal.tcp_send_fin + 0x000000004014637c 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1c (size before relaxing) + .literal.tcp_rexmit_rto_prepare + 0x0000000040146384 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x24 (size before relaxing) + .literal.tcp_rexmit + 0x0000000040146390 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1c (size before relaxing) + .literal.tcp_rexmit_fast + 0x0000000040146398 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x14 (size before relaxing) + .literal.tcp_rst + 0x00000000401463a0 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x2c (size before relaxing) + .literal.tcp_send_empty_ack + 0x00000000401463b0 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x20 (size before relaxing) + .literal.tcp_output + 0x00000000401463b8 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x68 (size before relaxing) + .literal.tcp_rexmit_rto_commit + 0x00000000401463c8 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x14 (size before relaxing) + .literal.tcp_rexmit_rto + 0x00000000401463d0 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x18 (size before relaxing) + .literal.tcp_keepalive + 0x00000000401463d8 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x24 (size before relaxing) + .literal.tcp_zero_window_probe + 0x00000000401463e4 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x34 (size before relaxing) + .literal.sys_timeout_abs + 0x00000000401463f0 0x10 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x18 (size before relaxing) + .literal.lwip_cyclic_timer + 0x0000000040146400 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x14 (size before relaxing) + .literal.sys_timeout + 0x0000000040146408 0xc esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x1c (size before relaxing) + .literal.tcp_timer_needed + 0x0000000040146414 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x14 (size before relaxing) + .literal.tcpip_tcp_timer + 0x000000004014641c 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x18 (size before relaxing) + .literal.sys_timeouts_init + 0x000000004014641c 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0xc (size before relaxing) + .literal.sys_untimeout + 0x0000000040146420 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x8 (size before relaxing) + .literal.sys_check_timeouts + 0x0000000040146420 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x10 (size before relaxing) + .literal.sys_timeouts_sleeptime + 0x0000000040146420 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x18 (size before relaxing) + .literal.udp_new_port + 0x0000000040146428 0xc esp-idf/lwip/liblwip.a(udp.c.obj) + 0x14 (size before relaxing) + .literal.udp_input_local_match + 0x0000000040146434 0x10 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x1c (size before relaxing) + .literal.udp_init + 0x0000000040146444 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x8 (size before relaxing) + .literal.udp_input + 0x0000000040146448 0x10 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x6c (size before relaxing) + .literal.udp_bind + 0x0000000040146458 0x10 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x1c (size before relaxing) + .literal.udp_sendto_if_src + 0x0000000040146468 0x8 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x40 (size before relaxing) + .literal.udp_sendto_if + 0x0000000040146470 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0xc (size before relaxing) + .literal.udp_sendto + 0x0000000040146470 0x8 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x20 (size before relaxing) + .literal.udp_send + 0x0000000040146478 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x4 (size before relaxing) + .literal.udp_connect + 0x0000000040146478 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x18 (size before relaxing) + .literal.udp_disconnect + 0x0000000040146478 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + .literal.udp_remove + 0x000000004014647c 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x8 (size before relaxing) + .literal.udp_new + 0x000000004014647c 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x8 (size before relaxing) + .literal.udp_netif_ip_addr_changed + 0x0000000040146480 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_option_short + 0x0000000040146480 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_option + 0x000000004014648c 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_option_byte + 0x0000000040146494 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_option_long + 0x000000004014649c 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_create_msg + 0x00000000401464a4 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x2c (size before relaxing) + .literal.dhcp_option_hostname + 0x00000000401464b0 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x20 (size before relaxing) + .literal.dhcp_option_trailer + 0x00000000401464bc 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_rebind + 0x00000000401464bc 0x14 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x48 (size before relaxing) + .literal.dhcp_t2_timeout + 0x00000000401464d0 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_reboot + 0x00000000401464d0 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x54 (size before relaxing) + .literal.dhcp_select + 0x00000000401464d0 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x64 (size before relaxing) + .literal.dhcp_handle_offer + 0x00000000401464d0 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_discover + 0x00000000401464d8 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4c (size before relaxing) + .literal.dhcp_decline + 0x00000000401464d8 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x38 (size before relaxing) + .literal.dhcp_check + 0x00000000401464d8 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_bind + 0x00000000401464d8 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x18 (size before relaxing) + .literal.dhcp_handle_nak + 0x00000000401464d8 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_dec_pcb_refcount + 0x00000000401464d8 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x1c (size before relaxing) + .literal.dhcp_inc_pcb_refcount + 0x00000000401464e4 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x30 (size before relaxing) + .literal.dhcp_parse_reply + 0x00000000401464f0 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x2c (size before relaxing) + .literal.dhcp_handle_ack + 0x00000000401464fc 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x18 (size before relaxing) + .literal.dhcp_recv + 0x00000000401464fc 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x44 (size before relaxing) + .literal.dhcp_set_struct + 0x0000000040146504 0x10 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x24 (size before relaxing) + .literal.dhcp_cleanup + 0x0000000040146514 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x14 (size before relaxing) + .literal.dhcp_network_changed + 0x0000000040146518 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x18 (size before relaxing) + .literal.dhcp_arp_reply + 0x0000000040146520 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_renew + 0x0000000040146520 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x44 (size before relaxing) + .literal.dhcp_t1_timeout + 0x0000000040146520 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_release_and_stop + 0x0000000040146520 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x44 (size before relaxing) + .literal.dhcp_start + 0x0000000040146520 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x24 (size before relaxing) + .literal.dhcp_coarse_tmr + 0x0000000040146520 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x14 (size before relaxing) + .literal.dhcp_timeout + 0x0000000040146524 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x20 (size before relaxing) + .literal.dhcp_fine_tmr + 0x0000000040146524 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_fine_timeout_cb + 0x0000000040146524 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_release + 0x0000000040146524 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_stop + 0x0000000040146524 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.free_etharp_q + 0x0000000040146524 0x10 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x20 (size before relaxing) + .literal.etharp_free_entry + 0x0000000040146534 0x4 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x8 (size before relaxing) + .literal.etharp_find_entry + 0x0000000040146538 0x10 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x28 (size before relaxing) + .literal.etharp_update_arp_entry + 0x0000000040146548 0x8 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x30 (size before relaxing) + .literal.etharp_raw + 0x0000000040146550 0x14 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x3c (size before relaxing) + .literal.etharp_request_dst + 0x0000000040146564 0x4 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x8 (size before relaxing) + .literal.etharp_cleanup_netif + 0x0000000040146568 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x8 (size before relaxing) + .literal.etharp_input + 0x0000000040146568 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x14 (size before relaxing) + .literal.etharp_request + 0x0000000040146568 0x4 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x8 (size before relaxing) + .literal.etharp_tmr + 0x000000004014656c 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xc (size before relaxing) + .literal.etharp_output_to_arp_index + 0x000000004014656c 0x8 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x24 (size before relaxing) + .literal.etharp_query + 0x0000000040146574 0x14 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x54 (size before relaxing) + .literal.etharp_output + 0x0000000040146588 0xc esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x48 (size before relaxing) + .literal.icmp_send_response + 0x0000000040146594 0xc esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x28 (size before relaxing) + .literal.icmp_input + 0x00000000401465a0 0xc esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x68 (size before relaxing) + .literal.icmp_dest_unreach + 0x00000000401465ac 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_start_timer + 0x00000000401465ac 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x10 (size before relaxing) + .literal.igmp_delaying_member + 0x00000000401465b4 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_ip_output_if + 0x00000000401465b4 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_send + 0x00000000401465b4 0x10 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x28 (size before relaxing) + .literal.igmp_timeout + 0x00000000401465c4 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x8 (size before relaxing) + .literal.igmp_init + 0x00000000401465c8 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x10 (size before relaxing) + .literal.igmp_stop + 0x00000000401465d0 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_report_groups + 0x00000000401465d0 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_lookup_group + 0x00000000401465d0 0xc esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x24 (size before relaxing) + .literal.igmp_start + 0x00000000401465dc 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x8 (size before relaxing) + .literal.igmp_input + 0x00000000401465dc 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x28 (size before relaxing) + .literal.igmp_joingroup_netif + 0x00000000401465dc 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x10 (size before relaxing) + .literal.igmp_joingroup + 0x00000000401465dc 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xc (size before relaxing) + .literal.igmp_leavegroup_netif + 0x00000000401465dc 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x14 (size before relaxing) + .literal.igmp_leavegroup + 0x00000000401465dc 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xc (size before relaxing) + .literal.igmp_tmr + 0x00000000401465dc 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x18 (size before relaxing) + .literal.igmp_timeout_cb + 0x00000000401465dc 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.ip4_input_accept + 0x00000000401465dc 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x8 (size before relaxing) + .literal.ip4_route + 0x00000000401465dc 0x8 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x10 (size before relaxing) + .literal.ip4_route_src + 0x00000000401465e4 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x8 (size before relaxing) + .literal.ip4_input + 0x00000000401465e4 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x68 (size before relaxing) + .literal.ip4_output_if_opt_src + 0x00000000401465e8 0x14 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x44 (size before relaxing) + .literal.ip4_output_if_opt + 0x00000000401465fc 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x4 (size before relaxing) + .literal.ip4_output_if + 0x00000000401465fc 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x4 (size before relaxing) + .literal.ip4_output_if_src + 0x00000000401465fc 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x4 (size before relaxing) + .literal.ip4addr_ntoa_r + 0x00000000401465fc 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x4 (size before relaxing) + .literal.ip4_frag + 0x00000000401465fc 0xc esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + 0x3c (size before relaxing) + .literal.icmp6_send_response_with_addrs_and_netif + 0x0000000040146608 0xc esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x28 (size before relaxing) + .literal.icmp6_send_response + 0x0000000040146614 0x8 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x20 (size before relaxing) + .literal.icmp6_input + 0x000000004014661c 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x48 (size before relaxing) + .literal.icmp6_dest_unreach + 0x000000004014661c 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x4 (size before relaxing) + .literal.icmp6_param_problem + 0x000000004014661c 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x8 (size before relaxing) + .literal.ip6_input_accept + 0x000000004014661c 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x4 (size before relaxing) + .literal.ip6_route + 0x000000004014661c 0x4 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x1c (size before relaxing) + .literal.ip6_select_source_address + 0x0000000040146620 0x4 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x14 (size before relaxing) + .literal.ip6_input + 0x0000000040146624 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0xf4 (size before relaxing) + .literal.ip6_output_if_src + 0x0000000040146624 0x18 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x48 (size before relaxing) + .literal.ip6_output_if + 0x000000004014663c 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x8 (size before relaxing) + .literal.ip6_options_add_hbh_ra + 0x000000004014663c 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x4 (size before relaxing) + .literal.ip6_frag + 0x000000004014663c 0x14 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x44 (size before relaxing) + .literal.mld6_delayed_report + 0x0000000040146650 0x8 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x14 (size before relaxing) + .literal.mld6_new_group + 0x0000000040146658 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4 (size before relaxing) + .literal.mld6_send + 0x0000000040146658 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x20 (size before relaxing) + .literal.mld6_stop + 0x0000000040146658 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4 (size before relaxing) + .literal.mld6_report_groups + 0x0000000040146658 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4 (size before relaxing) + .literal.mld6_input + 0x0000000040146658 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x30 (size before relaxing) + .literal.mld6_joingroup_netif + 0x0000000040146658 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x1c (size before relaxing) + .literal.mld6_joingroup + 0x0000000040146658 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xc (size before relaxing) + .literal.mld6_leavegroup_netif + 0x0000000040146658 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x1c (size before relaxing) + .literal.mld6_leavegroup + 0x0000000040146658 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xc (size before relaxing) + .literal.mld6_tmr + 0x0000000040146658 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x18 (size before relaxing) + .literal.mld6_timeout_cb + 0x0000000040146658 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_find_neighbor_cache_entry + 0x0000000040146658 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + .literal.nd6_find_destination_cache_entry + 0x000000004014665c 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + .literal.nd6_new_destination_cache_entry + 0x0000000040146660 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_is_prefix_in_netif + 0x0000000040146660 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + .literal.nd6_select_router + 0x0000000040146664 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) + .literal.nd6_get_router + 0x000000004014666c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_get_onlink_prefix + 0x000000004014666c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_new_onlink_prefix + 0x000000004014666c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_send_q + 0x000000004014666c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x18 (size before relaxing) + .literal.nd6_duplicate_addr_detected + 0x000000004014666c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x8 (size before relaxing) + .literal.nd6_process_autoconfig_prefix + 0x000000004014666c 0x10 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x2c (size before relaxing) + .literal.nd6_free_q + 0x000000004014667c 0x1c esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x34 (size before relaxing) + .literal.nd6_free_neighbor_cache_entry + 0x0000000040146698 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x8 (size before relaxing) + .literal.nd6_new_neighbor_cache_entry + 0x0000000040146698 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1c (size before relaxing) + .literal.nd6_send_na + 0x0000000040146698 0xc esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x30 (size before relaxing) + .literal.nd6_send_rs + 0x00000000401466a4 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x20 (size before relaxing) + .literal.nd6_send_ns + 0x00000000401466a4 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x30 (size before relaxing) + .literal.nd6_send_neighbor_cache_probe + 0x00000000401466a8 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_new_router + 0x00000000401466a8 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x14 (size before relaxing) + .literal.nd6_get_next_hop_entry + 0x00000000401466a8 0x10 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4c (size before relaxing) + .literal.nd6_queue_packet + 0x00000000401466b8 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x28 (size before relaxing) + .literal.nd6_input + 0x00000000401466b8 0x10 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x124 (size before relaxing) + .literal.nd6_tmr + 0x00000000401466c8 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x54 (size before relaxing) + .literal.nd6_clear_destination_cache + 0x00000000401466d0 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_find_route + 0x00000000401466d0 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1c (size before relaxing) + .literal.nd6_get_next_hop_addr_or_queue + 0x00000000401466d8 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xc (size before relaxing) + .literal.nd6_get_destination_mtu + 0x00000000401466d8 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x8 (size before relaxing) + .literal.nd6_reachability_hint + 0x00000000401466d8 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1c (size before relaxing) + .literal.nd6_cleanup_netif + 0x00000000401466d8 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x14 (size before relaxing) + .literal.nd6_adjust_mld_membership + 0x00000000401466d8 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x10 (size before relaxing) + .literal.ethernet_input + 0x00000000401466d8 0x4 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x28 (size before relaxing) + .literal.ethernet_output + 0x00000000401466dc 0xc esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x20 (size before relaxing) + .literal.lwip_init_tcp_isn + 0x00000000401466e8 0x10 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + 0x18 (size before relaxing) + .literal.lwip_hook_tcp_isn + 0x00000000401466f8 0x18 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + 0x2c (size before relaxing) + .literal.ip4_route_src_hook + 0x0000000040146710 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_parse_extra_opts + 0x0000000040146710 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0xc (size before relaxing) + .literal.dhcp_append_extra_opts + 0x0000000040146710 0x4 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .literal.sys_thread_sem_free + 0x0000000040146714 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_mutex_new + 0x000000004014671c 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_mutex_lock + 0x0000000040146720 0x10 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_mutex_unlock + 0x0000000040146730 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_sem_new + 0x000000004014673c 0x10 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x20 (size before relaxing) + .literal.sys_sem_signal + 0x000000004014674c 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_sem_signal_isr + 0x0000000040146754 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_arch_sem_wait + 0x0000000040146758 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x20 (size before relaxing) + .literal.sys_sem_free + 0x0000000040146760 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4 (size before relaxing) + .literal.sys_mbox_new + 0x0000000040146760 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xc (size before relaxing) + .literal.sys_mbox_post + 0x0000000040146760 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_mbox_trypost + 0x0000000040146768 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4 (size before relaxing) + .literal.sys_arch_mbox_fetch + 0x0000000040146768 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x20 (size before relaxing) + .literal.sys_arch_mbox_tryfetch + 0x0000000040146774 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_mbox_free + 0x0000000040146778 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x1c (size before relaxing) + .literal.sys_thread_new + 0x0000000040146784 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_init + 0x000000004014678c 0x20 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x28 (size before relaxing) + .literal.sys_now + 0x00000000401467ac 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_arch_protect + 0x00000000401467b0 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xc (size before relaxing) + .literal.sys_arch_unprotect + 0x00000000401467b0 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x8 (size before relaxing) + .literal.sys_thread_sem_init + 0x00000000401467b0 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x2c (size before relaxing) + .literal.sys_thread_sem_get + 0x00000000401467b8 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xc (size before relaxing) + .literal.sys_thread_tcpip + 0x00000000401467bc 0x10 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x1c (size before relaxing) + .literal.lwip_get_socket_select_semaphore + 0x00000000401467cc 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_stop_socket_select_isr + 0x00000000401467cc 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_stop_socket_select + 0x00000000401467cc 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_ioctl_r_wrapper + 0x00000000401467cc 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_fcntl_r_wrapper + 0x00000000401467cc 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_fstat + 0x00000000401467cc 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_lwip_sockets_register + 0x00000000401467cc 0x3c esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x40 (size before relaxing) + .literal.add_offer_options + 0x0000000040146808 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4 (size before relaxing) + .literal.kill_oldest_dhcps_pool + 0x0000000040146808 0xc esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x18 (size before relaxing) + .literal.parse_options + 0x0000000040146814 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4 (size before relaxing) + .literal.create_msg + 0x0000000040146814 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x10 (size before relaxing) + .literal.dhcps_new + 0x0000000040146818 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x8 (size before relaxing) + .literal.dhcps_delete + 0x0000000040146818 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4 (size before relaxing) + .literal.dhcps_tmr + 0x0000000040146818 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x1c (size before relaxing) + .literal.parse_msg + 0x000000004014681c 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x3c (size before relaxing) + .literal.dhcps_pbuf_alloc + 0x0000000040146820 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4 (size before relaxing) + .literal.send_offer + 0x0000000040146820 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x1c (size before relaxing) + .literal.send_ack + 0x0000000040146820 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x1c (size before relaxing) + .literal.send_nak + 0x0000000040146820 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x18 (size before relaxing) + .literal.handle_dhcp + 0x0000000040146820 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x20 (size before relaxing) + .literal.dhcps_start + 0x0000000040146820 0xc esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x30 (size before relaxing) + .literal.dhcps_stop + 0x000000004014682c 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x1c (size before relaxing) + .literal.netconn_apimsg + 0x000000004014682c 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_tcp_recvd_msg + 0x000000004014682c 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_close_shutdown + 0x0000000040146830 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.netconn_prepare_delete + 0x0000000040146834 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.netconn_delete + 0x0000000040146838 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_getaddr + 0x0000000040146838 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_tcp_recvd + 0x000000004014683c 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x4 (size before relaxing) + .literal.netconn_send + 0x000000004014683c 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_write_vectors_partly + 0x0000000040146840 0x10 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x20 (size before relaxing) + .literal.netconn_write_partly + 0x0000000040146850 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x4 (size before relaxing) + .literal.netconn_err + 0x0000000040146850 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_recv_data + 0x0000000040146850 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x48 (size before relaxing) + .literal.netconn_recv_udp_raw_netbuf_flags + 0x0000000040146858 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x4 (size before relaxing) + .literal.netconn_recv_data_tcp + 0x0000000040146858 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x10 (size before relaxing) + .literal.netconn_recv_tcp_pbuf_flags + 0x0000000040146858 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x4 (size before relaxing) + .literal.netconn_join_leave_group + 0x0000000040146858 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.netconn_join_leave_group_netif + 0x000000004014685c 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.lwip_netconn_err_to_msg + 0x0000000040146860 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.err_tcp + 0x0000000040146878 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x40 (size before relaxing) + .literal.netconn_mark_mbox_invalid + 0x000000004014688c 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x14 (size before relaxing) + .literal.lwip_netconn_do_writemore + 0x0000000040146890 0x20 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x60 (size before relaxing) + .literal.lwip_netconn_do_close_internal + 0x00000000401468b0 0x24 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x88 (size before relaxing) + .literal.poll_tcp + 0x00000000401468d4 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.sent_tcp + 0x00000000401468d8 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.tcp_do_abort + 0x00000000401468dc 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x4 (size before relaxing) + .literal.lwip_netconn_is_deallocated_msg + 0x00000000401468dc 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x4 (size before relaxing) + .literal.lwip_netconn_is_err_msg + 0x00000000401468dc 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.netconn_free + 0x00000000401468e4 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x28 (size before relaxing) + .literal.netconn_drain + 0x00000000401468f4 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x44 (size before relaxing) + .literal.lwip_netconn_do_delconn + 0x0000000040146900 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x38 (size before relaxing) + .literal.lwip_netconn_do_send + 0x0000000040146910 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.lwip_netconn_do_recv + 0x0000000040146910 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xc (size before relaxing) + .literal.lwip_netconn_do_write + 0x0000000040146910 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x24 (size before relaxing) + .literal.lwip_netconn_do_getaddr + 0x0000000040146918 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x14 (size before relaxing) + .literal.lwip_netconn_do_close + 0x0000000040146920 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x38 (size before relaxing) + .literal.lwip_netconn_do_join_leave_group + 0x000000004014692c 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x14 (size before relaxing) + .literal.lwip_netconn_do_join_leave_group_netif + 0x000000004014692c 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x18 (size before relaxing) + .literal.err_to_errno + 0x000000004014692c 0x4 esp-idf/lwip/liblwip.a(err.c.obj) + .literal.netbuf_delete + 0x0000000040146930 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x8 (size before relaxing) + .literal.netbuf_alloc + 0x0000000040146930 0xc esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x18 (size before relaxing) + .literal.netbuf_free + 0x000000004014693c 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x4 (size before relaxing) + .literal.inet_cksum_pseudo_base + 0x000000004014693c 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0xc (size before relaxing) + .literal.inet_chksum_pseudo + 0x000000004014693c 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4 (size before relaxing) + .literal.ip6_chksum_pseudo + 0x000000004014693c 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4 (size before relaxing) + .literal.ip_chksum_pseudo + 0x000000004014693c 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x8 (size before relaxing) + .literal.inet_chksum + 0x000000004014693c 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4 (size before relaxing) + .literal.inet_chksum_pbuf + 0x000000004014693c 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_action_start + 0x000000004014693c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_action_stop + 0x000000004014693c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_action_connected + 0x000000004014693c 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x60 (size before relaxing) + .literal.esp_netif_action_disconnected + 0x0000000040146958 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_action_got_ip + 0x0000000040146958 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x14 (size before relaxing) + .literal.low_level_output + 0x000000004014695c 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x14 (size before relaxing) + .literal.wlanif_input + 0x000000004014695c 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x10 (size before relaxing) + .literal.wlanif_init + 0x000000004014695c 0x1c esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x28 (size before relaxing) + .literal.wlanif_init_sta + 0x0000000040146978 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x4 (size before relaxing) + .literal.esp_pbuf_free + 0x0000000040146978 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x8 (size before relaxing) + .literal.esp_pbuf_allocate + 0x0000000040146978 0x4 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x10 (size before relaxing) + .literal.wpa_attach + 0x000000004014697c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x10 (size before relaxing) + .literal.wpa_config_done + 0x0000000040146980 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_ap_get_wpa_ie + 0x0000000040146980 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_ap_rx_eapol + 0x0000000040146980 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_deattach + 0x0000000040146980 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xc (size before relaxing) + .literal.wpa_parse_wpa_ie_wrapper + 0x0000000040146984 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x10 (size before relaxing) + .literal.hostap_sta_join + 0x0000000040146984 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x1c (size before relaxing) + .literal.wpa_sta_disconnected_cb + 0x0000000040146988 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x1c (size before relaxing) + .literal.wpa_sta_connected_cb + 0x000000004014698c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_install_key + 0x000000004014698c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_get_key + 0x000000004014698c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_deauthenticate + 0x000000004014698c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_config_profile + 0x000000004014698c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x24 (size before relaxing) + .literal.wpa_config_bss + 0x000000004014698c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x18 (size before relaxing) + .literal.wpa_sta_connect + 0x000000004014698c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x10 (size before relaxing) + .literal.wpa_config_assoc_ie + 0x000000004014698c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x8 (size before relaxing) + .literal.wpa_neg_complete + 0x000000004014698c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.esp_supplicant_init + 0x000000004014698c 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x74 (size before relaxing) + .literal.esp_supplicant_deinit + 0x00000000401469e4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x14 (size before relaxing) + .literal.ieee80211_handle_rx_frm + 0x00000000401469e4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0xc (size before relaxing) + .literal.esp_supplicant_unset_all_appie + 0x00000000401469e4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x4 (size before relaxing) + .literal.esp_supplicant_common_deinit + 0x00000000401469e4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0xc (size before relaxing) + .literal.esp_supplicant_common_init + 0x00000000401469e8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x18 (size before relaxing) + .literal.esp_set_assoc_ie + 0x00000000401469f0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x10 (size before relaxing) + .literal.wpa3_parse_sae_commit + 0x00000000401469f4 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x28 (size before relaxing) + .literal.wpa3_parse_sae_confirm + 0x0000000040146a00 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x14 (size before relaxing) + .literal.wpa3_build_sae_commit + 0x0000000040146a08 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x88 (size before relaxing) + .literal.wpa3_build_sae_confirm + 0x0000000040146a14 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x18 (size before relaxing) + .literal.wpa3_build_sae_msg + 0x0000000040146a18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x14 (size before relaxing) + .literal.wpa3_process_rx_confirm + 0x0000000040146a18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x2c (size before relaxing) + .literal.esp_wpa3_free_sae_data + 0x0000000040146a18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x20 (size before relaxing) + .literal.wpa3_parse_sae_msg + 0x0000000040146a18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0xc (size before relaxing) + .literal.esp_wifi_register_wpa3_cb + 0x0000000040146a18 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .literal.wpa3_hostap_post_evt + 0x0000000040146a20 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x20 (size before relaxing) + .literal.wpa3_hostap_handle_auth + 0x0000000040146a28 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x20 (size before relaxing) + .literal.wpa3_hostap_auth_init + 0x0000000040146a28 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x1c (size before relaxing) + .literal.wpa3_hostap_auth_deinit + 0x0000000040146a34 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x4 (size before relaxing) + .literal.esp_send_sae_auth_reply + 0x0000000040146a34 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x14 (size before relaxing) + .literal.wpa3_process_rx_commit + 0x0000000040146a34 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x28 (size before relaxing) + .literal.esp_wpa3_hostap_task + 0x0000000040146a34 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x20 (size before relaxing) + .literal.esp_wifi_register_wpa3_ap_cb + 0x0000000040146a34 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .literal.owe_build_dhie + 0x0000000040146a38 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x8 (size before relaxing) + .literal.owe_deinit + 0x0000000040146a38 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x10 (size before relaxing) + .literal.esp_wifi_register_owe_cb + 0x0000000040146a3c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .literal.hostapd_get_hapd_data + 0x0000000040146a44 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .literal.hostap_init + 0x0000000040146a48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x84 (size before relaxing) + .literal.hostapd_cleanup + 0x0000000040146a48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x1c (size before relaxing) + .literal.hostap_deinit + 0x0000000040146a48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x18 (size before relaxing) + .literal.esp_wifi_build_rsnxe + 0x0000000040146a48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x4 (size before relaxing) + .literal.esp_send_assoc_resp + 0x0000000040146a48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x18 (size before relaxing) + .literal.ecp_opp + 0x0000000040146a48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xc (size before relaxing) + .literal.crypto_alloc_key + 0x0000000040146a48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_deinit + 0x0000000040146a48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_init + 0x0000000040146a48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + .literal.crypto_ec_point_init + 0x0000000040146a48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_prime_len + 0x0000000040146a48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_order_len + 0x0000000040146a48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_prime_len_bits + 0x0000000040146a48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_point_deinit + 0x0000000040146a48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_point_to_bin + 0x0000000040146a48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xc (size before relaxing) + .literal.crypto_ec_point_from_bin + 0x0000000040146a48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x20 (size before relaxing) + .literal.crypto_ec_point_add + 0x0000000040146a48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + .literal.crypto_ec_point_mul + 0x0000000040146a48 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x20 (size before relaxing) + .literal.crypto_ec_point_invert + 0x0000000040146a50 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_point_compute_y_sqr + 0x0000000040146a50 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x50 (size before relaxing) + .literal.crypto_ec_point_solve_y_coord + 0x0000000040146a50 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x30 (size before relaxing) + .literal.crypto_ec_point_is_at_infinity + 0x0000000040146a50 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_point_is_on_curve + 0x0000000040146a50 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x28 (size before relaxing) + .literal.crypto_ec_point_cmp + 0x0000000040146a50 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_set_pubkey_point + 0x0000000040146a50 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x38 (size before relaxing) + .literal.crypto_ec_free_key + 0x0000000040146a50 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_key_group + 0x0000000040146a50 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ecdh_deinit + 0x0000000040146a50 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ecdh_init + 0x0000000040146a50 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x40 (size before relaxing) + .literal.crypto_ecdh_get_pubkey + 0x0000000040146a50 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + .literal.crypto_ecdh_set_peerkey + 0x0000000040146a50 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x74 (size before relaxing) + .literal.crypto_ec_key_parse_pub + 0x0000000040146a50 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + .literal.crypto_ec_key_deinit + 0x0000000040146a50 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_key_verify_signature + 0x0000000040146a50 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x20 (size before relaxing) + .literal.timeout_exists + 0x0000000040146a50 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.eloop_run_timer + 0x0000000040146a54 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x8 (size before relaxing) + .literal.eloop_remove_timeout + 0x0000000040146a58 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x10 (size before relaxing) + .literal.eloop_init + 0x0000000040146a5c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x14 (size before relaxing) + .literal.eloop_register_timeout + 0x0000000040146a64 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x28 (size before relaxing) + .literal.eloop_cancel_timeout + 0x0000000040146a68 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x8 (size before relaxing) + .literal.eloop_run + 0x0000000040146a68 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x24 (size before relaxing) + .literal.eloop_run_wrapper + 0x0000000040146a6c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x4 (size before relaxing) + .literal.eloop_destroy + 0x0000000040146a6c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x18 (size before relaxing) + .literal.hostapd_derive_psk + 0x0000000040146a6c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0xc (size before relaxing) + .literal.hostapd_setup_sae_pt + 0x0000000040146a6c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x10 (size before relaxing) + .literal.hostapd_setup_wpa_psk + 0x0000000040146a6c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x8 (size before relaxing) + .literal.hostapd_get_psk + 0x0000000040146a6c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x4 (size before relaxing) + .literal.hostapd_config_clear_wpa_psk + 0x0000000040146a6c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x4 (size before relaxing) + .literal.hostapd_config_free_bss + 0x0000000040146a6c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0xc (size before relaxing) + .literal.wpa_auth_get_sm + 0x0000000040146a6c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .literal.wpa_auth_add_sm + 0x0000000040146a74 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_auth_del_sm + 0x0000000040146a74 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_use_aes_cmac + 0x0000000040146a74 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .literal.wpa_receive_error_report + 0x0000000040146a78 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_free_sta_sm + 0x0000000040146a78 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_auth_sm_ptk_update + 0x0000000040146a78 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_group_init_gmk_and_counter + 0x0000000040146a78 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x18 (size before relaxing) + .literal.sm_WPA_PTK_AUTHENTICATION_Enter + 0x0000000040146a7c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_gmk_to_gtk + 0x0000000040146a7c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_gtk_update + 0x0000000040146a7c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x20 (size before relaxing) + .literal.wpa_group_gtk_init + 0x0000000040146a84 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_group_setkeys + 0x0000000040146a84 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_auth_set_key + 0x0000000040146a84 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_group_config_group_keys + 0x0000000040146a84 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_group_setkeysdone + 0x0000000040146a88 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_group_sm_step + 0x0000000040146a88 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_group_init + 0x0000000040146a88 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x18 (size before relaxing) + .literal.wpa_group_ensure_init + 0x0000000040146a88 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.wpa_sta_disconnect + 0x0000000040146a88 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.sm_WPA_PTK_AUTHENTICATION2_Enter + 0x0000000040146a88 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.sm_WPA_PTK_DISCONNECT_Enter + 0x0000000040146a88 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_rekey_gtk + 0x0000000040146a88 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.wpa_replay_counter_valid + 0x0000000040146a8c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_replay_counter_mark_invalid + 0x0000000040146a8c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_derive_ptk + 0x0000000040146a8c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_verify_key_mic + 0x0000000040146a90 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.sm_WPA_PTK_PTKINITDONE_Enter + 0x0000000040146a90 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x20 (size before relaxing) + .literal.ieee80211w_kde_add + 0x0000000040146a94 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.resend_eapol_handle + 0x0000000040146a98 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_init + 0x0000000040146a9c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x34 (size before relaxing) + .literal.wpa_auth_sta_init + 0x0000000040146aa0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.wpa_auth_sta_deinit + 0x0000000040146aa0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_auth_pmksa_add_sae + 0x0000000040146aa4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_auth_add_sae_pmkid + 0x0000000040146aa4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.__wpa_send_eapol + 0x0000000040146aa4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x80 (size before relaxing) + .literal.wpa_send_eapol + 0x0000000040146aa8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.sm_WPA_PTK_PTKSTART_Enter + 0x0000000040146aa8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x18 (size before relaxing) + .literal.sm_WPA_PTK_PTKINITNEGOTIATING_Enter + 0x0000000040146aac 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x24 (size before relaxing) + .literal.sm_WPA_PTK_GROUP_REKEYNEGOTIATING_Enter + 0x0000000040146ab0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x20 (size before relaxing) + .literal.sm_WPA_PTK_GROUP_Step + 0x0000000040146ab0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x1c (size before relaxing) + .literal.wpa_remove_ptk + 0x0000000040146ab0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.sm_WPA_PTK_INITIALIZE_Enter + 0x0000000040146ab0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_deinit + 0x0000000040146ab0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_ap_remove + 0x0000000040146ab0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_auth_uses_sae + 0x0000000040146ab0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .literal.wpa_auth_get_psk + 0x0000000040146ab4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.sm_WPA_PTK_PTKCALCNEGOTIATING_Enter + 0x0000000040146ab4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x30 (size before relaxing) + .literal.sm_WPA_PTK_INITPSK_Enter + 0x0000000040146ab8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.sm_WPA_PTK_Step + 0x0000000040146ab8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x78 (size before relaxing) + .literal.wpa_sm_step + 0x0000000040146ab8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_rekey_ptk + 0x0000000040146ab8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_auth_sta_associated + 0x0000000040146ab8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_receive + 0x0000000040146ab8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x94 (size before relaxing) + .literal.hostap_eapol_resend_process + 0x0000000040146ac0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_ap_join + 0x0000000040146ac0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x28 (size before relaxing) + .literal.wpa_parse_generic + 0x0000000040146ac0 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x14 (size before relaxing) + .literal.wpa_write_wpa_ie + 0x0000000040146acc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpa_write_rsn_ie + 0x0000000040146acc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x10 (size before relaxing) + .literal.wpa_write_rsnxe + 0x0000000040146acc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x4 (size before relaxing) + .literal.wpa_auth_gen_wpa_ie + 0x0000000040146acc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x18 (size before relaxing) + .literal.wpa_add_kde + 0x0000000040146acc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpa_validate_wpa_ie + 0x0000000040146acc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x40 (size before relaxing) + .literal.wpa_parse_kde_ies + 0x0000000040146acc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x8 (size before relaxing) + .literal._pmksa_cache_free_entry + 0x0000000040146acc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x10 (size before relaxing) + .literal.pmksa_cache_set_expiration + 0x0000000040146acc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x10 (size before relaxing) + .literal.pmksa_cache_link_entry + 0x0000000040146ad0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_free_entry + 0x0000000040146ad0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_expire + 0x0000000040146ad0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0xc (size before relaxing) + .literal.pmksa_cache_auth_create_entry + 0x0000000040146ad0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x24 (size before relaxing) + .literal.pmksa_cache_auth_deinit + 0x0000000040146ad8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x10 (size before relaxing) + .literal.pmksa_cache_auth_get + 0x0000000040146ad8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0xc (size before relaxing) + .literal.pmksa_cache_auth_add_entry + 0x0000000040146ad8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x10 (size before relaxing) + .literal.pmksa_cache_auth_add + 0x0000000040146ad8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x8 (size before relaxing) + .literal.pmksa_cache_auth_init + 0x0000000040146ad8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x4 (size before relaxing) + .literal.ap_sta_hash_del + 0x0000000040146ad8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x8 (size before relaxing) + .literal.ap_get_sta + 0x0000000040146ad8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x4 (size before relaxing) + .literal.ap_free_sta + 0x0000000040146ad8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x1c (size before relaxing) + .literal.ap_sta_add + 0x0000000040146ad8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x10 (size before relaxing) + .literal.sae_check_big_sync + 0x0000000040146ad8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x8 (size before relaxing) + .literal.auth_build_sae_commit + 0x0000000040146adc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x20 (size before relaxing) + .literal.auth_sae_send_commit + 0x0000000040146adc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0xc (size before relaxing) + .literal.auth_build_sae_confirm + 0x0000000040146adc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0xc (size before relaxing) + .literal.auth_sae_send_confirm + 0x0000000040146adc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0xc (size before relaxing) + .literal.sae_accept_sta + 0x0000000040146adc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0xc (size before relaxing) + .literal.sae_sm_step + 0x0000000040146ae0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x54 (size before relaxing) + .literal.handle_auth_sae + 0x0000000040146ae8 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x64 (size before relaxing) + .literal.auth_sae_queue + 0x0000000040146afc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x18 (size before relaxing) + .literal.wpabuf_put_le16 + 0x0000000040146afc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x4 (size before relaxing) + .literal.comeback_token_hash + 0x0000000040146afc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x4 (size before relaxing) + .literal.check_comeback_token + 0x0000000040146afc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0xc (size before relaxing) + .literal.auth_build_token_req + 0x0000000040146afc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x40 (size before relaxing) + .literal.sae_parse_token_container + 0x0000000040146afc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.hkdf_extract + 0x0000000040146afc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_pwd_seed + 0x0000000040146afc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8 (size before relaxing) + .literal.sae_cn_confirm + 0x0000000040146afc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_cn_confirm_ffc + 0x0000000040146afc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.hkdf_expand + 0x0000000040146afc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8 (size before relaxing) + .literal.sae_derive_commit_element_ffc + 0x0000000040146afc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_derive_k_ffc + 0x0000000040146afc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.debug_print_bignum + 0x0000000040146afc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sswu 0x0000000040146afc 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1d0 (size before relaxing) + .literal.sae_cn_confirm_ecc + 0x0000000040146b30 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_max_min_addr + 0x0000000040146b30 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_pwd_seed_key + 0x0000000040146b30 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x14 (size before relaxing) + .literal.sae_parse_password_identifier + 0x0000000040146b30 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.sae_test_pwd_seed_ffc + 0x0000000040146b30 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x34 (size before relaxing) + .literal.sae_derive_pwe_ffc + 0x0000000040146b34 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2c (size before relaxing) + .literal.sae_test_pwd_seed_ecc + 0x0000000040146b34 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x28 (size before relaxing) + .literal.sae_derive_pwe_ecc + 0x0000000040146b34 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x78 (size before relaxing) + .literal.sae_derive_commit_element_ecc + 0x0000000040146b34 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_derive_commit + 0x0000000040146b34 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.wpabuf_put_le16 + 0x0000000040146b34 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.wpabuf_put_data + 0x0000000040146b34 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8 (size before relaxing) + .literal.wpabuf_put_str + 0x0000000040146b34 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8 (size before relaxing) + .literal.sae_parse_rejected_groups + 0x0000000040146b34 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x10 (size before relaxing) + .literal.sae_derive_k_ecc + 0x0000000040146b34 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.sae_kdf_hash + 0x0000000040146b34 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_parse_commit_scalar + 0x0000000040146b34 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x20 (size before relaxing) + .literal.sae_parse_commit_element_ffc + 0x0000000040146b34 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x3c (size before relaxing) + .literal.sae_parse_commit_element_ecc + 0x0000000040146b34 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x18 (size before relaxing) + .literal.sae_parse_commit_element + 0x0000000040146b34 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8 (size before relaxing) + .literal.sae_clear_temp_data + 0x0000000040146b34 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x40 (size before relaxing) + .literal.sae_clear_data + 0x0000000040146b34 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x10 (size before relaxing) + .literal.sae_set_group + 0x0000000040146b34 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x34 (size before relaxing) + .literal.sae_derive_pt_ecc + 0x0000000040146b34 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x64 (size before relaxing) + .literal.sae_derive_pt_ffc + 0x0000000040146b3c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x74 (size before relaxing) + .literal.sae_derive_keys + 0x0000000040146b44 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x64 (size before relaxing) + .literal.sae_derive_pwe_from_pt_ecc + 0x0000000040146b4c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x58 (size before relaxing) + .literal.sae_derive_pwe_from_pt_ffc + 0x0000000040146b50 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x60 (size before relaxing) + .literal.sae_deinit_pt + 0x0000000040146b54 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x10 (size before relaxing) + .literal.sae_derive_pt_group + 0x0000000040146b54 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.sae_derive_pt + 0x0000000040146b54 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_prepare_commit + 0x0000000040146b54 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_prepare_commit_pt + 0x0000000040146b54 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2c (size before relaxing) + .literal.sae_process_commit + 0x0000000040146b54 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x10 (size before relaxing) + .literal.sae_write_commit + 0x0000000040146b54 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x54 (size before relaxing) + .literal.sae_group_allowed + 0x0000000040146b54 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_parse_commit + 0x0000000040146b54 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2c (size before relaxing) + .literal.sae_write_confirm + 0x0000000040146b54 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.sae_check_confirm + 0x0000000040146b54 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x10 (size before relaxing) + .literal.dragonfly_get_rand_1_to_p_1 + 0x0000000040146b54 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x28 (size before relaxing) + .literal.dragonfly_get_rand_2_to_r_1 + 0x0000000040146b58 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0xc (size before relaxing) + .literal.dragonfly_min_pwe_loop_iter + 0x0000000040146b58 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .literal.dragonfly_get_random_qr_qnr + 0x0000000040146b5c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x1c (size before relaxing) + .literal.dragonfly_is_quadratic_residue_blind + 0x0000000040146b5c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x34 (size before relaxing) + .literal.dragonfly_generate_scalar + 0x0000000040146b5c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x18 (size before relaxing) + .literal.dragonfly_sqrt + 0x0000000040146b5c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x28 (size before relaxing) + .literal.wpa_kck_len + 0x0000000040146b5c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4 (size before relaxing) + .literal.wpa_kek_len + 0x0000000040146b5c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4 (size before relaxing) + .literal.rsn_selector_to_bitfield + 0x0000000040146b5c 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x18 (size before relaxing) + .literal.rsn_key_mgmt_to_bitfield + 0x0000000040146b6c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x1c (size before relaxing) + .literal.wpa_selector_to_bitfield + 0x0000000040146b74 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x14 (size before relaxing) + .literal.wpa_key_mgmt_to_bitfield + 0x0000000040146b84 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0xc (size before relaxing) + .literal.wpa_mic_len + 0x0000000040146b84 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4 (size before relaxing) + .literal.wpa_cipher_valid_mgmt_group + 0x0000000040146b84 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .literal.wpa_parse_wpa_ie_rsnxe + 0x0000000040146b88 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x8 (size before relaxing) + .literal.wpa_parse_wpa_ie_rsn + 0x0000000040146b88 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x18 (size before relaxing) + .literal.wpa_parse_wpa_ie_wpa + 0x0000000040146b88 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x14 (size before relaxing) + .literal.wpa_use_akm_defined + 0x0000000040146b88 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4 (size before relaxing) + .literal.wpa_use_aes_key_wrap + 0x0000000040146b88 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x14 (size before relaxing) + .literal.wpa_eapol_key_mic + 0x0000000040146b8c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x20 (size before relaxing) + .literal.wpa_compare_rsn_ie + 0x0000000040146b8c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4 (size before relaxing) + .literal.rsn_pmkid + 0x0000000040146b8c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x18 (size before relaxing) + .literal.wpa_pmk_to_ptk + 0x0000000040146b94 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x50 (size before relaxing) + .literal.wpa_cipher_to_suite + 0x0000000040146b94 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x2c (size before relaxing) + .literal.hmac_sha256_kdf + 0x0000000040146b94 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + 0x28 (size before relaxing) + .literal.dh_groups_get + 0x0000000040146b98 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .literal.wpa_supplicant_verify_eapol_key_mic + 0x0000000040146b9c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x2c (size before relaxing) + .literal.is_wpa2_enterprise_connection + 0x0000000040146b9c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_derive_ptk + 0x0000000040146b9c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_supplicant_check_group_cipher + 0x0000000040146ba0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_supplicant_decrypt_key_data + 0x0000000040146ba0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x20 (size before relaxing) + .literal.wpa_sm_set_seq + 0x0000000040146ba0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_install_igtk + 0x0000000040146ba0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.ieee80211w_set_keys + 0x0000000040146ba0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_sm_get_key + 0x0000000040146ba0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_gtk_in_use + 0x0000000040146ba0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x18 (size before relaxing) + .literal.wpa_sm_pmksa_free_cb + 0x0000000040146ba0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpabuf_put_le16 + 0x0000000040146ba0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpabuf_put_data + 0x0000000040146ba0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.cipher_type_map_supp_to_public + 0x0000000040146ba0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_eapol_key_send + 0x0000000040146ba0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_sm_key_request + 0x0000000040146ba0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x3c (size before relaxing) + .literal.wpa_sm_rekey_ptk + 0x0000000040146ba4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_send_4_of_4 + 0x0000000040146ba4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_supplicant_send_2_of_2 + 0x0000000040146ba4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_supplicant_send_2_of_4 + 0x0000000040146ba4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x24 (size before relaxing) + .literal.wpa_supplicant_process_1_of_2_rsn + 0x0000000040146ba4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_supplicant_process_1_of_2_wpa + 0x0000000040146ba4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_supplicant_pairwise_gtk + 0x0000000040146ba4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_report_ie_mismatch + 0x0000000040146ba4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_validate_ie + 0x0000000040146ba4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x20 (size before relaxing) + .literal.wpa_sm_set_state + 0x0000000040146ba4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_supplicant_key_neg_complete + 0x0000000040146ba8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_sm_set_pmk_from_pmksa + 0x0000000040146ba8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_supplicant_get_pmk + 0x0000000040146ba8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x34 (size before relaxing) + .literal.wpa_supplicant_process_1_of_4 + 0x0000000040146ba8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x40 (size before relaxing) + .literal.wpa_sm_init + 0x0000000040146ba8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x18 (size before relaxing) + .literal.wpa_sm_notify_assoc + 0x0000000040146bac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_set_profile + 0x0000000040146bac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_set_pmk + 0x0000000040146bac 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_set_passphrase + 0x0000000040146bb4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x44 (size before relaxing) + .literal.set_assoc_ie + 0x0000000040146bb4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_sm_set_key + 0x0000000040146bb4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_supplicant_install_ptk + 0x0000000040146bb4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_supplicant_process_3_of_4 + 0x0000000040146bb8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x34 (size before relaxing) + .literal.wpa_supplicant_install_gtk + 0x0000000040146bb8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x20 (size before relaxing) + .literal.wpa_supplicant_process_1_of_2 + 0x0000000040146bb8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x28 (size before relaxing) + .literal.wpa_sm_rx_eapol + 0x0000000040146bb8 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x48 (size before relaxing) + .literal.wpa_supplicant_activate_ptk + 0x0000000040146bc4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_supplicant_send_4_of_4_txcallback + 0x0000000040146bc4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x18 (size before relaxing) + .literal.wpa_supplicant_clr_countermeasures + 0x0000000040146bc4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_stop_countermeasures + 0x0000000040146bc4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_michael_mic_failure + 0x0000000040146bc4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x30 (size before relaxing) + .literal.eapol_txcb + 0x0000000040146bc8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x20 (size before relaxing) + .literal.wpa_sta_in_4way_handshake + 0x0000000040146bd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sta_cur_pmksa_matches_akm + 0x0000000040146bd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_sta_clear_curr_pmksa + 0x0000000040146bd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.get_wpa_sm + 0x0000000040146bd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sm_set_ap_rsnxe + 0x0000000040146bd0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x20 (size before relaxing) + .literal.wpa_sm_set_assoc_rsnxe + 0x0000000040146bd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_set_bss + 0x0000000040146bd4 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x80 (size before relaxing) + .literal.wpa_sm_drop_sa + 0x0000000040146be0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_sm_deinit + 0x0000000040146be0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_sm_notify_disassoc + 0x0000000040146be0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.owe_build_assoc_req + 0x0000000040146be0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x34 (size before relaxing) + .literal.owe_process_assoc_resp + 0x0000000040146be0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x6c (size before relaxing) + .literal.wpa_parse_generic + 0x0000000040146be4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x18 (size before relaxing) + .literal.wpa_gen_wpa_ie_rsn + 0x0000000040146be8 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x38 (size before relaxing) + .literal.wpa_parse_wpa_ie + 0x0000000040146bf8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0xc (size before relaxing) + .literal.wpa_gen_wpa_ie + 0x0000000040146bf8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpa_gen_rsnxe + 0x0000000040146bf8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_parse_ies + 0x0000000040146bf8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpabuf_alloc + 0x0000000040146bf8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x4 (size before relaxing) + .literal.wpabuf_free + 0x0000000040146bf8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x8 (size before relaxing) + .literal.wpabuf_put_data + 0x0000000040146bf8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x8 (size before relaxing) + .literal.wpabuf_alloc_copy + 0x0000000040146bf8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x8 (size before relaxing) + .literal.wpabuf_zeropad + 0x0000000040146bf8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x14 (size before relaxing) + .literal.d_permute + 0x0000000040146bf8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .literal.d_check_char + 0x0000000040146bfc 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x14 (size before relaxing) + .literal.wpabuf_put_data + 0x0000000040146c04 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x8 (size before relaxing) + .literal.sae_pk_valid_password + 0x0000000040146c04 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x18 (size before relaxing) + .literal.sae_pk_base32_decode + 0x0000000040146c04 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0xc (size before relaxing) + .literal.sae_pk_set_password + 0x0000000040146c04 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x24 (size before relaxing) + .literal.sae_hash + 0x0000000040146c04 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x4 (size before relaxing) + .literal.sae_pk_valid_fingerprint + 0x0000000040146c04 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x20 (size before relaxing) + .literal.sae_pk_hash_sig_data + 0x0000000040146c04 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x3c (size before relaxing) + .literal.sae_check_confirm_pk + 0x0000000040146c04 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x34 (size before relaxing) + .literal.wpa_bss_known + 0x0000000040146c04 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x8 (size before relaxing) + .literal.wpa_bss_remove + 0x0000000040146c04 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x8 (size before relaxing) + .literal.wpa_bss_remove_oldest_unknown + 0x0000000040146c08 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0xc (size before relaxing) + .literal.wpa_bss_remove_oldest + 0x0000000040146c0c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x10 (size before relaxing) + .literal.wpa_bss_get + 0x0000000040146c10 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x8 (size before relaxing) + .literal.calculate_update_time + 0x0000000040146c10 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x8 (size before relaxing) + .literal.wpa_bss_copy_res + 0x0000000040146c10 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x8 (size before relaxing) + .literal.wpa_bss_add + 0x0000000040146c10 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x14 (size before relaxing) + .literal.wpa_bss_update + 0x0000000040146c10 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x14 (size before relaxing) + .literal.wpa_bss_update_scan_res + 0x0000000040146c14 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x14 (size before relaxing) + .literal.wpa_bss_flush + 0x0000000040146c14 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0xc (size before relaxing) + .literal.wpa_bss_deinit + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x4 (size before relaxing) + .literal.wpa_bss_get_bssid + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x4 (size before relaxing) + .literal.wpa_bss_get_ie + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x4 (size before relaxing) + .literal.wpa_scan_get_ie + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + 0x4 (size before relaxing) + .literal.esp_scan_init + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + 0x4 (size before relaxing) + .literal.esp_scan_deinit + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + 0x8 (size before relaxing) + .literal.esp_handle_beacon_probe + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + 0x2c (size before relaxing) + .literal.wpa_alloc_eapol + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0xc (size before relaxing) + .literal.wpa_free_eapol + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4 (size before relaxing) + .literal.wpa_ether_send + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x10 (size before relaxing) + .literal.hostapd_send_eapol + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x18 (size before relaxing) + .literal.wpa_supplicant_transition_disable + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sm_alloc_eapol + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sm_free_eapol + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sm_deauthenticate + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x8 (size before relaxing) + .literal.crypto_rng_wrapper + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_init + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_init_set + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0xc (size before relaxing) + .literal.crypto_bignum_init_uint + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0xc (size before relaxing) + .literal.crypto_bignum_deinit + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_to_bin + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x10 (size before relaxing) + .literal.crypto_bignum_add + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_mod + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_exptmod + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_inverse + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_sub + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_div + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_mulmod + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_sqrmod + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x10 (size before relaxing) + .literal.crypto_bignum_rshift + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_cmp + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_is_zero + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_is_one + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_is_odd + 0x0000000040146c18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_rand + 0x0000000040146c18 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_legendre + 0x0000000040146c1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x28 (size before relaxing) + .literal.crypto_bignum_addmod + 0x0000000040146c1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x10 (size before relaxing) + .literal.pad_block + 0x0000000040146c1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + 0x8 (size before relaxing) + .literal.aes_s2v + 0x0000000040146c1c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + 0x38 (size before relaxing) + .literal.aes_siv_decrypt + 0x0000000040146c20 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + 0x14 (size before relaxing) + .literal.ieee802_11_parse_extension + 0x0000000040146c20 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + 0x10 (size before relaxing) + .literal.ieee802_11_parse_vendor_specific + 0x0000000040146c20 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + 0xc (size before relaxing) + .literal.ieee802_11_parse_elems + 0x0000000040146c24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + 0x8 (size before relaxing) + .literal._pmksa_cache_free_entry + 0x0000000040146c24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_free_entry + 0x0000000040146c24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_set_expiration + 0x0000000040146c24 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x10 (size before relaxing) + .literal.pmksa_cache_expire + 0x0000000040146c28 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0xc (size before relaxing) + .literal.pmksa_cache_flush + 0x0000000040146c28 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x8 (size before relaxing) + .literal.pmksa_cache_add + 0x0000000040146c28 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x48 (size before relaxing) + .literal.pmksa_cache_clone_entry + 0x0000000040146c2c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_deinit + 0x0000000040146c2c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x14 (size before relaxing) + .literal.pmksa_cache_get + 0x0000000040146c2c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x8 (size before relaxing) + .literal.pmksa_cache_get_opportunistic + 0x0000000040146c2c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_set_current + 0x0000000040146c2c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0xc (size before relaxing) + .literal.pmksa_cache_init + 0x0000000040146c2c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_write_len + 0x0000000040146c2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_asn1_write_mpi + 0x0000000040146c2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x10 (size before relaxing) + .literal.ecdsa_restart_sig_init + 0x0000000040146c2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x8 (size before relaxing) + .literal.ecdsa_restart_ver_init + 0x0000000040146c2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x8 (size before relaxing) + .literal.ecdsa_restart_sig_free + 0x0000000040146c2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x8 (size before relaxing) + .literal.ecdsa_restart_ver_free + 0x0000000040146c2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xc (size before relaxing) + .literal.derive_mpi + 0x0000000040146c2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x10 (size before relaxing) + .literal.ecdsa_restart_det_init + 0x0000000040146c2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.ecdsa_restart_det_free + 0x0000000040146c2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x8 (size before relaxing) + .literal.ecdsa_signature_to_asn1 + 0x0000000040146c2c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ecdsa_sign_restartable + 0x0000000040146c30 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x98 (size before relaxing) + .literal.mbedtls_ecdsa_sign_det_restartable + 0x0000000040146c44 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4c (size before relaxing) + .literal.mbedtls_ecdsa_verify_restartable + 0x0000000040146c48 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x8c (size before relaxing) + .literal.mbedtls_ecdsa_write_signature_restartable + 0x0000000040146c4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ecdsa_write_signature + 0x0000000040146c4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdsa_read_signature_restartable + 0x0000000040146c4c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_ecdsa_read_signature + 0x0000000040146c54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdsa_init + 0x0000000040146c54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdsa_free + 0x0000000040146c54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdsa_from_keypair + 0x0000000040146c54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ecdsa_restart_init + 0x0000000040146c54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdsa_restart_free + 0x0000000040146c54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_hmac_drbg_init + 0x0000000040146c54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_hmac_drbg_update + 0x0000000040146c54 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x2c (size before relaxing) + .literal.hmac_drbg_reseed_core + 0x0000000040146c58 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_hmac_drbg_seed_buf + 0x0000000040146c58 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_hmac_drbg_reseed + 0x0000000040146c58 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_hmac_drbg_random_with_add + 0x0000000040146c58 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_hmac_drbg_random + 0x0000000040146c58 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_hmac_drbg_free + 0x0000000040146c58 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_pk_free + 0x0000000040146c58 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_pk_info_from_type + 0x0000000040146c58 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_setup + 0x0000000040146c68 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.rsa_debug + 0x0000000040146c70 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.eckey_debug + 0x0000000040146c78 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_get_bitlen + 0x0000000040146c7c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.rsa_free_wrap + 0x0000000040146c7c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.rsa_alloc_wrap + 0x0000000040146c7c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.rsa_check_pair_wrap + 0x0000000040146c7c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.rsa_encrypt_wrap + 0x0000000040146c7c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.rsa_decrypt_wrap + 0x0000000040146c80 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.rsa_sign_wrap + 0x0000000040146c84 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.rsa_verify_wrap + 0x0000000040146c88 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x10 (size before relaxing) + .literal.ecdsa_rs_free + 0x0000000040146c90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.eckey_rs_free + 0x0000000040146c90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.ecdsa_rs_alloc + 0x0000000040146c90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.eckey_rs_alloc + 0x0000000040146c90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.eckey_free_wrap + 0x0000000040146c90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.eckey_alloc_wrap + 0x0000000040146c90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.eckey_check_pair + 0x0000000040146c90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.ecdsa_sign_rs_wrap + 0x0000000040146c90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.eckey_sign_rs_wrap + 0x0000000040146c90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.ecdsa_verify_rs_wrap + 0x0000000040146c90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.eckey_verify_rs_wrap + 0x0000000040146c90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.ecdsa_sign_wrap + 0x0000000040146c90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.ecdsa_verify_wrap + 0x0000000040146c90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.pk_get_pk_alg + 0x0000000040146c90 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x10 (size before relaxing) + .literal.pk_get_rsapubkey + 0x0000000040146c98 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x24 (size before relaxing) + .literal.pk_group_from_specified + 0x0000000040146ca0 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x64 (size before relaxing) + .literal.pk_group_id_from_group + 0x0000000040146cb4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x38 (size before relaxing) + .literal.pk_group_id_from_specified + 0x0000000040146cb4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x20 (size before relaxing) + .literal.pk_use_ecparams + 0x0000000040146cb4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x14 (size before relaxing) + .literal.pk_get_ecpubkey + 0x0000000040146cb8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_pk_parse_subpubkey + 0x0000000040146cb8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_pk_parse_public_key + 0x0000000040146cb8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x78 (size before relaxing) + .literal.rsa_check_context + 0x0000000040146cd0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x30 (size before relaxing) + .literal.rsa_prepare_blinding + 0x0000000040146cd0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x3c (size before relaxing) + .literal.compute_hash + 0x0000000040146cd4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc (size before relaxing) + .literal.mgf_mask + 0x0000000040146cd4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x34 (size before relaxing) + .literal.hash_mprime + 0x0000000040146cd4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x2c (size before relaxing) + .literal.rsa_rsassa_pkcs1_v15_encode + 0x0000000040146cd8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_rsa_import_raw + 0x0000000040146cd8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_rsa_complete + 0x0000000040146cd8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x3c (size before relaxing) + .literal.mbedtls_rsa_init + 0x0000000040146cd8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_rsa_check_pubkey + 0x0000000040146cd8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_rsa_check_privkey + 0x0000000040146cdc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_rsa_check_pub_priv + 0x0000000040146cdc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_rsa_public + 0x0000000040146cdc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_rsa_private + 0x0000000040146ce0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc4 (size before relaxing) + .literal.rsa_rsassa_pss_sign + 0x0000000040146ce0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_rsa_rsaes_oaep_encrypt + 0x0000000040146ce0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_rsa_rsaes_pkcs1_v15_encrypt + 0x0000000040146ce0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_rsa_pkcs1_encrypt + 0x0000000040146ce0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_rsa_rsaes_oaep_decrypt + 0x0000000040146ce4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_rsa_rsaes_pkcs1_v15_decrypt + 0x0000000040146ce4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_rsa_pkcs1_decrypt + 0x0000000040146ce4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_rsa_rsassa_pss_sign + 0x0000000040146ce4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_rsa_rsassa_pkcs1_v15_sign + 0x0000000040146ce4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x3c (size before relaxing) + .literal.mbedtls_rsa_pkcs1_sign + 0x0000000040146ce8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_rsa_rsassa_pss_verify_ext + 0x0000000040146ce8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_rsa_rsassa_pss_verify + 0x0000000040146ce8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_rsa_rsassa_pkcs1_v15_verify + 0x0000000040146ce8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_rsa_pkcs1_verify + 0x0000000040146ce8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_rsa_free + 0x0000000040146ce8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x34 (size before relaxing) + .literal.mbedtls_rsa_deduce_primes + 0x0000000040146ce8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x74 (size before relaxing) + .literal.mbedtls_rsa_deduce_private_exponent + 0x0000000040146cec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_rsa_deduce_crt + 0x0000000040146cec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_rsa_validate_params + 0x0000000040146cec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x68 (size before relaxing) + .literal.mbedtls_rsa_validate_crt + 0x0000000040146cec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x48 (size before relaxing) + .literal.mbedtls_hash_info_get_size + 0x0000000040146cec 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .literal.pem_get_iv + 0x0000000040146cf0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x8 (size before relaxing) + .literal.pem_pbkdf1 + 0x0000000040146cf4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x44 (size before relaxing) + .literal.pem_aes_decrypt + 0x0000000040146cf4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_pem_read_buffer + 0x0000000040146cf4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x90 (size before relaxing) + .literal.mbedtls_pem_free + 0x0000000040146d24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_base64_decode + 0x0000000040146d24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x8 (size before relaxing) + .literal.ethip6_output + 0x0000000040146d24 0x4 esp-idf/lwip/liblwip.a(ethip6.c.obj) + 0x14 (size before relaxing) + .literal._ZdaPv + 0x0000000040146d28 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + 0x4 (size before relaxing) + .literal._ZdaPvj + 0x0000000040146d28 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opvs.o) + 0x4 (size before relaxing) + .literal._ZSt15get_new_handlerv + 0x0000000040146d28 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .literal._ZnajRKSt9nothrow_t + 0x0000000040146d2c 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + 0xc (size before relaxing) + .literal._ZdlPv + 0x0000000040146d2c 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + 0x4 (size before relaxing) + .literal.__cxa_begin_catch + 0x0000000040146d2c 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + 0x10 (size before relaxing) + .literal.__cxa_end_catch + 0x0000000040146d34 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + 0x14 (size before relaxing) + .literal._ZL15eh_globals_dtorPv + 0x0000000040146d34 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x8 (size before relaxing) + .literal.__cxa_get_globals_fast + 0x0000000040146d34 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x10 (size before relaxing) + .literal.__cxa_get_globals + 0x0000000040146d40 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x1c (size before relaxing) + .literal.startup._GLOBAL__sub_I__ZN17__eh_globals_init7_S_initE + 0x0000000040146d40 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x10 (size before relaxing) + .literal.exit._GLOBAL__sub_D__ZN17__eh_globals_init7_S_initE + 0x0000000040146d44 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0xc (size before relaxing) + .literal._ZN10__cxxabiv111__terminateEPFvvE + 0x0000000040146d48 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0xc (size before relaxing) + .literal._ZSt13get_terminatev + 0x0000000040146d4c 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .literal._ZSt9terminatev + 0x0000000040146d50 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x8 (size before relaxing) + .literal._ZSt14get_unexpectedv + 0x0000000040146d50 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .literal._Znaj + 0x0000000040146d54 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opv.o) + 0x4 (size before relaxing) + .literal._Znwj + 0x0000000040146d54 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + 0x1c (size before relaxing) + .literal._ZN10__cxxabiv120__si_class_type_infoD2Ev + 0x0000000040146d60 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x8 (size before relaxing) + .literal._ZN10__cxxabiv120__si_class_type_infoD0Ev + 0x0000000040146d64 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNKSt9type_infoeqERKS_$isra$0 + 0x0000000040146d64 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/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 + 0x0000000040146d68 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/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_ + 0x0000000040146d68 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/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 + 0x0000000040146d68 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNKSt9bad_alloc4whatEv + 0x0000000040146d68 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + .literal._ZNSt9bad_allocD2Ev + 0x0000000040146d6c 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + 0x8 (size before relaxing) + .literal._ZNSt9bad_allocD0Ev + 0x0000000040146d6c 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + 0x8 (size before relaxing) + .literal._ZN10__cxxabiv117__class_type_infoD2Ev + 0x0000000040146d6c 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x8 (size before relaxing) + .literal._ZN10__cxxabiv117__class_type_infoD0Ev + 0x0000000040146d70 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNKSt9type_infoeqERKS_$isra$0 + 0x0000000040146d70 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE + 0x0000000040146d70 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE + 0x0000000040146d70 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj + 0x0000000040146d70 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x4 (size before relaxing) + .literal._ZdlPvj + 0x0000000040146d70 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + 0x4 (size before relaxing) + .literal._ZNK9__gnu_cxx24__concurrence_lock_error4whatEv + 0x0000000040146d70 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .literal._ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv + 0x0000000040146d74 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .literal._ZN9__gnu_cxx24__concurrence_lock_errorD5Ev + 0x0000000040146d78 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x10 (size before relaxing) + .literal._ZN9__gnu_cxx26__concurrence_unlock_errorD5Ev + 0x0000000040146d7c 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x10 (size before relaxing) + .literal._ZN9__gnu_cxx7__mutex4lockEv + 0x0000000040146d80 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x18 (size before relaxing) + .literal._ZN9__gnu_cxx7__mutex6unlockEv + 0x0000000040146d8c 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x18 (size before relaxing) + .literal._ZN12_GLOBAL__N_14pool4freeEPv$constprop$0 + 0x0000000040146d98 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x10 (size before relaxing) + .literal._ZN12_GLOBAL__N_14pool8allocateEj$constprop$0 + 0x0000000040146da0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x10 (size before relaxing) + .literal.__cxa_allocate_exception + 0x0000000040146da0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x10 (size before relaxing) + .literal.__cxa_free_exception + 0x0000000040146da0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0xc (size before relaxing) + .literal.startup._GLOBAL__sub_I__ZN9__gnu_cxx9__freeresEv + 0x0000000040146da0 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x18 (size before relaxing) + .literal.exit._GLOBAL__sub_D__ZN9__gnu_cxx9__freeresEv + 0x0000000040146da8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x8 (size before relaxing) + .literal._ZL23__gxx_exception_cleanup19_Unwind_Reason_CodeP17_Unwind_Exception + 0x0000000040146da8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + 0x8 (size before relaxing) + .literal.__cxa_init_primary_exception + 0x0000000040146da8 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + 0x14 (size before relaxing) + .literal.__cxa_throw + 0x0000000040146db4 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + 0x14 (size before relaxing) + .literal._Z12abort_returnIiET_v + 0x0000000040146db4 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.__wrap__Unwind_Resume + 0x0000000040146db4 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.__wrap__Unwind_DeleteException + 0x0000000040146db4 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.__wrap__Unwind_RaiseException + 0x0000000040146db4 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.__wrap___gxx_personality_v0 + 0x0000000040146db4 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal 0x0000000040146db4 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_ceil.o) + 0x30 (size before relaxing) + .literal 0x0000000040146dc8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_floor.o) + 0x34 (size before relaxing) + .literal 0x0000000040146dc8 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .literal 0x0000000040146dcc 0x2c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + 0x48 (size before relaxing) + .literal 0x0000000040146df8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + 0xc (size before relaxing) + .literal 0x0000000040146df8 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + 0x6c (size before relaxing) + .literal 0x0000000040146e18 0x10 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + 0x3c (size before relaxing) + .literal 0x0000000040146e28 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + 0x10 (size before relaxing) + .literal 0x0000000040146e2c 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + 0x14 (size before relaxing) + .literal 0x0000000040146e2c 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + 0x28 (size before relaxing) + .literal 0x0000000040146e30 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + 0x14 (size before relaxing) + .literal 0x0000000040146e30 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + 0x34 (size before relaxing) + .literal 0x0000000040146e34 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + 0x38 (size before relaxing) + .literal 0x0000000040146e34 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + 0x30 (size before relaxing) + .literal 0x0000000040146e48 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + 0xc (size before relaxing) + .literal 0x0000000040146e48 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + 0x1c (size before relaxing) + .literal 0x0000000040146e4c 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + 0x1c (size before relaxing) + .literal 0x0000000040146e50 0xa8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + 0x238 (size before relaxing) + .literal 0x0000000040146ef8 0x6c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + 0x1a4 (size before relaxing) + .literal 0x0000000040146f64 0x2c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + 0x148 (size before relaxing) + .literal 0x0000000040146f90 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + 0x8 (size before relaxing) + .literal 0x0000000040146f94 0x3c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + 0x1e8 (size before relaxing) + .literal 0x0000000040146fd0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + 0x14 (size before relaxing) + .literal 0x0000000040146fd0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + 0x8 (size before relaxing) + .literal 0x0000000040146fd0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + 0x1c (size before relaxing) + .literal 0x0000000040146fd0 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + 0x218 (size before relaxing) + .literal 0x0000000040147028 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + 0x54 (size before relaxing) + .literal 0x0000000040147030 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + 0x4 (size before relaxing) + .literal 0x0000000040147030 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + 0x4 (size before relaxing) + .literal 0x0000000040147030 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace_l.o) + 0x4 (size before relaxing) + .literal 0x0000000040147030 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + 0x20 (size before relaxing) + .literal 0x000000004014703c 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + 0x8 (size before relaxing) + .literal 0x000000004014703c 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + 0xc (size before relaxing) + .literal 0x0000000040147040 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + 0x4 (size before relaxing) + .literal 0x0000000040147040 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + 0xc8 (size before relaxing) + .literal 0x0000000040147060 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + 0x18 (size before relaxing) + .literal 0x0000000040147068 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_nan.o) + 0x8 (size before relaxing) + .literal 0x000000004014706c 0x4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .literal 0x0000000040147070 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + 0x18 (size before relaxing) + .literal 0x0000000040147070 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + 0x14 (size before relaxing) + .literal 0x0000000040147070 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + 0x7c (size before relaxing) + .literal 0x0000000040147094 0x10 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + 0xd0 (size before relaxing) + .literal 0x00000000401470a4 0x2c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + 0xb0 (size before relaxing) + .literal.tcp_slowtmr + 0x00000000401470d0 0x40 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xb4 (size before relaxing) + .literal.tcp_tmr + 0x0000000040147110 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .text.tcp_slowtmr + 0x0000000040147114 0x48d esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4a9 (size before relaxing) + 0x0000000040147114 tcp_slowtmr + *fill* 0x00000000401475a1 0x3 + .text.tcp_tmr 0x00000000401475a4 0x1c esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x22 (size before relaxing) + 0x00000000401475a4 tcp_tmr + *fill* 0x00000000401475c0 0x0 + .text.tcp_get_next_optbyte + 0x00000000401475c0 0x40 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .text.tcp_parseopt + 0x0000000040147600 0xa5 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xb5 (size before relaxing) + *fill* 0x00000000401476a5 0x3 + .text.tcp_input_delayed_close + 0x00000000401476a8 0x4d esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x51 (size before relaxing) + *fill* 0x00000000401476f5 0x3 + .text.tcp_timewait_input + 0x00000000401476f8 0xa6 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xaa (size before relaxing) + *fill* 0x000000004014779e 0x2 + .text.tcp_listen_input + 0x00000000401477a0 0x1f7 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x216 (size before relaxing) + *fill* 0x0000000040147997 0x1 + .text.tcp_oos_insert_segment + 0x0000000040147998 0xf4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x100 (size before relaxing) + .text.tcp_free_acked_segments + 0x0000000040147a8c 0xd0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xd8 (size before relaxing) + .text.tcp_receive + 0x0000000040147b5c 0xc4e esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xce2 (size before relaxing) + *fill* 0x00000000401487aa 0x2 + .text.tcp_process + 0x00000000401487ac 0x64c esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x670 (size before relaxing) + .text.tcp_input + 0x0000000040148df8 0x894 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x8ef (size before relaxing) + 0x0000000040148df8 tcp_input + *fill* 0x000000004014968c 0x0 + .text.tcp_trigger_input_pcb_close + 0x000000004014968c 0x13 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x000000004014968c tcp_trigger_input_pcb_close + *fill* 0x000000004014969f 0x1 + .text.tcp_write_checks + 0x00000000401496a0 0xc0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .text.tcp_output_segment_busy + 0x0000000040149760 0x29 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x0000000040149789 0x3 + .text.tcp_output_fill_options + 0x000000004014978c 0x42 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x00000000401497ce 0x2 + .text.tcp_pbuf_prealloc + 0x00000000401497d0 0x64 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .text.tcp_create_segment + 0x0000000040149834 0xf3 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x107 (size before relaxing) + *fill* 0x0000000040149927 0x1 + .text.tcp_output_alloc_header_common + 0x0000000040149928 0xca esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xde (size before relaxing) + *fill* 0x00000000401499f2 0x2 + .text.tcp_output_alloc_header + 0x00000000401499f4 0x44 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x48 (size before relaxing) + .text.tcp_route + 0x0000000040149a38 0x3c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .text.tcp_output_segment + 0x0000000040149a74 0x19a esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1b2 (size before relaxing) + *fill* 0x0000000040149c0e 0x2 + .text.tcp_output_control_segment + 0x0000000040149c10 0x93 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x9a (size before relaxing) + *fill* 0x0000000040149ca3 0x1 + .text.tcp_write + 0x0000000040149ca4 0x2f6 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x30a (size before relaxing) + 0x0000000040149ca4 tcp_write + *fill* 0x0000000040149f9a 0x2 + .text.tcp_split_unsent_seg + 0x0000000040149f9c 0x1c6 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1e6 (size before relaxing) + 0x0000000040149f9c tcp_split_unsent_seg + *fill* 0x000000004014a162 0x2 + .text.tcp_enqueue_flags + 0x000000004014a164 0x144 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x000000004014a164 tcp_enqueue_flags + .text.tcp_send_fin + 0x000000004014a2a8 0x7d esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x81 (size before relaxing) + 0x000000004014a2a8 tcp_send_fin + *fill* 0x000000004014a325 0x3 + .text.tcp_rexmit_rto_prepare + 0x000000004014a328 0xc1 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xcd (size before relaxing) + 0x000000004014a328 tcp_rexmit_rto_prepare + *fill* 0x000000004014a3e9 0x3 + .text.tcp_rexmit + 0x000000004014a3ec 0xc1 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xc5 (size before relaxing) + 0x000000004014a3ec tcp_rexmit + *fill* 0x000000004014a4ad 0x3 + .text.tcp_rexmit_fast + 0x000000004014a4b0 0x6b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x000000004014a4b0 tcp_rexmit_fast + *fill* 0x000000004014a51b 0x1 + .text.tcp_rst 0x000000004014a51c 0x6c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x78 (size before relaxing) + 0x000000004014a51c tcp_rst + .text.tcp_send_empty_ack + 0x000000004014a588 0x7e esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x86 (size before relaxing) + 0x000000004014a588 tcp_send_empty_ack + *fill* 0x000000004014a606 0x2 + .text.tcp_output + 0x000000004014a608 0x3d9 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x3f9 (size before relaxing) + 0x000000004014a608 tcp_output + *fill* 0x000000004014a9e1 0x3 + .text.tcp_rexmit_rto_commit + 0x000000004014a9e4 0x2d esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x30 (size before relaxing) + 0x000000004014a9e4 tcp_rexmit_rto_commit + *fill* 0x000000004014aa11 0x3 + .text.tcp_rexmit_rto + 0x000000004014aa14 0x2b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x2f (size before relaxing) + 0x000000004014aa14 tcp_rexmit_rto + *fill* 0x000000004014aa3f 0x1 + .text.tcp_keepalive + 0x000000004014aa40 0x53 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x5f (size before relaxing) + 0x000000004014aa40 tcp_keepalive + *fill* 0x000000004014aa93 0x1 + .text.tcp_zero_window_probe + 0x000000004014aa94 0x129 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x135 (size before relaxing) + 0x000000004014aa94 tcp_zero_window_probe + *fill* 0x000000004014abbd 0x3 + .text.sys_timeout_abs + 0x000000004014abc0 0x61 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x65 (size before relaxing) + *fill* 0x000000004014ac21 0x3 + .text.lwip_cyclic_timer + 0x000000004014ac24 0x37 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x3f (size before relaxing) + *fill* 0x000000004014ac5b 0x1 + .text.sys_timeout + 0x000000004014ac5c 0x2b esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x2f (size before relaxing) + 0x000000004014ac5c sys_timeout + *fill* 0x000000004014ac87 0x1 + .text.tcp_timer_needed + 0x000000004014ac88 0x2f esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x000000004014ac88 tcp_timer_needed + *fill* 0x000000004014acb7 0x1 + .text.tcpip_tcp_timer + 0x000000004014acb8 0x2d esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x35 (size before relaxing) + *fill* 0x000000004014ace5 0x3 + .text.sys_timeouts_init + 0x000000004014ace8 0x1f esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x23 (size before relaxing) + 0x000000004014ace8 sys_timeouts_init + *fill* 0x000000004014ad07 0x1 + .text.sys_untimeout + 0x000000004014ad08 0x3e esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x42 (size before relaxing) + 0x000000004014ad08 sys_untimeout + *fill* 0x000000004014ad46 0x2 + .text.sys_check_timeouts + 0x000000004014ad48 0x3a esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x42 (size before relaxing) + 0x000000004014ad48 sys_check_timeouts + *fill* 0x000000004014ad82 0x2 + .text.sys_timeouts_sleeptime + 0x000000004014ad84 0x3c esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x000000004014ad84 sys_timeouts_sleeptime + .text.udp_new_port + 0x000000004014adc0 0x57 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000004014ae17 0x1 + .text.udp_input_local_match + 0x000000004014ae18 0x13c esp-idf/lwip/liblwip.a(udp.c.obj) + .text.udp_init + 0x000000004014af54 0x17 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x000000004014af54 udp_init + *fill* 0x000000004014af6b 0x1 + .text.udp_input + 0x000000004014af6c 0x324 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x347 (size before relaxing) + 0x000000004014af6c udp_input + *fill* 0x000000004014b290 0x0 + .text.udp_bind + 0x000000004014b290 0x25a esp-idf/lwip/liblwip.a(udp.c.obj) + 0x25e (size before relaxing) + 0x000000004014b290 udp_bind + *fill* 0x000000004014b4ea 0x2 + .text.udp_sendto_if_src + 0x000000004014b4ec 0x208 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x228 (size before relaxing) + 0x000000004014b4ec udp_sendto_if_src + .text.udp_sendto_if + 0x000000004014b6f4 0xd9 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x000000004014b6f4 udp_sendto_if + *fill* 0x000000004014b7cd 0x3 + .text.udp_sendto + 0x000000004014b7d0 0x109 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x119 (size before relaxing) + 0x000000004014b7d0 udp_sendto + *fill* 0x000000004014b8d9 0x3 + .text.udp_send + 0x000000004014b8dc 0x39 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x3d (size before relaxing) + 0x000000004014b8dc udp_send + *fill* 0x000000004014b915 0x3 + .text.udp_connect + 0x000000004014b918 0x134 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x13c (size before relaxing) + 0x000000004014b918 udp_connect + .text.udp_disconnect + 0x000000004014ba4c 0x92 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x000000004014ba4c udp_disconnect + *fill* 0x000000004014bade 0x2 + .text.udp_remove + 0x000000004014bae0 0x38 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x3b (size before relaxing) + 0x000000004014bae0 udp_remove + *fill* 0x000000004014bb18 0x0 + .text.udp_new 0x000000004014bb18 0x20 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x24 (size before relaxing) + 0x000000004014bb18 udp_new + .text.udp_netif_ip_addr_changed + 0x000000004014bb38 0xcf esp-idf/lwip/liblwip.a(udp.c.obj) + 0x000000004014bb38 udp_netif_ip_addr_changed + *fill* 0x000000004014bc07 0x1 + .text.dhcp_option_short + 0x000000004014bc08 0x35 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000004014bc3d 0x3 + .text.dhcp_option + 0x000000004014bc40 0x34 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .text.dhcp_option_byte + 0x000000004014bc74 0x26 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000004014bc9a 0x2 + .text.dhcp_option_long + 0x000000004014bc9c 0x4f esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000004014bceb 0x1 + .text.dhcp_create_msg + 0x000000004014bcec 0x128 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x134 (size before relaxing) + .text.dhcp_option_hostname + 0x000000004014be14 0x7a esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x7e (size before relaxing) + *fill* 0x000000004014be8e 0x2 + .text.dhcp_option_trailer + 0x000000004014be90 0x36 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000004014bec6 0x2 + .text.dhcp_rebind + 0x000000004014bec8 0x10e esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x132 (size before relaxing) + *fill* 0x000000004014bfd6 0x2 + .text.dhcp_t2_timeout + 0x000000004014bfd8 0x3f esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000004014c017 0x1 + .text.dhcp_reboot + 0x000000004014c018 0x12e esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x15a (size before relaxing) + *fill* 0x000000004014c146 0x2 + .text.dhcp_select + 0x000000004014c148 0x168 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x1a0 (size before relaxing) + .text.dhcp_handle_offer + 0x000000004014c2b0 0x5a esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x62 (size before relaxing) + *fill* 0x000000004014c30a 0x2 + .text.dhcp_discover + 0x000000004014c30c 0x10d esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x135 (size before relaxing) + *fill* 0x000000004014c419 0x3 + .text.dhcp_decline + 0x000000004014c41c 0xad esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xcd (size before relaxing) + *fill* 0x000000004014c4c9 0x3 + .text.dhcp_check + 0x000000004014c4cc 0x43 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4b (size before relaxing) + *fill* 0x000000004014c50f 0x1 + .text.dhcp_bind + 0x000000004014c510 0xbe esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xc2 (size before relaxing) + *fill* 0x000000004014c5ce 0x2 + .text.dhcp_handle_nak + 0x000000004014c5d0 0x1f esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x27 (size before relaxing) + *fill* 0x000000004014c5ef 0x1 + .text.dhcp_dec_pcb_refcount + 0x000000004014c5f0 0x3b esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000004014c62b 0x1 + .text.dhcp_inc_pcb_refcount + 0x000000004014c62c 0x71 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x7d (size before relaxing) + *fill* 0x000000004014c69d 0x3 + .text.dhcp_parse_reply + 0x000000004014c6a0 0x387 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x38b (size before relaxing) + *fill* 0x000000004014ca27 0x1 + .text.dhcp_handle_ack + 0x000000004014ca28 0xff esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x103 (size before relaxing) + *fill* 0x000000004014cb27 0x1 + .text.dhcp_recv + 0x000000004014cb28 0x134 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x14a (size before relaxing) + *fill* 0x000000004014cc5c 0x0 + .text.dhcp_set_struct + 0x000000004014cc5c 0x55 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x000000004014cc5c dhcp_set_struct + *fill* 0x000000004014ccb1 0x3 + .text.dhcp_cleanup + 0x000000004014ccb4 0x28 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x2b (size before relaxing) + 0x000000004014ccb4 dhcp_cleanup + *fill* 0x000000004014ccdc 0x0 + .text.dhcp_network_changed + 0x000000004014ccdc 0x4c esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x53 (size before relaxing) + 0x000000004014ccdc dhcp_network_changed + *fill* 0x000000004014cd28 0x0 + .text.dhcp_arp_reply + 0x000000004014cd28 0x1e esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x22 (size before relaxing) + 0x000000004014cd28 dhcp_arp_reply + *fill* 0x000000004014cd46 0x2 + .text.dhcp_renew + 0x000000004014cd48 0x10d esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x131 (size before relaxing) + 0x000000004014cd48 dhcp_renew + *fill* 0x000000004014ce55 0x3 + .text.dhcp_t1_timeout + 0x000000004014ce58 0x3e esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000004014ce96 0x2 + .text.dhcp_release_and_stop + 0x000000004014ce98 0x128 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x14f (size before relaxing) + 0x000000004014ce98 dhcp_release_and_stop + *fill* 0x000000004014cfc0 0x0 + .text.dhcp_start + 0x000000004014cfc0 0xbc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xc8 (size before relaxing) + 0x000000004014cfc0 dhcp_start + .text.dhcp_coarse_tmr + 0x000000004014d07c 0x67 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x6b (size before relaxing) + 0x000000004014d07c dhcp_coarse_tmr + *fill* 0x000000004014d0e3 0x1 + .text.dhcp_timeout + 0x000000004014d0e4 0x92 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x9e (size before relaxing) + *fill* 0x000000004014d176 0x2 + .text.dhcp_fine_tmr + 0x000000004014d178 0x50 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x54 (size before relaxing) + 0x000000004014d178 dhcp_fine_tmr + .text.dhcp_fine_timeout_cb + 0x000000004014d1c8 0xa esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xe (size before relaxing) + 0x000000004014d1c8 dhcp_fine_timeout_cb + *fill* 0x000000004014d1d2 0x2 + .text.dhcp_release + 0x000000004014d1d4 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + 0x000000004014d1d4 dhcp_release + .text.dhcp_stop + 0x000000004014d1e0 0xa esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xe (size before relaxing) + 0x000000004014d1e0 dhcp_stop + *fill* 0x000000004014d1ea 0x2 + .text.free_etharp_q + 0x000000004014d1ec 0x41 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x49 (size before relaxing) + *fill* 0x000000004014d22d 0x3 + .text.etharp_free_entry + 0x000000004014d230 0x31 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x35 (size before relaxing) + *fill* 0x000000004014d261 0x3 + .text.etharp_find_entry + 0x000000004014d264 0x1a2 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000004014d406 0x2 + .text.etharp_update_arp_entry + 0x000000004014d408 0xba esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xc2 (size before relaxing) + *fill* 0x000000004014d4c2 0x2 + .text.etharp_raw + 0x000000004014d4c4 0xff esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x10b (size before relaxing) + *fill* 0x000000004014d5c3 0x1 + .text.etharp_request_dst + 0x000000004014d5c4 0x21 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x25 (size before relaxing) + *fill* 0x000000004014d5e5 0x3 + .text.etharp_cleanup_netif + 0x000000004014d5e8 0x32 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x000000004014d5e8 etharp_cleanup_netif + *fill* 0x000000004014d61a 0x2 + .text.etharp_input + 0x000000004014d61c 0xec esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xf2 (size before relaxing) + 0x000000004014d61c etharp_input + *fill* 0x000000004014d708 0x0 + .text.etharp_request + 0x000000004014d708 0x15 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x000000004014d708 etharp_request + *fill* 0x000000004014d71d 0x3 + .text.etharp_tmr + 0x000000004014d720 0x98 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x9c (size before relaxing) + 0x000000004014d720 etharp_tmr + .text.etharp_output_to_arp_index + 0x000000004014d7b8 0xb2 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xb6 (size before relaxing) + *fill* 0x000000004014d86a 0x2 + .text.etharp_query + 0x000000004014d86c 0x200 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x20c (size before relaxing) + 0x000000004014d86c etharp_query + .text.etharp_output + 0x000000004014da6c 0x15d esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x165 (size before relaxing) + 0x000000004014da6c etharp_output + *fill* 0x000000004014dbc9 0x3 + .text.icmp_send_response + 0x000000004014dbcc 0xe7 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0xf6 (size before relaxing) + *fill* 0x000000004014dcb3 0x1 + .text.icmp_input + 0x000000004014dcb4 0x1c7 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x1ee (size before relaxing) + 0x000000004014dcb4 icmp_input + *fill* 0x000000004014de7b 0x1 + .text.icmp_dest_unreach + 0x000000004014de7c 0x12 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x000000004014de7c icmp_dest_unreach + *fill* 0x000000004014de8e 0x2 + .text.igmp_start_timer + 0x000000004014de90 0x3e esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x42 (size before relaxing) + *fill* 0x000000004014dece 0x2 + .text.igmp_delaying_member + 0x000000004014ded0 0x22 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x26 (size before relaxing) + *fill* 0x000000004014def2 0x2 + .text.igmp_ip_output_if + 0x000000004014def4 0x2d esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x31 (size before relaxing) + *fill* 0x000000004014df21 0x3 + .text.igmp_send + 0x000000004014df24 0xbf esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xca (size before relaxing) + *fill* 0x000000004014dfe3 0x1 + .text.igmp_timeout + 0x000000004014dfe4 0x26 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000004014e00a 0x2 + .text.igmp_init + 0x000000004014e00c 0x15 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x000000004014e00c igmp_init + *fill* 0x000000004014e021 0x3 + .text.igmp_stop + 0x000000004014e024 0x31 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x000000004014e024 igmp_stop + *fill* 0x000000004014e055 0x3 + .text.igmp_report_groups + 0x000000004014e058 0x1f esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x000000004014e058 igmp_report_groups + *fill* 0x000000004014e077 0x1 + .text.igmp_lookup_group + 0x000000004014e078 0x82 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x86 (size before relaxing) + *fill* 0x000000004014e0fa 0x2 + .text.igmp_start + 0x000000004014e0fc 0x36 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x000000004014e0fc igmp_start + *fill* 0x000000004014e132 0x2 + .text.igmp_input + 0x000000004014e134 0xf7 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x10a (size before relaxing) + 0x000000004014e134 igmp_input + *fill* 0x000000004014e22b 0x1 + .text.igmp_joingroup_netif + 0x000000004014e22c 0x85 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x89 (size before relaxing) + 0x000000004014e22c igmp_joingroup_netif + *fill* 0x000000004014e2b1 0x3 + .text.igmp_joingroup + 0x000000004014e2b4 0x5c esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x000000004014e2b4 igmp_joingroup + .text.igmp_leavegroup_netif + 0x000000004014e310 0x89 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x95 (size before relaxing) + 0x000000004014e310 igmp_leavegroup_netif + *fill* 0x000000004014e399 0x3 + .text.igmp_leavegroup + 0x000000004014e39c 0x5b esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x5f (size before relaxing) + 0x000000004014e39c igmp_leavegroup + *fill* 0x000000004014e3f7 0x1 + .text.igmp_tmr + 0x000000004014e3f8 0x66 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x000000004014e3f8 igmp_tmr + *fill* 0x000000004014e45e 0x2 + .text.igmp_timeout_cb + 0x000000004014e460 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xb (size before relaxing) + *fill* 0x000000004014e468 0x0 + .text.ip4_input_accept + 0x000000004014e468 0x30 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x34 (size before relaxing) + .text.ip4_route + 0x000000004014e498 0x70 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x74 (size before relaxing) + 0x000000004014e498 ip4_route + .text.ip4_route_src + 0x000000004014e508 0x1a esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x1e (size before relaxing) + 0x000000004014e508 ip4_route_src + *fill* 0x000000004014e522 0x2 + .text.ip4_input + 0x000000004014e524 0x293 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x2ba (size before relaxing) + 0x000000004014e524 ip4_input + *fill* 0x000000004014e7b7 0x1 + .text.ip4_output_if_opt_src + 0x000000004014e7b8 0x28d esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x2a1 (size before relaxing) + 0x000000004014e7b8 ip4_output_if_opt_src + *fill* 0x000000004014ea45 0x3 + .text.ip4_output_if_opt + 0x000000004014ea48 0x35 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x000000004014ea48 ip4_output_if_opt + *fill* 0x000000004014ea7d 0x3 + .text.ip4_output_if + 0x000000004014ea80 0x25 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x29 (size before relaxing) + 0x000000004014ea80 ip4_output_if + *fill* 0x000000004014eaa5 0x3 + .text.ip4_output_if_src + 0x000000004014eaa8 0x25 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x29 (size before relaxing) + 0x000000004014eaa8 ip4_output_if_src + *fill* 0x000000004014eacd 0x3 + .text.ip4addr_ntoa_r + 0x000000004014ead0 0x92 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x000000004014ead0 ip4addr_ntoa_r + *fill* 0x000000004014eb62 0x2 + .text.ip4_frag + 0x000000004014eb64 0x17d esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + 0x195 (size before relaxing) + 0x000000004014eb64 ip4_frag + *fill* 0x000000004014ece1 0x3 + .text.icmp6_send_response_with_addrs_and_netif + 0x000000004014ece4 0xe3 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0xef (size before relaxing) + *fill* 0x000000004014edc7 0x1 + .text.icmp6_send_response + 0x000000004014edc8 0x3e esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x42 (size before relaxing) + *fill* 0x000000004014ee06 0x2 + .text.icmp6_input + 0x000000004014ee08 0xff esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x12e (size before relaxing) + 0x000000004014ee08 icmp6_input + *fill* 0x000000004014ef07 0x1 + .text.icmp6_dest_unreach + 0x000000004014ef08 0x14 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x000000004014ef08 icmp6_dest_unreach + .text.icmp6_param_problem + 0x000000004014ef1c 0x1a esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x000000004014ef1c icmp6_param_problem + *fill* 0x000000004014ef36 0x2 + .text.ip6_input_accept + 0x000000004014ef38 0x82 esp-idf/lwip/liblwip.a(ip6.c.obj) + *fill* 0x000000004014efba 0x2 + .text.ip6_route + 0x000000004014efbc 0x288 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x28c (size before relaxing) + 0x000000004014efbc ip6_route + .text.ip6_select_source_address + 0x000000004014f244 0x1bb esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x000000004014f244 ip6_select_source_address + *fill* 0x000000004014f3ff 0x1 + .text.ip6_input + 0x000000004014f400 0x6e5 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x765 (size before relaxing) + 0x000000004014f400 ip6_input + *fill* 0x000000004014fae5 0x3 + .text.ip6_output_if_src + 0x000000004014fae8 0x355 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x365 (size before relaxing) + 0x000000004014fae8 ip6_output_if_src + *fill* 0x000000004014fe3d 0x3 + .text.ip6_output_if + 0x000000004014fe40 0x69 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x000000004014fe40 ip6_output_if + *fill* 0x000000004014fea9 0x3 + .text.ip6_options_add_hbh_ra + 0x000000004014feac 0x3e esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x42 (size before relaxing) + 0x000000004014feac ip6_options_add_hbh_ra + *fill* 0x000000004014feea 0x2 + .text.ip6_frag + 0x000000004014feec 0x161 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x179 (size before relaxing) + 0x000000004014feec ip6_frag + *fill* 0x000000004015004d 0x3 + .text.mld6_delayed_report + 0x0000000040150050 0x58 esp-idf/lwip/liblwip.a(mld6.c.obj) + .text.mld6_new_group + 0x00000000401500a8 0x61 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x65 (size before relaxing) + *fill* 0x0000000040150109 0x3 + .text.mld6_send + 0x000000004015010c 0x110 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x124 (size before relaxing) + .text.mld6_stop + 0x000000004015021c 0x31 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x000000004015021c mld6_stop + *fill* 0x000000004015024d 0x3 + .text.mld6_report_groups + 0x0000000040150250 0x1b esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x0000000040150250 mld6_report_groups + *fill* 0x000000004015026b 0x1 + .text.mld6_input + 0x000000004015026c 0x174 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x187 (size before relaxing) + 0x000000004015026c mld6_input + *fill* 0x00000000401503e0 0x0 + .text.mld6_joingroup_netif + 0x00000000401503e0 0xf5 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xfd (size before relaxing) + 0x00000000401503e0 mld6_joingroup_netif + *fill* 0x00000000401504d5 0x3 + .text.mld6_joingroup + 0x00000000401504d8 0x42 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x49 (size before relaxing) + 0x00000000401504d8 mld6_joingroup + *fill* 0x000000004015051a 0x2 + .text.mld6_leavegroup_netif + 0x000000004015051c 0xe9 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xf5 (size before relaxing) + 0x000000004015051c mld6_leavegroup_netif + *fill* 0x0000000040150605 0x3 + .text.mld6_leavegroup + 0x0000000040150608 0x45 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4d (size before relaxing) + 0x0000000040150608 mld6_leavegroup + *fill* 0x000000004015064d 0x3 + .text.mld6_tmr + 0x0000000040150650 0x72 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x76 (size before relaxing) + 0x0000000040150650 mld6_tmr + *fill* 0x00000000401506c2 0x2 + .text.mld6_timeout_cb + 0x00000000401506c4 0x8 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xb (size before relaxing) + *fill* 0x00000000401506cc 0x0 + .text.nd6_find_neighbor_cache_entry + 0x00000000401506cc 0x72 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000004015073e 0x2 + .text.nd6_find_destination_cache_entry + 0x0000000040150740 0x70 esp-idf/lwip/liblwip.a(nd6.c.obj) + .text.nd6_new_destination_cache_entry + 0x00000000401507b0 0x62 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x0000000040150812 0x2 + .text.nd6_is_prefix_in_netif + 0x0000000040150814 0xb9 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x00000000401508cd 0x3 + .text.nd6_select_router + 0x00000000401508d0 0xc0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .text.nd6_get_router + 0x0000000040150990 0x58 esp-idf/lwip/liblwip.a(nd6.c.obj) + .text.nd6_get_onlink_prefix + 0x00000000401509e8 0x5e esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x0000000040150a46 0x2 + .text.nd6_new_onlink_prefix + 0x0000000040150a48 0xae esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x0000000040150af6 0x2 + .text.nd6_send_q + 0x0000000040150af8 0x132 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x136 (size before relaxing) + *fill* 0x0000000040150c2a 0x2 + .text.nd6_duplicate_addr_detected + 0x0000000040150c2c 0x42 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4a (size before relaxing) + *fill* 0x0000000040150c6e 0x2 + .text.nd6_process_autoconfig_prefix + 0x0000000040150c70 0x23f esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x246 (size before relaxing) + *fill* 0x0000000040150eaf 0x1 + .text.nd6_free_q + 0x0000000040150eb0 0x59 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x61 (size before relaxing) + *fill* 0x0000000040150f09 0x3 + .text.nd6_free_neighbor_cache_entry + 0x0000000040150f0c 0x6b esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x0000000040150f77 0x1 + .text.nd6_new_neighbor_cache_entry + 0x0000000040150f78 0x1e2 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1ea (size before relaxing) + *fill* 0x000000004015115a 0x2 + .text.nd6_send_na + 0x000000004015115c 0x162 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x16a (size before relaxing) + *fill* 0x00000000401512be 0x2 + .text.nd6_send_rs + 0x00000000401512c0 0xec esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xf8 (size before relaxing) + .text.nd6_send_ns + 0x00000000401513ac 0x1a0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1ac (size before relaxing) + .text.nd6_send_neighbor_cache_probe + 0x000000004015154c 0xe esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x12 (size before relaxing) + *fill* 0x000000004015155a 0x2 + .text.nd6_new_router + 0x000000004015155c 0x13e esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x142 (size before relaxing) + *fill* 0x000000004015169a 0x2 + .text.nd6_get_next_hop_entry + 0x000000004015169c 0x341 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x359 (size before relaxing) + *fill* 0x00000000401519dd 0x3 + .text.nd6_queue_packet + 0x00000000401519e0 0x105 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x119 (size before relaxing) + *fill* 0x0000000040151ae5 0x3 + .text.nd6_input + 0x0000000040151ae8 0xcfb esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xd6e (size before relaxing) + 0x0000000040151ae8 nd6_input + *fill* 0x00000000401527e3 0x1 + .text.nd6_tmr 0x00000000401527e4 0x463 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x47b (size before relaxing) + 0x00000000401527e4 nd6_tmr + *fill* 0x0000000040152c47 0x1 + .text.nd6_clear_destination_cache + 0x0000000040152c48 0x29 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x0000000040152c48 nd6_clear_destination_cache + *fill* 0x0000000040152c71 0x3 + .text.nd6_find_route + 0x0000000040152c74 0x92 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x0000000040152c74 nd6_find_route + *fill* 0x0000000040152d06 0x2 + .text.nd6_get_next_hop_addr_or_queue + 0x0000000040152d08 0x8d esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x95 (size before relaxing) + 0x0000000040152d08 nd6_get_next_hop_addr_or_queue + *fill* 0x0000000040152d95 0x3 + .text.nd6_get_destination_mtu + 0x0000000040152d98 0x2a esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x2e (size before relaxing) + 0x0000000040152d98 nd6_get_destination_mtu + *fill* 0x0000000040152dc2 0x2 + .text.nd6_reachability_hint + 0x0000000040152dc4 0x160 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x164 (size before relaxing) + 0x0000000040152dc4 nd6_reachability_hint + .text.nd6_cleanup_netif + 0x0000000040152f24 0xa6 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xac (size before relaxing) + 0x0000000040152f24 nd6_cleanup_netif + *fill* 0x0000000040152fca 0x2 + .text.nd6_adjust_mld_membership + 0x0000000040152fcc 0xa3 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xa6 (size before relaxing) + 0x0000000040152fcc nd6_adjust_mld_membership + *fill* 0x000000004015306f 0x1 + .text.ethernet_input + 0x0000000040153070 0xf8 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x104 (size before relaxing) + 0x0000000040153070 ethernet_input + .text.ethernet_output + 0x0000000040153168 0x6d esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x71 (size before relaxing) + 0x0000000040153168 ethernet_output + *fill* 0x00000000401531d5 0x3 + .text.lwip_init_tcp_isn + 0x00000000401531d8 0x2a esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + 0x00000000401531d8 lwip_init_tcp_isn + *fill* 0x0000000040153202 0x2 + .text.lwip_hook_tcp_isn + 0x0000000040153204 0xde esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + 0xe2 (size before relaxing) + 0x0000000040153204 lwip_hook_tcp_isn + *fill* 0x00000000401532e2 0x2 + .text.ip4_route_src_hook + 0x00000000401532e4 0x2e esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x00000000401532e4 ip4_route_src_hook + *fill* 0x0000000040153312 0x2 + .text.dhcp_parse_extra_opts + 0x0000000040153314 0x75 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x79 (size before relaxing) + 0x0000000040153314 dhcp_parse_extra_opts + *fill* 0x0000000040153389 0x3 + .text.dhcp_append_extra_opts + 0x000000004015338c 0x5e esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x000000004015338c dhcp_append_extra_opts + *fill* 0x00000000401533ea 0x2 + .text.sys_thread_sem_free + 0x00000000401533ec 0x1a esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x0000000040153406 0x2 + .text.sys_mutex_new + 0x0000000040153408 0x1a esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x0000000040153408 sys_mutex_new + *fill* 0x0000000040153422 0x2 + .text.sys_mutex_lock + 0x0000000040153424 0x23 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x0000000040153424 sys_mutex_lock + *fill* 0x0000000040153447 0x1 + .text.sys_mutex_unlock + 0x0000000040153448 0x27 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x0000000040153448 sys_mutex_unlock + *fill* 0x000000004015346f 0x1 + .text.sys_sem_new + 0x0000000040153470 0x61 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x0000000040153470 sys_sem_new + *fill* 0x00000000401534d1 0x3 + .text.sys_sem_signal + 0x00000000401534d4 0x28 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000401534d4 sys_sem_signal + .text.sys_sem_signal_isr + 0x00000000401534fc 0x1c esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000401534fc sys_sem_signal_isr + .text.sys_arch_sem_wait + 0x0000000040153518 0x5c esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x0000000040153518 sys_arch_sem_wait + .text.sys_sem_free + 0x0000000040153574 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x0000000040153574 sys_sem_free + *fill* 0x0000000040153586 0x2 + .text.sys_mbox_new + 0x0000000040153588 0x3a esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x3e (size before relaxing) + 0x0000000040153588 sys_mbox_new + *fill* 0x00000000401535c2 0x2 + .text.sys_mbox_post + 0x00000000401535c4 0x2c esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000401535c4 sys_mbox_post + .text.sys_mbox_trypost + 0x00000000401535f0 0x22 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000401535f0 sys_mbox_trypost + *fill* 0x0000000040153612 0x2 + .text.sys_arch_mbox_fetch + 0x0000000040153614 0x68 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x0000000040153614 sys_arch_mbox_fetch + .text.sys_arch_mbox_tryfetch + 0x000000004015367c 0x3a esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x000000004015367c sys_arch_mbox_tryfetch + *fill* 0x00000000401536b6 0x2 + .text.sys_mbox_free + 0x00000000401536b8 0x3e esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000401536b8 sys_mbox_free + *fill* 0x00000000401536f6 0x2 + .text.sys_thread_new + 0x00000000401536f8 0x28 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000401536f8 sys_thread_new + .text.sys_init + 0x0000000040153720 0x41 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x48 (size before relaxing) + 0x0000000040153720 sys_init + *fill* 0x0000000040153761 0x3 + .text.sys_now 0x0000000040153764 0x10 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x0000000040153764 sys_now + .text.sys_arch_protect + 0x0000000040153774 0x1b esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x21 (size before relaxing) + 0x0000000040153774 sys_arch_protect + *fill* 0x000000004015378f 0x1 + .text.sys_arch_unprotect + 0x0000000040153790 0xb esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xe (size before relaxing) + 0x0000000040153790 sys_arch_unprotect + *fill* 0x000000004015379b 0x1 + .text.sys_thread_sem_init + 0x000000004015379c 0x74 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x78 (size before relaxing) + 0x000000004015379c sys_thread_sem_init + .text.sys_thread_sem_get + 0x0000000040153810 0x1a esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x0000000040153810 sys_thread_sem_get + *fill* 0x000000004015382a 0x2 + .text.sys_thread_tcpip + 0x000000004015382c 0x70 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x000000004015382c sys_thread_tcpip + .text.lwip_get_socket_select_semaphore + 0x000000004015389c 0xa esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0xd (size before relaxing) + *fill* 0x00000000401538a6 0x2 + .text.lwip_stop_socket_select_isr + 0x00000000401538a8 0x12 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x16 (size before relaxing) + *fill* 0x00000000401538ba 0x2 + .text.lwip_stop_socket_select + 0x00000000401538bc 0xa esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0xe (size before relaxing) + *fill* 0x00000000401538c6 0x2 + .text.lwip_ioctl_r_wrapper + 0x00000000401538c8 0x3a esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + *fill* 0x0000000040153902 0x2 + .text.lwip_fcntl_r_wrapper + 0x0000000040153904 0x10 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x14 (size before relaxing) + .text.lwip_fstat + 0x0000000040153914 0x45 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + *fill* 0x0000000040153959 0x3 + .text.esp_vfs_lwip_sockets_register + 0x000000004015395c 0x6c esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x000000004015395c esp_vfs_lwip_sockets_register + .text.add_offer_options + 0x00000000401539c8 0x182 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x186 (size before relaxing) + *fill* 0x0000000040153b4a 0x2 + .text.kill_oldest_dhcps_pool + 0x0000000040153b4c 0x6a esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x0000000040153bb6 0x2 + .text.parse_options + 0x0000000040153bb8 0x91 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x0000000040153c49 0x3 + .text.create_msg + 0x0000000040153c4c 0xaf esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x0000000040153cfb 0x1 + .text.dhcps_new + 0x0000000040153cfc 0x36 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x0000000040153cfc dhcps_new + *fill* 0x0000000040153d32 0x2 + .text.dhcps_delete + 0x0000000040153d34 0x1e esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x0000000040153d34 dhcps_delete + *fill* 0x0000000040153d52 0x2 + .text.dhcps_tmr + 0x0000000040153d54 0x76 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x0000000040153dca 0x2 + .text.parse_msg + 0x0000000040153dcc 0x1ec esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x200 (size before relaxing) + .text.dhcps_pbuf_alloc + 0x0000000040153fb8 0x1d esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x0000000040153fb8 dhcps_pbuf_alloc + *fill* 0x0000000040153fd5 0x3 + .text.send_offer + 0x0000000040153fd8 0x93 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xa3 (size before relaxing) + *fill* 0x000000004015406b 0x1 + .text.send_ack + 0x000000004015406c 0xa4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xb7 (size before relaxing) + *fill* 0x0000000040154110 0x0 + .text.send_nak + 0x0000000040154110 0x8b esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x9b (size before relaxing) + *fill* 0x000000004015419b 0x1 + .text.handle_dhcp + 0x000000004015419c 0xd0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xdf (size before relaxing) + *fill* 0x000000004015426c 0x0 + .text.dhcps_start + 0x000000004015426c 0xaa esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xba (size before relaxing) + 0x000000004015426c dhcps_start + *fill* 0x0000000040154316 0x2 + .text.dhcps_stop + 0x0000000040154318 0x79 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x85 (size before relaxing) + 0x0000000040154318 dhcps_stop + *fill* 0x0000000040154391 0x3 + .text.netconn_apimsg + 0x0000000040154394 0x1e esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x22 (size before relaxing) + *fill* 0x00000000401543b2 0x2 + .text.netconn_tcp_recvd_msg + 0x00000000401543b4 0x31 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x35 (size before relaxing) + *fill* 0x00000000401543e5 0x3 + .text.netconn_close_shutdown + 0x00000000401543e8 0x25 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x29 (size before relaxing) + *fill* 0x000000004015440d 0x3 + .text.netconn_prepare_delete + 0x0000000040154410 0x1e esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x26 (size before relaxing) + 0x0000000040154410 netconn_prepare_delete + *fill* 0x000000004015442e 0x2 + .text.netconn_delete + 0x0000000040154430 0x2d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x31 (size before relaxing) + 0x0000000040154430 netconn_delete + *fill* 0x000000004015445d 0x3 + .text.netconn_getaddr + 0x0000000040154460 0x3d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x0000000040154460 netconn_getaddr + *fill* 0x000000004015449d 0x3 + .text.netconn_tcp_recvd + 0x00000000401544a0 0x31 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000401544a0 netconn_tcp_recvd + *fill* 0x00000000401544d1 0x3 + .text.netconn_send + 0x00000000401544d4 0x1f esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000401544d4 netconn_send + *fill* 0x00000000401544f3 0x1 + .text.netconn_write_vectors_partly + 0x00000000401544f4 0xe6 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000401544f4 netconn_write_vectors_partly + *fill* 0x00000000401545da 0x2 + .text.netconn_write_partly + 0x00000000401545dc 0x1d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000401545dc netconn_write_partly + *fill* 0x00000000401545f9 0x3 + .text.netconn_err + 0x00000000401545fc 0x1f esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x23 (size before relaxing) + 0x00000000401545fc netconn_err + *fill* 0x000000004015461b 0x1 + .text.netconn_recv_data + 0x000000004015461c 0x148 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x168 (size before relaxing) + .text.netconn_recv_udp_raw_netbuf_flags + 0x0000000040154764 0x31 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x0000000040154764 netconn_recv_udp_raw_netbuf_flags + *fill* 0x0000000040154795 0x3 + .text.netconn_recv_data_tcp + 0x0000000040154798 0xad esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x0000000040154845 0x3 + .text.netconn_recv_tcp_pbuf_flags + 0x0000000040154848 0x31 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x0000000040154848 netconn_recv_tcp_pbuf_flags + *fill* 0x0000000040154879 0x3 + .text.netconn_join_leave_group + 0x000000004015487c 0x2d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x31 (size before relaxing) + 0x000000004015487c netconn_join_leave_group + *fill* 0x00000000401548a9 0x3 + .text.netconn_join_leave_group_netif + 0x00000000401548ac 0x37 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000401548ac netconn_join_leave_group_netif + *fill* 0x00000000401548e3 0x1 + .text.lwip_netconn_err_to_msg + 0x00000000401548e4 0x4a esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000004015492e 0x2 + .text.err_tcp 0x0000000040154930 0x11c esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x128 (size before relaxing) + .text.netconn_mark_mbox_invalid + 0x0000000040154a4c 0x40 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x47 (size before relaxing) + *fill* 0x0000000040154a8c 0x0 + .text.lwip_netconn_do_writemore + 0x0000000040154a8c 0x299 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x29d (size before relaxing) + *fill* 0x0000000040154d25 0x3 + .text.lwip_netconn_do_close_internal + 0x0000000040154d28 0x1ea esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x212 (size before relaxing) + *fill* 0x0000000040154f12 0x2 + .text.poll_tcp + 0x0000000040154f14 0x62 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x69 (size before relaxing) + *fill* 0x0000000040154f76 0x2 + .text.sent_tcp + 0x0000000040154f78 0x66 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x6a (size before relaxing) + *fill* 0x0000000040154fde 0x2 + .text.tcp_do_abort + 0x0000000040154fe0 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x10 (size before relaxing) + .text.lwip_netconn_is_deallocated_msg + 0x0000000040154fec 0x12 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x0000000040154fec lwip_netconn_is_deallocated_msg + *fill* 0x0000000040154ffe 0x2 + .text.lwip_netconn_is_err_msg + 0x0000000040155000 0x4c esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x0000000040155000 lwip_netconn_is_err_msg + .text.netconn_free + 0x000000004015504c 0x5a esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000004015504c netconn_free + *fill* 0x00000000401550a6 0x2 + .text.netconn_drain + 0x00000000401550a8 0xc6 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xea (size before relaxing) + *fill* 0x000000004015516e 0x2 + .text.lwip_netconn_do_delconn + 0x0000000040155170 0x106 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x10e (size before relaxing) + 0x0000000040155170 lwip_netconn_do_delconn + *fill* 0x0000000040155276 0x2 + .text.lwip_netconn_do_send + 0x0000000040155278 0xf2 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x102 (size before relaxing) + 0x0000000040155278 lwip_netconn_do_send + *fill* 0x000000004015536a 0x2 + .text.lwip_netconn_do_recv + 0x000000004015536c 0x44 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x48 (size before relaxing) + 0x000000004015536c lwip_netconn_do_recv + .text.lwip_netconn_do_write + 0x00000000401553b0 0x82 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x8a (size before relaxing) + 0x00000000401553b0 lwip_netconn_do_write + *fill* 0x0000000040155432 0x2 + .text.lwip_netconn_do_getaddr + 0x0000000040155434 0x182 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x0000000040155434 lwip_netconn_do_getaddr + *fill* 0x00000000401555b6 0x2 + .text.lwip_netconn_do_close + 0x00000000401555b8 0xd0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xdb (size before relaxing) + 0x00000000401555b8 lwip_netconn_do_close + *fill* 0x0000000040155688 0x0 + .text.lwip_netconn_do_join_leave_group + 0x0000000040155688 0x71 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x75 (size before relaxing) + 0x0000000040155688 lwip_netconn_do_join_leave_group + *fill* 0x00000000401556f9 0x3 + .text.lwip_netconn_do_join_leave_group_netif + 0x00000000401556fc 0x7c esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x7f (size before relaxing) + 0x00000000401556fc lwip_netconn_do_join_leave_group_netif + *fill* 0x0000000040155778 0x0 + .text.err_to_errno + 0x0000000040155778 0x26 esp-idf/lwip/liblwip.a(err.c.obj) + 0x0000000040155778 err_to_errno + *fill* 0x000000004015579e 0x2 + .text.netbuf_delete + 0x00000000401557a0 0x1b esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x22 (size before relaxing) + 0x00000000401557a0 netbuf_delete + *fill* 0x00000000401557bb 0x1 + .text.netbuf_alloc + 0x00000000401557bc 0x46 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x4a (size before relaxing) + 0x00000000401557bc netbuf_alloc + *fill* 0x0000000040155802 0x2 + .text.netbuf_free + 0x0000000040155804 0x14 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x18 (size before relaxing) + 0x0000000040155804 netbuf_free + .text.inet_cksum_pseudo_base + 0x0000000040155818 0x72 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x7a (size before relaxing) + *fill* 0x000000004015588a 0x2 + .text.inet_chksum_pseudo + 0x000000004015588c 0x38 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x3c (size before relaxing) + 0x000000004015588c inet_chksum_pseudo + .text.ip6_chksum_pseudo + 0x00000000401558c4 0x54 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x00000000401558c4 ip6_chksum_pseudo + .text.ip_chksum_pseudo + 0x0000000040155918 0x32 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x0000000040155918 ip_chksum_pseudo + *fill* 0x000000004015594a 0x2 + .text.inet_chksum + 0x000000004015594c 0x18 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x000000004015594c inet_chksum + .text.inet_chksum_pbuf + 0x0000000040155964 0x56 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x5a (size before relaxing) + 0x0000000040155964 inet_chksum_pbuf + *fill* 0x00000000401559ba 0x2 + .text.esp_netif_action_start + 0x00000000401559bc 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0xe (size before relaxing) + 0x00000000401559bc esp_netif_action_start + *fill* 0x00000000401559c6 0x2 + .text.esp_netif_action_stop + 0x00000000401559c8 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0xe (size before relaxing) + 0x00000000401559c8 esp_netif_action_stop + *fill* 0x00000000401559d2 0x2 + .text.esp_netif_action_connected + 0x00000000401559d4 0x116 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x132 (size before relaxing) + 0x00000000401559d4 esp_netif_action_connected + *fill* 0x0000000040155aea 0x2 + .text.esp_netif_action_disconnected + 0x0000000040155aec 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0xe (size before relaxing) + 0x0000000040155aec esp_netif_action_disconnected + *fill* 0x0000000040155af6 0x2 + .text.esp_netif_action_got_ip + 0x0000000040155af8 0x62 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x66 (size before relaxing) + 0x0000000040155af8 esp_netif_action_got_ip + *fill* 0x0000000040155b5a 0x2 + .text.low_level_output + 0x0000000040155b5c 0x81 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x8d (size before relaxing) + *fill* 0x0000000040155bdd 0x3 + .text.wlanif_input + 0x0000000040155be0 0x4f esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x57 (size before relaxing) + 0x0000000040155be0 wlanif_input + *fill* 0x0000000040155c2f 0x1 + .text.wlanif_init + 0x0000000040155c30 0x48 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x4c (size before relaxing) + 0x0000000040155c30 wlanif_init + .text.wlanif_init_sta + 0x0000000040155c78 0x19 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x1d (size before relaxing) + 0x0000000040155c78 wlanif_init_sta + *fill* 0x0000000040155c91 0x3 + .text.esp_pbuf_free + 0x0000000040155c94 0x13 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x17 (size before relaxing) + *fill* 0x0000000040155ca7 0x1 + .text.esp_pbuf_allocate + 0x0000000040155ca8 0x38 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x40 (size before relaxing) + 0x0000000040155ca8 esp_pbuf_allocate + .text.wpa_attach + 0x0000000040155ce0 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x2c (size before relaxing) + 0x0000000040155ce0 wpa_attach + *fill* 0x0000000040155d05 0x3 + .text.wpa_config_done + 0x0000000040155d08 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xb (size before relaxing) + 0x0000000040155d08 wpa_config_done + *fill* 0x0000000040155d10 0x0 + .text.wpa_ap_get_wpa_ie + 0x0000000040155d10 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x0000000040155d10 wpa_ap_get_wpa_ie + .text.wpa_ap_rx_eapol + 0x0000000040155d40 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x0000000040155d40 wpa_ap_rx_eapol + *fill* 0x0000000040155d6d 0x3 + .text.wpa_deattach + 0x0000000040155d70 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x2a (size before relaxing) + 0x0000000040155d70 wpa_deattach + *fill* 0x0000000040155d97 0x1 + .text.wpa_parse_wpa_ie_wrapper + 0x0000000040155d98 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x48 (size before relaxing) + 0x0000000040155d98 wpa_parse_wpa_ie_wrapper + .text.hostap_sta_join + 0x0000000040155dd4 0x9e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xa6 (size before relaxing) + *fill* 0x0000000040155e72 0x2 + .text.wpa_sta_disconnected_cb + 0x0000000040155e74 0x3d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4c (size before relaxing) + *fill* 0x0000000040155eb1 0x3 + .text.wpa_sta_connected_cb + 0x0000000040155eb4 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xe (size before relaxing) + *fill* 0x0000000040155ebe 0x2 + .text.wpa_install_key + 0x0000000040155ec0 0x23 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x0000000040155ec0 wpa_install_key + *fill* 0x0000000040155ee3 0x1 + .text.wpa_get_key + 0x0000000040155ee4 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x0000000040155ee4 wpa_get_key + *fill* 0x0000000040155f01 0x3 + .text.wpa_deauthenticate + 0x0000000040155f04 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xe (size before relaxing) + 0x0000000040155f04 wpa_deauthenticate + *fill* 0x0000000040155f0f 0x1 + .text.wpa_config_profile + 0x0000000040155f10 0x49 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x61 (size before relaxing) + 0x0000000040155f10 wpa_config_profile + *fill* 0x0000000040155f59 0x3 + .text.wpa_config_bss + 0x0000000040155f5c 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x49 (size before relaxing) + 0x0000000040155f5c wpa_config_bss + *fill* 0x0000000040155f91 0x3 + .text.wpa_sta_connect + 0x0000000040155f94 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x3d (size before relaxing) + 0x0000000040155f94 wpa_sta_connect + *fill* 0x0000000040155fc9 0x3 + .text.wpa_config_assoc_ie + 0x0000000040155fcc 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x0000000040155fcc wpa_config_assoc_ie + *fill* 0x0000000040155ff7 0x1 + .text.wpa_neg_complete + 0x0000000040155ff8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xb (size before relaxing) + 0x0000000040155ff8 wpa_neg_complete + *fill* 0x0000000040156000 0x0 + .text.esp_supplicant_init + 0x0000000040156000 0xb6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xca (size before relaxing) + 0x0000000040156000 esp_supplicant_init + *fill* 0x00000000401560b6 0x2 + .text.esp_supplicant_deinit + 0x00000000401560b8 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x26 (size before relaxing) + 0x00000000401560b8 esp_supplicant_deinit + *fill* 0x00000000401560d2 0x2 + .text.ieee80211_handle_rx_frm + 0x00000000401560d4 0x51 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + *fill* 0x0000000040156125 0x3 + .text.esp_supplicant_unset_all_appie + 0x0000000040156128 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x0000000040156128 esp_supplicant_unset_all_appie + .text.esp_supplicant_common_deinit + 0x0000000040156144 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x26 (size before relaxing) + 0x0000000040156144 esp_supplicant_common_deinit + *fill* 0x0000000040156166 0x2 + .text.esp_supplicant_common_init + 0x0000000040156168 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x3a (size before relaxing) + 0x0000000040156168 esp_supplicant_common_init + *fill* 0x000000004015619a 0x2 + .text.esp_set_assoc_ie + 0x000000004015619c 0x4b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x000000004015619c esp_set_assoc_ie + *fill* 0x00000000401561e7 0x1 + .text.wpa3_parse_sae_commit + 0x00000000401561e8 0xd2 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0xd6 (size before relaxing) + *fill* 0x00000000401562ba 0x2 + .text.wpa3_parse_sae_confirm + 0x00000000401562bc 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x3d (size before relaxing) + *fill* 0x00000000401562f5 0x3 + .text.wpa3_build_sae_commit + 0x00000000401562f8 0x231 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x26d (size before relaxing) + *fill* 0x0000000040156529 0x3 + .text.wpa3_build_sae_confirm + 0x000000004015652c 0x61 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x69 (size before relaxing) + *fill* 0x000000004015658d 0x3 + .text.wpa3_build_sae_msg + 0x0000000040156590 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .text.wpa3_process_rx_confirm + 0x00000000401565ec 0xae esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0xc6 (size before relaxing) + *fill* 0x000000004015669a 0x2 + .text.esp_wpa3_free_sae_data + 0x000000004015669c 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x4e (size before relaxing) + 0x000000004015669c esp_wpa3_free_sae_data + *fill* 0x00000000401566e2 0x2 + .text.wpa3_parse_sae_msg + 0x00000000401566e4 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x36 (size before relaxing) + *fill* 0x0000000040156716 0x2 + .text.esp_wifi_register_wpa3_cb + 0x0000000040156718 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x0000000040156718 esp_wifi_register_wpa3_cb + *fill* 0x0000000040156729 0x3 + .text.wpa3_hostap_post_evt + 0x000000004015672c 0xea esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x000000004015672c wpa3_hostap_post_evt + *fill* 0x0000000040156816 0x2 + .text.wpa3_hostap_handle_auth + 0x0000000040156818 0x9e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0xaa (size before relaxing) + *fill* 0x00000000401568b6 0x2 + .text.wpa3_hostap_auth_init + 0x00000000401568b8 0x94 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x00000000401568b8 wpa3_hostap_auth_init + .text.wpa3_hostap_auth_deinit + 0x000000004015694c 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x000000004015694c wpa3_hostap_auth_deinit + .text.esp_send_sae_auth_reply + 0x0000000040156964 0x69 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x6d (size before relaxing) + 0x0000000040156964 esp_send_sae_auth_reply + *fill* 0x00000000401569cd 0x3 + .text.wpa3_process_rx_commit + 0x00000000401569d0 0xfa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x10e (size before relaxing) + *fill* 0x0000000040156aca 0x2 + .text.esp_wpa3_hostap_task + 0x0000000040156acc 0xc3 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0xcb (size before relaxing) + *fill* 0x0000000040156b8f 0x1 + .text.esp_wifi_register_wpa3_ap_cb + 0x0000000040156b90 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x0000000040156b90 esp_wifi_register_wpa3_ap_cb + *fill* 0x0000000040156b9b 0x1 + .text.owe_build_dhie + 0x0000000040156b9c 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x18 (size before relaxing) + 0x0000000040156b9c owe_build_dhie + .text.owe_deinit + 0x0000000040156bb0 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x36 (size before relaxing) + 0x0000000040156bb0 owe_deinit + *fill* 0x0000000040156bde 0x2 + .text.esp_wifi_register_owe_cb + 0x0000000040156be0 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x0000000040156be0 esp_wifi_register_owe_cb + *fill* 0x0000000040156bf1 0x3 + .text.hostapd_get_hapd_data + 0x0000000040156bf4 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x0000000040156bf4 hostapd_get_hapd_data + *fill* 0x0000000040156bfe 0x2 + .text.hostap_init + 0x0000000040156c00 0x23f esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x25f (size before relaxing) + 0x0000000040156c00 hostap_init + *fill* 0x0000000040156e3f 0x1 + .text.hostapd_cleanup + 0x0000000040156e40 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x7a (size before relaxing) + 0x0000000040156e40 hostapd_cleanup + *fill* 0x0000000040156eb2 0x2 + .text.hostap_deinit + 0x0000000040156eb4 0x45 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x50 (size before relaxing) + 0x0000000040156eb4 hostap_deinit + *fill* 0x0000000040156ef9 0x3 + .text.esp_wifi_build_rsnxe + 0x0000000040156efc 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x0000000040156efc esp_wifi_build_rsnxe + .text.esp_send_assoc_resp + 0x0000000040156f4c 0x71 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x7d (size before relaxing) + 0x0000000040156f4c esp_send_assoc_resp + *fill* 0x0000000040156fbd 0x3 + .text.ecp_opp 0x0000000040156fc0 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x3a (size before relaxing) + *fill* 0x0000000040156ff6 0x2 + .text.crypto_alloc_key + 0x0000000040156ff8 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x18 (size before relaxing) + .text.crypto_ec_deinit + 0x000000004015700c 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x000000004015700c crypto_ec_deinit + *fill* 0x0000000040157023 0x1 + .text.crypto_ec_init + 0x0000000040157024 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x3c (size before relaxing) + 0x0000000040157024 crypto_ec_init + .text.crypto_ec_point_init + 0x0000000040157058 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x1c (size before relaxing) + 0x0000000040157058 crypto_ec_point_init + .text.crypto_ec_prime_len + 0x0000000040157070 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + 0x0000000040157070 crypto_ec_prime_len + .text.crypto_ec_order_len + 0x000000004015707c 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + 0x000000004015707c crypto_ec_order_len + *fill* 0x0000000040157089 0x3 + .text.crypto_ec_prime_len_bits + 0x000000004015708c 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + 0x000000004015708c crypto_ec_prime_len_bits + .text.crypto_ec_point_deinit + 0x0000000040157098 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x16 (size before relaxing) + 0x0000000040157098 crypto_ec_point_deinit + *fill* 0x00000000401570aa 0x2 + .text.crypto_ec_point_to_bin + 0x00000000401570ac 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4a (size before relaxing) + 0x00000000401570ac crypto_ec_point_to_bin + *fill* 0x00000000401570ee 0x2 + .text.crypto_ec_point_from_bin + 0x00000000401570f0 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x64 (size before relaxing) + 0x00000000401570f0 crypto_ec_point_from_bin + .text.crypto_ec_point_add + 0x0000000040157144 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x3e (size before relaxing) + 0x0000000040157144 crypto_ec_point_add + *fill* 0x000000004015717a 0x2 + .text.crypto_ec_point_mul + 0x000000004015717c 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x66 (size before relaxing) + 0x000000004015717c crypto_ec_point_mul + *fill* 0x00000000401571ce 0x2 + .text.crypto_ec_point_invert + 0x00000000401571d0 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x18 (size before relaxing) + 0x00000000401571d0 crypto_ec_point_invert + .text.crypto_ec_point_compute_y_sqr + 0x00000000401571e4 0xd4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x110 (size before relaxing) + 0x00000000401571e4 crypto_ec_point_compute_y_sqr + .text.crypto_ec_point_solve_y_coord + 0x00000000401572b8 0xa2 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xc2 (size before relaxing) + 0x00000000401572b8 crypto_ec_point_solve_y_coord + *fill* 0x000000004015735a 0x2 + .text.crypto_ec_point_is_at_infinity + 0x000000004015735c 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + 0x000000004015735c crypto_ec_point_is_at_infinity + .text.crypto_ec_point_is_on_curve + 0x0000000040157368 0x8c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xa4 (size before relaxing) + 0x0000000040157368 crypto_ec_point_is_on_curve + .text.crypto_ec_point_cmp + 0x00000000401573f4 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x00000000401573f4 crypto_ec_point_cmp + *fill* 0x0000000040157405 0x3 + .text.crypto_ec_set_pubkey_point + 0x0000000040157408 0xaf esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xda (size before relaxing) + 0x0000000040157408 crypto_ec_set_pubkey_point + *fill* 0x00000000401574b7 0x1 + .text.crypto_ec_free_key + 0x00000000401574b8 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x16 (size before relaxing) + 0x00000000401574b8 crypto_ec_free_key + *fill* 0x00000000401574ca 0x2 + .text.crypto_ec_key_group + 0x00000000401574cc 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x2e (size before relaxing) + 0x00000000401574cc crypto_ec_key_group + *fill* 0x00000000401574f6 0x2 + .text.crypto_ecdh_deinit + 0x00000000401574f8 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x00000000401574f8 crypto_ecdh_deinit + *fill* 0x000000004015750f 0x1 + .text.crypto_ecdh_init + 0x0000000040157510 0x85 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xb1 (size before relaxing) + 0x0000000040157510 crypto_ecdh_init + *fill* 0x0000000040157595 0x3 + .text.crypto_ecdh_get_pubkey + 0x0000000040157598 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4c (size before relaxing) + 0x0000000040157598 crypto_ecdh_get_pubkey + .text.crypto_ecdh_set_peerkey + 0x00000000401575dc 0x209 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x239 (size before relaxing) + 0x00000000401575dc crypto_ecdh_set_peerkey + *fill* 0x00000000401577e5 0x3 + .text.crypto_ec_key_parse_pub + 0x00000000401577e8 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x38 (size before relaxing) + 0x00000000401577e8 crypto_ec_key_parse_pub + .text.crypto_ec_key_deinit + 0x0000000040157818 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x16 (size before relaxing) + 0x0000000040157818 crypto_ec_key_deinit + *fill* 0x000000004015782a 0x2 + .text.crypto_ec_key_verify_signature + 0x000000004015782c 0x74 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x84 (size before relaxing) + 0x000000004015782c crypto_ec_key_verify_signature + .text.timeout_exists + 0x00000000401578a0 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_run_timer + 0x00000000401578c4 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_remove_timeout + 0x00000000401578dc 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x4c (size before relaxing) + .text.eloop_init + 0x0000000040157924 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x0000000040157924 eloop_init + *fill* 0x000000004015797e 0x2 + .text.eloop_register_timeout + 0x0000000040157980 0x148 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x14c (size before relaxing) + 0x0000000040157980 eloop_register_timeout + .text.eloop_cancel_timeout + 0x0000000040157ac8 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x3b (size before relaxing) + 0x0000000040157ac8 eloop_cancel_timeout + *fill* 0x0000000040157b00 0x0 + .text.eloop_run + 0x0000000040157b00 0x121 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x12d (size before relaxing) + 0x0000000040157b00 eloop_run + *fill* 0x0000000040157c21 0x3 + .text.eloop_run_wrapper + 0x0000000040157c24 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0xd (size before relaxing) + *fill* 0x0000000040157c2e 0x2 + .text.eloop_destroy + 0x0000000040157c30 0x77 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x7b (size before relaxing) + 0x0000000040157c30 eloop_destroy + *fill* 0x0000000040157ca7 0x1 + .text.hostapd_derive_psk + 0x0000000040157ca8 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + *fill* 0x0000000040157cd6 0x2 + .text.hostapd_setup_sae_pt + 0x0000000040157cd8 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x62 (size before relaxing) + 0x0000000040157cd8 hostapd_setup_sae_pt + *fill* 0x0000000040157d36 0x2 + .text.hostapd_setup_wpa_psk + 0x0000000040157d38 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x3e (size before relaxing) + 0x0000000040157d38 hostapd_setup_wpa_psk + *fill* 0x0000000040157d72 0x2 + .text.hostapd_get_psk + 0x0000000040157d74 0x3b esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x0000000040157d74 hostapd_get_psk + *fill* 0x0000000040157daf 0x1 + .text.hostapd_config_clear_wpa_psk + 0x0000000040157db0 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x0000000040157db0 hostapd_config_clear_wpa_psk + *fill* 0x0000000040157dcd 0x3 + .text.hostapd_config_free_bss + 0x0000000040157dd0 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x1f (size before relaxing) + 0x0000000040157dd0 hostapd_config_free_bss + *fill* 0x0000000040157deb 0x1 + .text.wpa_auth_get_sm + 0x0000000040157dec 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000040157e11 0x3 + .text.wpa_auth_add_sm + 0x0000000040157e14 0x3f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000040157e53 0x1 + .text.wpa_auth_del_sm + 0x0000000040157e54 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_use_aes_cmac + 0x0000000040157e84 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000040157e96 0x2 + .text.wpa_receive_error_report + 0x0000000040157e98 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .text.wpa_free_sta_sm + 0x0000000040157ea4 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x46 (size before relaxing) + *fill* 0x0000000040157ee6 0x2 + .text.wpa_auth_sm_ptk_update + 0x0000000040157ee8 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000040157f09 0x3 + .text.wpa_group_init_gmk_and_counter + 0x0000000040157f0c 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x76 (size before relaxing) + *fill* 0x0000000040157f76 0x2 + .text.sm_WPA_PTK_AUTHENTICATION_Enter + 0x0000000040157f78 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000040157fad 0x3 + .text.wpa_gmk_to_gtk + 0x0000000040157fb0 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x54 (size before relaxing) + .text.wpa_gtk_update + 0x0000000040158000 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x9c (size before relaxing) + .text.wpa_group_gtk_init + 0x0000000040158090 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_group_setkeys + 0x00000000401580c4 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x00000000401580fb 0x1 + .text.wpa_auth_set_key + 0x00000000401580fc 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000004015816e 0x2 + .text.wpa_group_config_group_keys + 0x0000000040158170 0x61 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x65 (size before relaxing) + *fill* 0x00000000401581d1 0x3 + .text.wpa_group_setkeysdone + 0x00000000401581d4 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x24 (size before relaxing) + .text.wpa_group_sm_step + 0x00000000401581f4 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_group_init + 0x0000000040158258 0x53 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x5b (size before relaxing) + *fill* 0x00000000401582ab 0x1 + .text.wpa_group_ensure_init + 0x00000000401582ac 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x32 (size before relaxing) + *fill* 0x00000000401582d6 0x2 + .text.wpa_sta_disconnect + 0x00000000401582d8 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x00000000401582e7 0x1 + .text.sm_WPA_PTK_AUTHENTICATION2_Enter + 0x00000000401582e8 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x48 (size before relaxing) + .text.sm_WPA_PTK_DISCONNECT_Enter + 0x0000000040158328 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_rekey_gtk + 0x0000000040158354 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x3c (size before relaxing) + .text.wpa_replay_counter_valid + 0x000000004015838c 0x31 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x00000000401583bd 0x3 + .text.wpa_replay_counter_mark_invalid + 0x00000000401583c0 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x00000000401583ed 0x3 + .text.wpa_derive_ptk + 0x00000000401583f0 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_verify_key_mic + 0x000000004015841c 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x80 (size before relaxing) + .text.sm_WPA_PTK_PTKINITDONE_Enter + 0x0000000040158498 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xab (size before relaxing) + *fill* 0x0000000040158530 0x0 + .text.ieee80211w_kde_add + 0x0000000040158530 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x74 (size before relaxing) + .text.resend_eapol_handle + 0x000000004015859c 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x000000004015859c resend_eapol_handle + .text.wpa_init + 0x00000000401585b4 0x9a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xa2 (size before relaxing) + 0x00000000401585b4 wpa_init + *fill* 0x000000004015864e 0x2 + .text.wpa_auth_sta_init + 0x0000000040158650 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040158650 wpa_auth_sta_init + .text.wpa_auth_sta_deinit + 0x0000000040158680 0x3b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x42 (size before relaxing) + 0x0000000040158680 wpa_auth_sta_deinit + *fill* 0x00000000401586bb 0x1 + .text.wpa_auth_pmksa_add_sae + 0x00000000401586bc 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x3d (size before relaxing) + 0x00000000401586bc wpa_auth_pmksa_add_sae + *fill* 0x00000000401586f5 0x3 + .text.wpa_auth_add_sae_pmkid + 0x00000000401586f8 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x00000000401586f8 wpa_auth_add_sae_pmkid + *fill* 0x000000004015871a 0x2 + .text.__wpa_send_eapol + 0x000000004015871c 0x360 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x370 (size before relaxing) + 0x000000004015871c __wpa_send_eapol + .text.wpa_send_eapol + 0x0000000040158a7c 0x6f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x73 (size before relaxing) + *fill* 0x0000000040158aeb 0x1 + .text.sm_WPA_PTK_PTKSTART_Enter + 0x0000000040158aec 0x104 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.sm_WPA_PTK_PTKINITNEGOTIATING_Enter + 0x0000000040158bf0 0x177 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x17b (size before relaxing) + *fill* 0x0000000040158d67 0x1 + .text.sm_WPA_PTK_GROUP_REKEYNEGOTIATING_Enter + 0x0000000040158d68 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xf8 (size before relaxing) + .text.sm_WPA_PTK_GROUP_Step + 0x0000000040158e50 0xb4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xbb (size before relaxing) + *fill* 0x0000000040158f04 0x0 + .text.wpa_remove_ptk + 0x0000000040158f04 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x3a (size before relaxing) + 0x0000000040158f04 wpa_remove_ptk + *fill* 0x0000000040158f3a 0x2 + .text.sm_WPA_PTK_INITIALIZE_Enter + 0x0000000040158f3c 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x5e (size before relaxing) + *fill* 0x0000000040158f96 0x2 + .text.wpa_deinit + 0x0000000040158f98 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x3b (size before relaxing) + 0x0000000040158f98 wpa_deinit + *fill* 0x0000000040158fcf 0x1 + .text.wpa_ap_remove + 0x0000000040158fd0 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x5e (size before relaxing) + 0x0000000040158fd0 wpa_ap_remove + *fill* 0x0000000040159026 0x2 + .text.wpa_auth_uses_sae + 0x0000000040159028 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040159028 wpa_auth_uses_sae + .text.wpa_auth_get_psk + 0x0000000040159044 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4e (size before relaxing) + *fill* 0x000000004015908e 0x2 + .text.sm_WPA_PTK_PTKCALCNEGOTIATING_Enter + 0x0000000040159090 0x135 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x13d (size before relaxing) + *fill* 0x00000000401591c5 0x3 + .text.sm_WPA_PTK_INITPSK_Enter + 0x00000000401591c8 0x69 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000040159231 0x3 + .text.sm_WPA_PTK_Step + 0x0000000040159234 0x244 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x278 (size before relaxing) + .text.wpa_sm_step + 0x0000000040159478 0xad esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xb5 (size before relaxing) + *fill* 0x0000000040159525 0x3 + .text.wpa_rekey_ptk + 0x0000000040159528 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x16 (size before relaxing) + *fill* 0x000000004015953a 0x2 + .text.wpa_auth_sta_associated + 0x000000004015953c 0x74 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x7c (size before relaxing) + 0x000000004015953c wpa_auth_sta_associated + .text.wpa_receive + 0x00000000401595b0 0x3f2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x422 (size before relaxing) + 0x00000000401595b0 wpa_receive + *fill* 0x00000000401599a2 0x2 + .text.hostap_eapol_resend_process + 0x00000000401599a4 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x2c (size before relaxing) + 0x00000000401599a4 hostap_eapol_resend_process + .text.wpa_ap_join + 0x00000000401599cc 0xd6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xee (size before relaxing) + 0x00000000401599cc wpa_ap_join + *fill* 0x0000000040159aa2 0x2 + .text.wpa_parse_generic + 0x0000000040159aa4 0x136 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + *fill* 0x0000000040159bda 0x2 + .text.wpa_write_wpa_ie + 0x0000000040159bdc 0xbf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0xc3 (size before relaxing) + *fill* 0x0000000040159c9b 0x1 + .text.wpa_write_rsn_ie + 0x0000000040159c9c 0x1e5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x1e9 (size before relaxing) + 0x0000000040159c9c wpa_write_rsn_ie + *fill* 0x0000000040159e81 0x3 + .text.wpa_write_rsnxe + 0x0000000040159e84 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x0000000040159e84 wpa_write_rsnxe + *fill* 0x0000000040159ebb 0x1 + .text.wpa_auth_gen_wpa_ie + 0x0000000040159ebc 0x86 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x8e (size before relaxing) + 0x0000000040159ebc wpa_auth_gen_wpa_ie + *fill* 0x0000000040159f42 0x2 + .text.wpa_add_kde + 0x0000000040159f44 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x0000000040159f44 wpa_add_kde + .text.wpa_validate_wpa_ie + 0x0000000040159f8c 0x2d5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x2ed (size before relaxing) + 0x0000000040159f8c wpa_validate_wpa_ie + *fill* 0x000000004015a261 0x3 + .text.wpa_parse_kde_ies + 0x000000004015a264 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x94 (size before relaxing) + 0x000000004015a264 wpa_parse_kde_ies + .text._pmksa_cache_free_entry + 0x000000004015a2f4 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x2b (size before relaxing) + *fill* 0x000000004015a31b 0x1 + .text.pmksa_cache_set_expiration + 0x000000004015a31c 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x40 (size before relaxing) + .text.pmksa_cache_link_entry + 0x000000004015a358 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + *fill* 0x000000004015a3b6 0x2 + .text.pmksa_cache_free_entry + 0x000000004015a3b8 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x000000004015a3b8 pmksa_cache_free_entry + *fill* 0x000000004015a42a 0x2 + .text.pmksa_cache_expire + 0x000000004015a42c 0x33 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x3a (size before relaxing) + *fill* 0x000000004015a45f 0x1 + .text.pmksa_cache_auth_create_entry + 0x000000004015a460 0xce esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0xd2 (size before relaxing) + 0x000000004015a460 pmksa_cache_auth_create_entry + *fill* 0x000000004015a52e 0x2 + .text.pmksa_cache_auth_deinit + 0x000000004015a530 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x4a (size before relaxing) + 0x000000004015a530 pmksa_cache_auth_deinit + *fill* 0x000000004015a576 0x2 + .text.pmksa_cache_auth_get + 0x000000004015a578 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x000000004015a578 pmksa_cache_auth_get + *fill* 0x000000004015a5d2 0x2 + .text.pmksa_cache_auth_add_entry + 0x000000004015a5d4 0x41 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x49 (size before relaxing) + 0x000000004015a5d4 pmksa_cache_auth_add_entry + *fill* 0x000000004015a615 0x3 + .text.pmksa_cache_auth_add + 0x000000004015a618 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x3b (size before relaxing) + 0x000000004015a618 pmksa_cache_auth_add + *fill* 0x000000004015a64f 0x1 + .text.pmksa_cache_auth_init + 0x000000004015a650 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x000000004015a650 pmksa_cache_auth_init + *fill* 0x000000004015a66a 0x2 + .text.ap_sta_hash_del + 0x000000004015a66c 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.ap_get_sta + 0x000000004015a6b8 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x000000004015a6b8 ap_get_sta + *fill* 0x000000004015a6e2 0x2 + .text.ap_free_sta + 0x000000004015a6e4 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x60 (size before relaxing) + 0x000000004015a6e4 ap_free_sta + .text.ap_sta_add + 0x000000004015a73c 0x57 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x5b (size before relaxing) + 0x000000004015a73c ap_sta_add + *fill* 0x000000004015a793 0x1 + .text.sae_check_big_sync + 0x000000004015a794 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + *fill* 0x000000004015a7c1 0x3 + .text.auth_build_sae_commit + 0x000000004015a7c4 0xf5 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x105 (size before relaxing) + *fill* 0x000000004015a8b9 0x3 + .text.auth_sae_send_commit + 0x000000004015a8bc 0x7a esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x7e (size before relaxing) + *fill* 0x000000004015a936 0x2 + .text.auth_build_sae_confirm + 0x000000004015a938 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x2c (size before relaxing) + .text.auth_sae_send_confirm + 0x000000004015a95c 0x43 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x47 (size before relaxing) + *fill* 0x000000004015a99f 0x1 + .text.sae_accept_sta + 0x000000004015a9a0 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x3a (size before relaxing) + 0x000000004015a9a0 sae_accept_sta + *fill* 0x000000004015a9d6 0x2 + .text.sae_sm_step + 0x000000004015a9d8 0x1d6 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x206 (size before relaxing) + *fill* 0x000000004015abae 0x2 + .text.handle_auth_sae + 0x000000004015abb0 0x2a3 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x2d3 (size before relaxing) + 0x000000004015abb0 handle_auth_sae + *fill* 0x000000004015ae53 0x1 + .text.auth_sae_queue + 0x000000004015ae54 0xd6 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x000000004015ae54 auth_sae_queue + *fill* 0x000000004015af2a 0x2 + .text.wpabuf_put_le16 + 0x000000004015af2c 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .text.comeback_token_hash + 0x000000004015af44 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x26 (size before relaxing) + 0x000000004015af44 comeback_token_hash + *fill* 0x000000004015af66 0x2 + .text.check_comeback_token + 0x000000004015af68 0x86 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x8e (size before relaxing) + 0x000000004015af68 check_comeback_token + *fill* 0x000000004015afee 0x2 + .text.auth_build_token_req + 0x000000004015aff0 0x112 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x13a (size before relaxing) + 0x000000004015aff0 auth_build_token_req + *fill* 0x000000004015b102 0x2 + .text.sae_parse_token_container + 0x000000004015b104 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.hkdf_extract + 0x000000004015b120 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x000000004015b141 0x3 + .text.sae_pwd_seed + 0x000000004015b144 0x41 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x000000004015b185 0x3 + .text.sae_cn_confirm + 0x000000004015b188 0x89 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x91 (size before relaxing) + *fill* 0x000000004015b211 0x3 + .text.sae_cn_confirm_ffc + 0x000000004015b214 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x74 (size before relaxing) + .text.hkdf_expand + 0x000000004015b280 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2d (size before relaxing) + *fill* 0x000000004015b2a9 0x3 + .text.sae_derive_commit_element_ffc + 0x000000004015b2ac 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x52 (size before relaxing) + *fill* 0x000000004015b2f6 0x2 + .text.sae_derive_k_ffc + 0x000000004015b2f8 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8a (size before relaxing) + *fill* 0x000000004015b36e 0x2 + .text.debug_print_bignum + 0x000000004015b370 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2a (size before relaxing) + *fill* 0x000000004015b396 0x2 + .text.sswu 0x000000004015b398 0x7e5 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x941 (size before relaxing) + *fill* 0x000000004015bb7d 0x3 + .text.sae_cn_confirm_ecc + 0x000000004015bb80 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x74 (size before relaxing) + .text.sae_max_min_addr + 0x000000004015bbe8 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.sae_pwd_seed_key + 0x000000004015bc0c 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.sae_parse_password_identifier + 0x000000004015bc58 0xca esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x000000004015bd22 0x2 + .text.sae_test_pwd_seed_ffc + 0x000000004015bd24 0x118 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x13c (size before relaxing) + .text.sae_derive_pwe_ffc + 0x000000004015be3c 0x140 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x158 (size before relaxing) + .text.sae_test_pwd_seed_ecc + 0x000000004015bf7c 0xa6 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc2 (size before relaxing) + *fill* 0x000000004015c022 0x2 + .text.sae_derive_pwe_ecc + 0x000000004015c024 0x365 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x3ad (size before relaxing) + *fill* 0x000000004015c389 0x3 + .text.sae_derive_commit_element_ecc + 0x000000004015c38c 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x52 (size before relaxing) + *fill* 0x000000004015c3da 0x2 + .text.sae_derive_commit + 0x000000004015c3dc 0x9a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xb2 (size before relaxing) + *fill* 0x000000004015c476 0x2 + .text.wpabuf_put_le16 + 0x000000004015c478 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.wpabuf_put_data + 0x000000004015c490 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .text.wpabuf_put_str + 0x000000004015c4a8 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1a (size before relaxing) + *fill* 0x000000004015c4be 0x2 + .text.sae_parse_rejected_groups + 0x000000004015c4c0 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x70 (size before relaxing) + .text.sae_derive_k_ecc + 0x000000004015c524 0x7e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x96 (size before relaxing) + *fill* 0x000000004015c5a2 0x2 + .text.sae_kdf_hash + 0x000000004015c5a4 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x000000004015c5c9 0x3 + .text.sae_parse_commit_scalar + 0x000000004015c5cc 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xa2 (size before relaxing) + *fill* 0x000000004015c65e 0x2 + .text.sae_parse_commit_element_ffc + 0x000000004015c660 0xf6 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x11a (size before relaxing) + *fill* 0x000000004015c756 0x2 + .text.sae_parse_commit_element_ecc + 0x000000004015c758 0x9c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xa8 (size before relaxing) + .text.sae_parse_commit_element + 0x000000004015c7f4 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2d (size before relaxing) + *fill* 0x000000004015c81d 0x3 + .text.sae_clear_temp_data + 0x000000004015c820 0x87 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xb3 (size before relaxing) + 0x000000004015c820 sae_clear_temp_data + *fill* 0x000000004015c8a7 0x1 + .text.sae_clear_data + 0x000000004015c8a8 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x32 (size before relaxing) + 0x000000004015c8a8 sae_clear_data + *fill* 0x000000004015c8d2 0x2 + .text.sae_set_group + 0x000000004015c8d4 0xc5 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xe5 (size before relaxing) + 0x000000004015c8d4 sae_set_group + *fill* 0x000000004015c999 0x3 + .text.sae_derive_pt_ecc + 0x000000004015c99c 0x17e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1ca (size before relaxing) + *fill* 0x000000004015cb1a 0x2 + .text.sae_derive_pt_ffc + 0x000000004015cb1c 0x1e6 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x232 (size before relaxing) + *fill* 0x000000004015cd02 0x2 + .text.sae_derive_keys + 0x000000004015cd04 0x236 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x26e (size before relaxing) + *fill* 0x000000004015cf3a 0x2 + .text.sae_derive_pwe_from_pt_ecc + 0x000000004015cf3c 0x142 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x182 (size before relaxing) + 0x000000004015cf3c sae_derive_pwe_from_pt_ecc + *fill* 0x000000004015d07e 0x2 + .text.sae_derive_pwe_from_pt_ffc + 0x000000004015d080 0x14a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x18a (size before relaxing) + 0x000000004015d080 sae_derive_pwe_from_pt_ffc + *fill* 0x000000004015d1ca 0x2 + .text.sae_deinit_pt + 0x000000004015d1cc 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x33 (size before relaxing) + 0x000000004015d1cc sae_deinit_pt + *fill* 0x000000004015d1f7 0x1 + .text.sae_derive_pt_group + 0x000000004015d1f8 0x7e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8a (size before relaxing) + *fill* 0x000000004015d276 0x2 + .text.sae_derive_pt + 0x000000004015d278 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004015d278 sae_derive_pt + *fill* 0x000000004015d2c2 0x2 + .text.sae_prepare_commit + 0x000000004015d2c4 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x60 (size before relaxing) + 0x000000004015d2c4 sae_prepare_commit + .text.sae_prepare_commit_pt + 0x000000004015d320 0x122 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x13e (size before relaxing) + 0x000000004015d320 sae_prepare_commit_pt + *fill* 0x000000004015d442 0x2 + .text.sae_process_commit + 0x000000004015d444 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x5a (size before relaxing) + 0x000000004015d444 sae_process_commit + *fill* 0x000000004015d496 0x2 + .text.sae_write_commit + 0x000000004015d498 0x16e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1ae (size before relaxing) + 0x000000004015d498 sae_write_commit + *fill* 0x000000004015d606 0x2 + .text.sae_group_allowed + 0x000000004015d608 0x6d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004015d608 sae_group_allowed + *fill* 0x000000004015d675 0x3 + .text.sae_parse_commit + 0x000000004015d678 0xdc esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xfc (size before relaxing) + 0x000000004015d678 sae_parse_commit + .text.sae_write_confirm + 0x000000004015d754 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xa2 (size before relaxing) + 0x000000004015d754 sae_write_confirm + *fill* 0x000000004015d7e6 0x2 + .text.sae_check_confirm + 0x000000004015d7e8 0xba esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004015d7e8 sae_check_confirm + *fill* 0x000000004015d8a2 0x2 + .text.dragonfly_get_rand_1_to_p_1 + 0x000000004015d8a4 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x86 (size before relaxing) + *fill* 0x000000004015d912 0x2 + .text.dragonfly_get_rand_2_to_r_1 + 0x000000004015d914 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x3a (size before relaxing) + *fill* 0x000000004015d946 0x2 + .text.dragonfly_min_pwe_loop_iter + 0x000000004015d948 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x000000004015d948 dragonfly_min_pwe_loop_iter + *fill* 0x000000004015d96f 0x1 + .text.dragonfly_get_random_qr_qnr + 0x000000004015d970 0x81 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x91 (size before relaxing) + 0x000000004015d970 dragonfly_get_random_qr_qnr + *fill* 0x000000004015d9f1 0x3 + .text.dragonfly_is_quadratic_residue_blind + 0x000000004015d9f4 0xf8 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x118 (size before relaxing) + 0x000000004015d9f4 dragonfly_is_quadratic_residue_blind + .text.dragonfly_generate_scalar + 0x000000004015daec 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x5e (size before relaxing) + 0x000000004015daec dragonfly_generate_scalar + *fill* 0x000000004015db3a 0x2 + .text.dragonfly_sqrt + 0x000000004015db3c 0xac esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0xc8 (size before relaxing) + 0x000000004015db3c dragonfly_sqrt + .text.wpa_kck_len + 0x000000004015dbe8 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x000000004015dbfa 0x2 + .text.wpa_kek_len + 0x000000004015dbfc 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x000000004015dc0e 0x2 + .text.rsn_selector_to_bitfield + 0x000000004015dc10 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text.rsn_key_mgmt_to_bitfield + 0x000000004015dc7c 0x71 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x000000004015dced 0x3 + .text.wpa_selector_to_bitfield + 0x000000004015dcf0 0x61 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x000000004015dd51 0x3 + .text.wpa_key_mgmt_to_bitfield + 0x000000004015dd54 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x000000004015dd9a 0x2 + .text.wpa_mic_len + 0x000000004015dd9c 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x000000004015dd9c wpa_mic_len + *fill* 0x000000004015ddae 0x2 + .text.wpa_cipher_valid_mgmt_group + 0x000000004015ddb0 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x000000004015ddb0 wpa_cipher_valid_mgmt_group + .text.wpa_parse_wpa_ie_rsnxe + 0x000000004015dde0 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x36 (size before relaxing) + 0x000000004015dde0 wpa_parse_wpa_ie_rsnxe + *fill* 0x000000004015de12 0x2 + .text.wpa_parse_wpa_ie_rsn + 0x000000004015de14 0x1b8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x1c0 (size before relaxing) + 0x000000004015de14 wpa_parse_wpa_ie_rsn + .text.wpa_parse_wpa_ie_wpa + 0x000000004015dfcc 0x186 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x18a (size before relaxing) + 0x000000004015dfcc wpa_parse_wpa_ie_wpa + *fill* 0x000000004015e152 0x2 + .text.wpa_use_akm_defined + 0x000000004015e154 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x000000004015e154 wpa_use_akm_defined + *fill* 0x000000004015e163 0x1 + .text.wpa_use_aes_key_wrap + 0x000000004015e164 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x000000004015e164 wpa_use_aes_key_wrap + .text.wpa_eapol_key_mic + 0x000000004015e1a4 0xca esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x000000004015e1a4 wpa_eapol_key_mic + *fill* 0x000000004015e26e 0x2 + .text.wpa_compare_rsn_ie + 0x000000004015e270 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x000000004015e270 wpa_compare_rsn_ie + *fill* 0x000000004015e2a6 0x2 + .text.rsn_pmkid + 0x000000004015e2a8 0x57 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x000000004015e2a8 rsn_pmkid + *fill* 0x000000004015e2ff 0x1 + .text.wpa_pmk_to_ptk + 0x000000004015e300 0x15a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x16a (size before relaxing) + 0x000000004015e300 wpa_pmk_to_ptk + *fill* 0x000000004015e45a 0x2 + .text.wpa_cipher_to_suite + 0x000000004015e45c 0x75 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x000000004015e45c wpa_cipher_to_suite + *fill* 0x000000004015e4d1 0x3 + .text.hmac_sha256_kdf + 0x000000004015e4d4 0xe0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + 0xe8 (size before relaxing) + 0x000000004015e4d4 hmac_sha256_kdf + .text.dh_groups_get + 0x000000004015e5b4 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + 0x000000004015e5b4 dh_groups_get + *fill* 0x000000004015e5da 0x2 + .text.wpa_supplicant_verify_eapol_key_mic + 0x000000004015e5dc 0xde esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xea (size before relaxing) + *fill* 0x000000004015e6ba 0x2 + .text.is_wpa2_enterprise_connection + 0x000000004015e6bc 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x36 (size before relaxing) + *fill* 0x000000004015e6ea 0x2 + .text.wpa_derive_ptk + 0x000000004015e6ec 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpa_supplicant_check_group_cipher + 0x000000004015e720 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x46 (size before relaxing) + *fill* 0x000000004015e75e 0x2 + .text.wpa_supplicant_decrypt_key_data + 0x000000004015e760 0xca esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xce (size before relaxing) + *fill* 0x000000004015e82a 0x2 + .text.wpa_sm_set_seq + 0x000000004015e82c 0x3b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + *fill* 0x000000004015e867 0x1 + .text.wpa_supplicant_install_igtk + 0x000000004015e868 0x61 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x69 (size before relaxing) + *fill* 0x000000004015e8c9 0x3 + .text.ieee80211w_set_keys + 0x000000004015e8cc 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x46 (size before relaxing) + *fill* 0x000000004015e90a 0x2 + .text.wpa_sm_get_key + 0x000000004015e90c 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + *fill* 0x000000004015e929 0x3 + .text.wpa_supplicant_gtk_in_use + 0x000000004015e92c 0xc1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc5 (size before relaxing) + *fill* 0x000000004015e9ed 0x3 + .text.wpa_sm_pmksa_free_cb + 0x000000004015e9f0 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpabuf_put_le16 + 0x000000004015ea4c 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpabuf_put_data + 0x000000004015ea64 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .text.cipher_type_map_supp_to_public + 0x000000004015ea7c 0x82 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004015ea7c cipher_type_map_supp_to_public + *fill* 0x000000004015eafe 0x2 + .text.wpa_eapol_key_send + 0x000000004015eb00 0x7e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x82 (size before relaxing) + 0x000000004015eb00 wpa_eapol_key_send + *fill* 0x000000004015eb7e 0x2 + .text.wpa_sm_key_request + 0x000000004015eb80 0x16f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x173 (size before relaxing) + *fill* 0x000000004015ecef 0x1 + .text.wpa_sm_rekey_ptk + 0x000000004015ecf0 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x12 (size before relaxing) + *fill* 0x000000004015ecfe 0x2 + .text.wpa_supplicant_send_4_of_4 + 0x000000004015ed00 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xf0 (size before relaxing) + .text.wpa_supplicant_send_2_of_2 + 0x000000004015edec 0xe9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xed (size before relaxing) + *fill* 0x000000004015eed5 0x3 + .text.wpa_supplicant_send_2_of_4 + 0x000000004015eed8 0x11a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x11e (size before relaxing) + 0x000000004015eed8 wpa_supplicant_send_2_of_4 + *fill* 0x000000004015eff2 0x2 + .text.wpa_supplicant_process_1_of_2_rsn + 0x000000004015eff4 0x82 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8e (size before relaxing) + *fill* 0x000000004015f076 0x2 + .text.wpa_supplicant_process_1_of_2_wpa + 0x000000004015f078 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x110 (size before relaxing) + .text.wpa_supplicant_pairwise_gtk + 0x000000004015f180 0x66 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x6e (size before relaxing) + 0x000000004015f180 wpa_supplicant_pairwise_gtk + *fill* 0x000000004015f1e6 0x2 + .text.wpa_report_ie_mismatch + 0x000000004015f1e8 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004015f1e8 wpa_report_ie_mismatch + *fill* 0x000000004015f1f7 0x1 + .text.wpa_supplicant_validate_ie + 0x000000004015f1f8 0xf2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + *fill* 0x000000004015f2ea 0x2 + .text.wpa_sm_set_state + 0x000000004015f2ec 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x24 (size before relaxing) + 0x000000004015f2ec wpa_sm_set_state + .text.wpa_supplicant_key_neg_complete + 0x000000004015f30c 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x32 (size before relaxing) + 0x000000004015f30c wpa_supplicant_key_neg_complete + *fill* 0x000000004015f336 0x2 + .text.wpa_sm_set_pmk_from_pmksa + 0x000000004015f338 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004015f338 wpa_sm_set_pmk_from_pmksa + *fill* 0x000000004015f36a 0x2 + .text.wpa_supplicant_get_pmk + 0x000000004015f36c 0x169 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x179 (size before relaxing) + *fill* 0x000000004015f4d5 0x3 + .text.wpa_supplicant_process_1_of_4 + 0x000000004015f4d8 0x120 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x140 (size before relaxing) + 0x000000004015f4d8 wpa_supplicant_process_1_of_4 + .text.wpa_sm_init + 0x000000004015f5f8 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x58 (size before relaxing) + 0x000000004015f5f8 wpa_sm_init + .text.wpa_sm_notify_assoc + 0x000000004015f648 0x86 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004015f648 wpa_sm_notify_assoc + *fill* 0x000000004015f6ce 0x2 + .text.wpa_set_profile + 0x000000004015f6d0 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004015f6d0 wpa_set_profile + *fill* 0x000000004015f766 0x2 + .text.wpa_set_pmk + 0x000000004015f768 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004015f768 wpa_set_pmk + *fill* 0x000000004015f7be 0x2 + .text.wpa_set_passphrase + 0x000000004015f7c0 0xa2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc6 (size before relaxing) + 0x000000004015f7c0 wpa_set_passphrase + *fill* 0x000000004015f862 0x2 + .text.set_assoc_ie + 0x000000004015f864 0x31 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x34 (size before relaxing) + 0x000000004015f864 set_assoc_ie + *fill* 0x000000004015f895 0x3 + .text.wpa_sm_set_key + 0x000000004015f898 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x72 (size before relaxing) + 0x000000004015f898 wpa_sm_set_key + *fill* 0x000000004015f906 0x2 + .text.wpa_supplicant_install_ptk + 0x000000004015f908 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xa6 (size before relaxing) + *fill* 0x000000004015f99e 0x2 + .text.wpa_supplicant_process_3_of_4 + 0x000000004015f9a0 0x117 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x13a (size before relaxing) + *fill* 0x000000004015fab7 0x1 + .text.wpa_supplicant_install_gtk + 0x000000004015fab8 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xf0 (size before relaxing) + .text.wpa_supplicant_process_1_of_2 + 0x000000004015fba4 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xd4 (size before relaxing) + .text.wpa_sm_rx_eapol + 0x000000004015fc5c 0x2d5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x2dd (size before relaxing) + 0x000000004015fc5c wpa_sm_rx_eapol + *fill* 0x000000004015ff31 0x3 + .text.wpa_supplicant_activate_ptk + 0x000000004015ff34 0x4d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x55 (size before relaxing) + *fill* 0x000000004015ff81 0x3 + .text.wpa_supplicant_send_4_of_4_txcallback + 0x000000004015ff84 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x9c (size before relaxing) + .text.wpa_supplicant_clr_countermeasures + 0x0000000040160014 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040160014 wpa_supplicant_clr_countermeasures + *fill* 0x0000000040160021 0x3 + .text.wpa_supplicant_stop_countermeasures + 0x0000000040160024 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x33 (size before relaxing) + 0x0000000040160024 wpa_supplicant_stop_countermeasures + *fill* 0x0000000040160050 0x0 + .text.wpa_michael_mic_failure + 0x0000000040160050 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x9c (size before relaxing) + 0x0000000040160050 wpa_michael_mic_failure + .text.eapol_txcb + 0x00000000401600d0 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x77 (size before relaxing) + 0x00000000401600d0 eapol_txcb + *fill* 0x000000004016013c 0x0 + .text.wpa_sta_in_4way_handshake + 0x000000004016013c 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004016013c wpa_sta_in_4way_handshake + *fill* 0x000000004016016e 0x2 + .text.wpa_sta_cur_pmksa_matches_akm + 0x0000000040160170 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x29 (size before relaxing) + 0x0000000040160170 wpa_sta_cur_pmksa_matches_akm + *fill* 0x0000000040160195 0x3 + .text.wpa_sta_clear_curr_pmksa + 0x0000000040160198 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x23 (size before relaxing) + 0x0000000040160198 wpa_sta_clear_curr_pmksa + *fill* 0x00000000401601b8 0x0 + .text.get_wpa_sm + 0x00000000401601b8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x00000000401601b8 get_wpa_sm + .text.wpa_sm_set_ap_rsnxe + 0x00000000401601c0 0x7e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8e (size before relaxing) + 0x00000000401601c0 wpa_sm_set_ap_rsnxe + *fill* 0x000000004016023e 0x2 + .text.wpa_sm_set_assoc_rsnxe + 0x0000000040160240 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040160240 wpa_sm_set_assoc_rsnxe + *fill* 0x000000004016028e 0x2 + .text.wpa_set_bss + 0x0000000040160290 0x202 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x236 (size before relaxing) + 0x0000000040160290 wpa_set_bss + *fill* 0x0000000040160492 0x2 + .text.wpa_sm_drop_sa + 0x0000000040160494 0x4f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040160494 wpa_sm_drop_sa + *fill* 0x00000000401604e3 0x1 + .text.wpa_sm_deinit + 0x00000000401604e4 0x2f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x33 (size before relaxing) + 0x00000000401604e4 wpa_sm_deinit + *fill* 0x0000000040160513 0x1 + .text.wpa_sm_notify_disassoc + 0x0000000040160514 0x33 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x3b (size before relaxing) + 0x0000000040160514 wpa_sm_notify_disassoc + *fill* 0x0000000040160547 0x1 + .text.owe_build_assoc_req + 0x0000000040160548 0xa6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xce (size before relaxing) + 0x0000000040160548 owe_build_assoc_req + *fill* 0x00000000401605ee 0x2 + .text.owe_process_assoc_resp + 0x00000000401605f0 0x1ca esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x20a (size before relaxing) + 0x00000000401605f0 owe_process_assoc_resp + *fill* 0x00000000401607ba 0x2 + .text.wpa_parse_generic + 0x00000000401607bc 0x16e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x000000004016092a 0x2 + .text.wpa_gen_wpa_ie_rsn + 0x000000004016092c 0x298 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x29c (size before relaxing) + .text.wpa_parse_wpa_ie + 0x0000000040160bc4 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x0000000040160bc4 wpa_parse_wpa_ie + *fill* 0x0000000040160c19 0x3 + .text.wpa_gen_wpa_ie + 0x0000000040160c1c 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x0000000040160c1c wpa_gen_wpa_ie + .text.wpa_gen_rsnxe + 0x0000000040160c64 0x5d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x0000000040160c64 wpa_gen_rsnxe + *fill* 0x0000000040160cc1 0x3 + .text.wpa_supplicant_parse_ies + 0x0000000040160cc4 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x94 (size before relaxing) + 0x0000000040160cc4 wpa_supplicant_parse_ies + .text.wpabuf_alloc + 0x0000000040160d54 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x0000000040160d54 wpabuf_alloc + .text.wpabuf_free + 0x0000000040160d70 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x0000000040160d70 wpabuf_free + .text.wpabuf_put_data + 0x0000000040160d8c 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x1c (size before relaxing) + .text.wpabuf_alloc_copy + 0x0000000040160da4 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x1e (size before relaxing) + 0x0000000040160da4 wpabuf_alloc_copy + *fill* 0x0000000040160dbe 0x2 + .text.wpabuf_zeropad + 0x0000000040160dc0 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x44 (size before relaxing) + 0x0000000040160dc0 wpabuf_zeropad + .text.d_permute + 0x0000000040160df8 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + *fill* 0x0000000040160e0e 0x2 + .text.d_check_char + 0x0000000040160e10 0x6b esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x6f (size before relaxing) + *fill* 0x0000000040160e7b 0x1 + .text.wpabuf_put_data + 0x0000000040160e7c 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x1c (size before relaxing) + .text.sae_pk_valid_password + 0x0000000040160e94 0xe1 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x0000000040160e94 sae_pk_valid_password + *fill* 0x0000000040160f75 0x3 + .text.sae_pk_base32_decode + 0x0000000040160f78 0xf6 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x0000000040160f78 sae_pk_base32_decode + *fill* 0x000000004016106e 0x2 + .text.sae_pk_set_password + 0x0000000040161070 0x119 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x121 (size before relaxing) + 0x0000000040161070 sae_pk_set_password + *fill* 0x0000000040161189 0x3 + .text.sae_hash + 0x000000004016118c 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x000000004016118c sae_hash + *fill* 0x00000000401611ad 0x3 + .text.sae_pk_valid_fingerprint + 0x00000000401611b0 0xd1 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0xdd (size before relaxing) + *fill* 0x0000000040161281 0x3 + .text.sae_pk_hash_sig_data + 0x0000000040161284 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x150 (size before relaxing) + .text.sae_check_confirm_pk + 0x00000000401613b4 0x162 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x186 (size before relaxing) + 0x00000000401613b4 sae_check_confirm_pk + *fill* 0x0000000040161516 0x2 + .text.wpa_bss_known + 0x0000000040161518 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + *fill* 0x000000004016154a 0x2 + .text.wpa_bss_remove + 0x000000004016154c 0x6b esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x000000004016154c wpa_bss_remove + *fill* 0x00000000401615b7 0x1 + .text.wpa_bss_remove_oldest_unknown + 0x00000000401615b8 0x31 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x35 (size before relaxing) + *fill* 0x00000000401615e9 0x3 + .text.wpa_bss_remove_oldest + 0x00000000401615ec 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x40 (size before relaxing) + .text.wpa_bss_get + 0x0000000040161628 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x0000000040161628 wpa_bss_get + .text.calculate_update_time + 0x0000000040161664 0x81 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x0000000040161664 calculate_update_time + *fill* 0x00000000401616e5 0x3 + .text.wpa_bss_copy_res + 0x00000000401616e8 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + *fill* 0x000000004016173a 0x2 + .text.wpa_bss_add + 0x000000004016173c 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0xa8 (size before relaxing) + .text.wpa_bss_update + 0x00000000401617dc 0xfc esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x100 (size before relaxing) + .text.wpa_bss_update_scan_res + 0x00000000401618d8 0xae esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0xb6 (size before relaxing) + 0x00000000401618d8 wpa_bss_update_scan_res + *fill* 0x0000000040161986 0x2 + .text.wpa_bss_flush + 0x0000000040161988 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x32 (size before relaxing) + 0x0000000040161988 wpa_bss_flush + *fill* 0x00000000401619b6 0x2 + .text.wpa_bss_deinit + 0x00000000401619b8 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0xe (size before relaxing) + 0x00000000401619b8 wpa_bss_deinit + *fill* 0x00000000401619c2 0x2 + .text.wpa_bss_get_bssid + 0x00000000401619c4 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x00000000401619c4 wpa_bss_get_bssid + *fill* 0x00000000401619ea 0x2 + .text.wpa_bss_get_ie + 0x00000000401619ec 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x00000000401619ec wpa_bss_get_ie + .text.wpa_scan_get_ie + 0x0000000040161a04 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + 0x0000000040161a04 wpa_scan_get_ie + *fill* 0x0000000040161a1f 0x1 + .text.esp_scan_init + 0x0000000040161a20 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + 0x16 (size before relaxing) + 0x0000000040161a20 esp_scan_init + *fill* 0x0000000040161a32 0x2 + .text.esp_scan_deinit + 0x0000000040161a34 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + 0x1c (size before relaxing) + 0x0000000040161a34 esp_scan_deinit + .text.esp_handle_beacon_probe + 0x0000000040161a4c 0x110 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + 0x114 (size before relaxing) + 0x0000000040161a4c esp_handle_beacon_probe + .text.wpa_alloc_eapol + 0x0000000040161b5c 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x0000000040161b5c wpa_alloc_eapol + *fill* 0x0000000040161bc6 0x2 + .text.wpa_free_eapol + 0x0000000040161bc8 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x0000000040161bc8 wpa_free_eapol + .text.wpa_ether_send + 0x0000000040161bd8 0x49 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4d (size before relaxing) + 0x0000000040161bd8 wpa_ether_send + *fill* 0x0000000040161c21 0x3 + .text.hostapd_send_eapol + 0x0000000040161c24 0x5d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x61 (size before relaxing) + 0x0000000040161c24 hostapd_send_eapol + *fill* 0x0000000040161c81 0x3 + .text.wpa_supplicant_transition_disable + 0x0000000040161c84 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0xe (size before relaxing) + 0x0000000040161c84 wpa_supplicant_transition_disable + *fill* 0x0000000040161c8f 0x1 + .text.wpa_sm_alloc_eapol + 0x0000000040161c90 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x1c (size before relaxing) + 0x0000000040161c90 wpa_sm_alloc_eapol + .text.wpa_sm_free_eapol + 0x0000000040161ca8 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0xe (size before relaxing) + 0x0000000040161ca8 wpa_sm_free_eapol + *fill* 0x0000000040161cb2 0x2 + .text.wpa_sm_deauthenticate + 0x0000000040161cb4 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x1e (size before relaxing) + 0x0000000040161cb4 wpa_sm_deauthenticate + *fill* 0x0000000040161cce 0x2 + .text.crypto_rng_wrapper + 0x0000000040161cd0 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + *fill* 0x0000000040161ce1 0x3 + .text.crypto_bignum_init + 0x0000000040161ce4 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x1a (size before relaxing) + 0x0000000040161ce4 crypto_bignum_init + *fill* 0x0000000040161cfa 0x2 + .text.crypto_bignum_init_set + 0x0000000040161cfc 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x2c (size before relaxing) + 0x0000000040161cfc crypto_bignum_init_set + .text.crypto_bignum_init_uint + 0x0000000040161d24 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x26 (size before relaxing) + 0x0000000040161d24 crypto_bignum_init_uint + *fill* 0x0000000040161d46 0x2 + .text.crypto_bignum_deinit + 0x0000000040161d48 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x16 (size before relaxing) + 0x0000000040161d48 crypto_bignum_deinit + *fill* 0x0000000040161d5a 0x2 + .text.crypto_bignum_to_bin + 0x0000000040161d5c 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x52 (size before relaxing) + 0x0000000040161d5c crypto_bignum_to_bin + *fill* 0x0000000040161daa 0x2 + .text.crypto_bignum_add + 0x0000000040161dac 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x18 (size before relaxing) + 0x0000000040161dac crypto_bignum_add + .text.crypto_bignum_mod + 0x0000000040161dc0 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x18 (size before relaxing) + 0x0000000040161dc0 crypto_bignum_mod + .text.crypto_bignum_exptmod + 0x0000000040161dd4 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x1c (size before relaxing) + 0x0000000040161dd4 crypto_bignum_exptmod + .text.crypto_bignum_inverse + 0x0000000040161dec 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x18 (size before relaxing) + 0x0000000040161dec crypto_bignum_inverse + .text.crypto_bignum_sub + 0x0000000040161e00 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x18 (size before relaxing) + 0x0000000040161e00 crypto_bignum_sub + .text.crypto_bignum_div + 0x0000000040161e14 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x0000000040161e14 crypto_bignum_div + *fill* 0x0000000040161e2d 0x3 + .text.crypto_bignum_mulmod + 0x0000000040161e30 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x2e (size before relaxing) + 0x0000000040161e30 crypto_bignum_mulmod + *fill* 0x0000000040161e5a 0x2 + .text.crypto_bignum_sqrmod + 0x0000000040161e5c 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x3c (size before relaxing) + 0x0000000040161e5c crypto_bignum_sqrmod + .text.crypto_bignum_rshift + 0x0000000040161e8c 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x26 (size before relaxing) + 0x0000000040161e8c crypto_bignum_rshift + *fill* 0x0000000040161eae 0x2 + .text.crypto_bignum_cmp + 0x0000000040161eb0 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x0000000040161eb0 crypto_bignum_cmp + *fill* 0x0000000040161ec1 0x3 + .text.crypto_bignum_is_zero + 0x0000000040161ec4 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x0000000040161ec4 crypto_bignum_is_zero + *fill* 0x0000000040161eda 0x2 + .text.crypto_bignum_is_one + 0x0000000040161edc 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x0000000040161edc crypto_bignum_is_one + *fill* 0x0000000040161ef2 0x2 + .text.crypto_bignum_is_odd + 0x0000000040161ef4 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x0000000040161ef4 crypto_bignum_is_odd + .text.crypto_bignum_rand + 0x0000000040161f0c 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x0000000040161f0c crypto_bignum_rand + .text.crypto_bignum_legendre + 0x0000000040161f28 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x94 (size before relaxing) + 0x0000000040161f28 crypto_bignum_legendre + .text.crypto_bignum_addmod + 0x0000000040161fa0 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x3f (size before relaxing) + 0x0000000040161fa0 crypto_bignum_addmod + *fill* 0x0000000040161fd7 0x1 + .text.pad_block + 0x0000000040161fd8 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + *fill* 0x0000000040162003 0x1 + .text.aes_s2v 0x0000000040162004 0x115 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + 0x139 (size before relaxing) + *fill* 0x0000000040162119 0x3 + .text.aes_siv_decrypt + 0x000000004016211c 0xe0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + 0xe4 (size before relaxing) + 0x000000004016211c aes_siv_decrypt + .text.ieee802_11_parse_extension + 0x00000000401621fc 0x6d esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + *fill* 0x0000000040162269 0x3 + .text.ieee802_11_parse_vendor_specific + 0x000000004016226c 0x5d esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + *fill* 0x00000000401622c9 0x3 + .text.ieee802_11_parse_elems + 0x00000000401622cc 0x6d esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + 0x00000000401622cc ieee802_11_parse_elems + *fill* 0x0000000040162339 0x3 + .text._pmksa_cache_free_entry + 0x000000004016233c 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x10 (size before relaxing) + *fill* 0x0000000040162349 0x3 + .text.pmksa_cache_free_entry + 0x000000004016234c 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + *fill* 0x000000004016236a 0x2 + .text.pmksa_cache_set_expiration + 0x000000004016236c 0x3b esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x3f (size before relaxing) + *fill* 0x00000000401623a7 0x1 + .text.pmksa_cache_expire + 0x00000000401623a8 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x3f (size before relaxing) + *fill* 0x00000000401623e0 0x0 + .text.pmksa_cache_flush + 0x00000000401623e0 0x57 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x00000000401623e0 pmksa_cache_flush + *fill* 0x0000000040162437 0x1 + .text.pmksa_cache_add + 0x0000000040162438 0x1ca esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x0000000040162438 pmksa_cache_add + *fill* 0x0000000040162602 0x2 + .text.pmksa_cache_clone_entry + 0x0000000040162604 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x44 (size before relaxing) + .text.pmksa_cache_deinit + 0x0000000040162644 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x3b (size before relaxing) + 0x0000000040162644 pmksa_cache_deinit + *fill* 0x000000004016267b 0x1 + .text.pmksa_cache_get + 0x000000004016267c 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x000000004016267c pmksa_cache_get + *fill* 0x00000000401626b5 0x3 + .text.pmksa_cache_get_opportunistic + 0x00000000401626b8 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x00000000401626b8 pmksa_cache_get_opportunistic + .text.pmksa_cache_set_current + 0x00000000401626e8 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x72 (size before relaxing) + 0x00000000401626e8 pmksa_cache_set_current + *fill* 0x0000000040162756 0x2 + .text.pmksa_cache_init + 0x0000000040162758 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x0000000040162758 pmksa_cache_init + .text.mbedtls_asn1_write_len + 0x0000000040162778 0x127 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x0000000040162778 mbedtls_asn1_write_len + *fill* 0x000000004016289f 0x1 + .text.mbedtls_asn1_write_mpi + 0x00000000401628a0 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x8c (size before relaxing) + 0x00000000401628a0 mbedtls_asn1_write_mpi + .text.ecdsa_restart_sig_init + 0x0000000040162924 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x1e (size before relaxing) + *fill* 0x000000004016293e 0x2 + .text.ecdsa_restart_ver_init + 0x0000000040162940 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x1a (size before relaxing) + *fill* 0x0000000040162956 0x2 + .text.ecdsa_restart_sig_free + 0x0000000040162958 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x18 (size before relaxing) + .text.ecdsa_restart_ver_free + 0x000000004016296c 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x1f (size before relaxing) + *fill* 0x0000000040162983 0x1 + .text.derive_mpi + 0x0000000040162984 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x5e (size before relaxing) + *fill* 0x00000000401629d2 0x2 + .text.ecdsa_restart_det_init + 0x00000000401629d4 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x13 (size before relaxing) + *fill* 0x00000000401629e3 0x1 + .text.ecdsa_restart_det_free + 0x00000000401629e4 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x17 (size before relaxing) + *fill* 0x00000000401629f7 0x1 + .text.ecdsa_signature_to_asn1 + 0x00000000401629f8 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x8c (size before relaxing) + .text.mbedtls_ecdsa_sign_restartable + 0x0000000040162a78 0x2b0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x314 (size before relaxing) + 0x0000000040162a78 mbedtls_ecdsa_sign_restartable + .text.mbedtls_ecdsa_sign_det_restartable + 0x0000000040162d28 0x160 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x18c (size before relaxing) + 0x0000000040162d28 mbedtls_ecdsa_sign_det_restartable + .text.mbedtls_ecdsa_verify_restartable + 0x0000000040162e88 0x20c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x264 (size before relaxing) + 0x0000000040162e88 mbedtls_ecdsa_verify_restartable + .text.mbedtls_ecdsa_write_signature_restartable + 0x0000000040163094 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x76 (size before relaxing) + 0x0000000040163094 mbedtls_ecdsa_write_signature_restartable + *fill* 0x00000000401630fa 0x2 + .text.mbedtls_ecdsa_write_signature + 0x00000000401630fc 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x00000000401630fc mbedtls_ecdsa_write_signature + *fill* 0x0000000040163125 0x3 + .text.mbedtls_ecdsa_read_signature_restartable + 0x0000000040163128 0x96 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xac (size before relaxing) + 0x0000000040163128 mbedtls_ecdsa_read_signature_restartable + *fill* 0x00000000401631be 0x2 + .text.mbedtls_ecdsa_read_signature + 0x00000000401631c0 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x00000000401631c0 mbedtls_ecdsa_read_signature + *fill* 0x00000000401631d9 0x3 + .text.mbedtls_ecdsa_init + 0x00000000401631dc 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xe (size before relaxing) + 0x00000000401631dc mbedtls_ecdsa_init + *fill* 0x00000000401631e6 0x2 + .text.mbedtls_ecdsa_free + 0x00000000401631e8 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xf (size before relaxing) + 0x00000000401631e8 mbedtls_ecdsa_free + *fill* 0x00000000401631f4 0x0 + .text.mbedtls_ecdsa_from_keypair + 0x00000000401631f4 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x3f (size before relaxing) + 0x00000000401631f4 mbedtls_ecdsa_from_keypair + *fill* 0x0000000040163228 0x0 + .text.mbedtls_ecdsa_restart_init + 0x0000000040163228 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x16 (size before relaxing) + 0x0000000040163228 mbedtls_ecdsa_restart_init + *fill* 0x000000004016323a 0x2 + .text.mbedtls_ecdsa_restart_free + 0x000000004016323c 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x48 (size before relaxing) + 0x000000004016323c mbedtls_ecdsa_restart_free + .text.mbedtls_hmac_drbg_init + 0x0000000040163270 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x0000000040163270 mbedtls_hmac_drbg_init + .text.mbedtls_hmac_drbg_update + 0x0000000040163288 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0xd8 (size before relaxing) + 0x0000000040163288 mbedtls_hmac_drbg_update + .text.hmac_drbg_reseed_core + 0x0000000040163348 0xc3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + *fill* 0x000000004016340b 0x1 + .text.mbedtls_hmac_drbg_seed_buf + 0x000000004016340c 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x4e (size before relaxing) + 0x000000004016340c mbedtls_hmac_drbg_seed_buf + *fill* 0x000000004016344a 0x2 + .text.mbedtls_hmac_drbg_reseed + 0x000000004016344c 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x000000004016344c mbedtls_hmac_drbg_reseed + *fill* 0x0000000040163461 0x3 + .text.mbedtls_hmac_drbg_random_with_add + 0x0000000040163464 0xc4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0xd8 (size before relaxing) + 0x0000000040163464 mbedtls_hmac_drbg_random_with_add + .text.mbedtls_hmac_drbg_random + 0x0000000040163528 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x18 (size before relaxing) + 0x0000000040163528 mbedtls_hmac_drbg_random + .text.mbedtls_hmac_drbg_free + 0x000000004016353c 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x20 (size before relaxing) + 0x000000004016353c mbedtls_hmac_drbg_free + .text.mbedtls_pk_free + 0x0000000040163558 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x0000000040163558 mbedtls_pk_free + .text.mbedtls_pk_info_from_type + 0x0000000040163574 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x0000000040163574 mbedtls_pk_info_from_type + .text.mbedtls_pk_setup + 0x00000000401635ac 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x00000000401635ac mbedtls_pk_setup + *fill* 0x00000000401635d7 0x1 + .text.rsa_debug + 0x00000000401635d8 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x00000000401635f6 0x2 + .text.eckey_debug + 0x00000000401635f8 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x000000004016360d 0x3 + .text.rsa_get_bitlen + 0x0000000040163610 0xd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x11 (size before relaxing) + *fill* 0x000000004016361d 0x3 + .text.rsa_free_wrap + 0x0000000040163620 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x0000000040163632 0x2 + .text.rsa_alloc_wrap + 0x0000000040163634 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x000000004016364a 0x2 + .text.rsa_check_pair_wrap + 0x000000004016364c 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x000000004016365d 0x3 + .text.rsa_encrypt_wrap + 0x0000000040163660 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x2e (size before relaxing) + *fill* 0x0000000040163686 0x2 + .text.rsa_decrypt_wrap + 0x0000000040163688 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x2e (size before relaxing) + *fill* 0x00000000401636ae 0x2 + .text.rsa_sign_wrap + 0x00000000401636b0 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x32 (size before relaxing) + *fill* 0x00000000401636da 0x2 + .text.rsa_verify_wrap + 0x00000000401636dc 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x37 (size before relaxing) + *fill* 0x000000004016370f 0x1 + .text.ecdsa_rs_free + 0x0000000040163710 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x0000000040163722 0x2 + .text.eckey_rs_free + 0x0000000040163724 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x20 (size before relaxing) + .text.ecdsa_rs_alloc + 0x000000004016373c 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x0000000040163752 0x2 + .text.eckey_rs_alloc + 0x0000000040163754 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x23 (size before relaxing) + *fill* 0x000000004016376f 0x1 + .text.eckey_free_wrap + 0x0000000040163770 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x0000000040163782 0x2 + .text.eckey_alloc_wrap + 0x0000000040163784 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x000000004016379a 0x2 + .text.eckey_check_pair + 0x000000004016379c 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x00000000401637b1 0x3 + .text.ecdsa_sign_rs_wrap + 0x00000000401637b4 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x00000000401637dd 0x3 + .text.eckey_sign_rs_wrap + 0x00000000401637e0 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.ecdsa_verify_rs_wrap + 0x000000004016382c 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x000000004016384e 0x2 + .text.eckey_verify_rs_wrap + 0x0000000040163850 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.ecdsa_sign_wrap + 0x000000004016388c 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x00000000401638b1 0x3 + .text.ecdsa_verify_wrap + 0x00000000401638b4 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x21 (size before relaxing) + *fill* 0x00000000401638d1 0x3 + .text.pk_get_pk_alg + 0x00000000401638d4 0x7f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x83 (size before relaxing) + *fill* 0x0000000040163953 0x1 + .text.pk_get_rsapubkey + 0x0000000040163954 0xdd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0xe9 (size before relaxing) + *fill* 0x0000000040163a31 0x3 + .text.pk_group_from_specified + 0x0000000040163a34 0x1e2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x212 (size before relaxing) + *fill* 0x0000000040163c16 0x2 + .text.pk_group_id_from_group + 0x0000000040163c18 0xb2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0xd2 (size before relaxing) + *fill* 0x0000000040163cca 0x2 + .text.pk_group_id_from_specified + 0x0000000040163ccc 0x3b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x56 (size before relaxing) + *fill* 0x0000000040163d07 0x1 + .text.pk_use_ecparams + 0x0000000040163d08 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x48 (size before relaxing) + .text.pk_get_ecpubkey + 0x0000000040163d4c 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x2a (size before relaxing) + *fill* 0x0000000040163d72 0x2 + .text.mbedtls_pk_parse_subpubkey + 0x0000000040163d74 0x11a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x132 (size before relaxing) + 0x0000000040163d74 mbedtls_pk_parse_subpubkey + *fill* 0x0000000040163e8e 0x2 + .text.mbedtls_pk_parse_public_key + 0x0000000040163e90 0x17a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x1ae (size before relaxing) + 0x0000000040163e90 mbedtls_pk_parse_public_key + *fill* 0x000000004016400a 0x2 + .text.rsa_check_context + 0x000000004016400c 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xe8 (size before relaxing) + .text.rsa_prepare_blinding + 0x00000000401640d4 0x10f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x13e (size before relaxing) + *fill* 0x00000000401641e3 0x1 + .text.compute_hash + 0x00000000401641e4 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x25 (size before relaxing) + *fill* 0x0000000040164205 0x3 + .text.mgf_mask + 0x0000000040164208 0xcf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xef (size before relaxing) + *fill* 0x00000000401642d7 0x1 + .text.hash_mprime + 0x00000000401642d8 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x8e (size before relaxing) + *fill* 0x000000004016434e 0x2 + .text.rsa_rsassa_pkcs1_v15_encode + 0x0000000040164350 0x15e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x166 (size before relaxing) + *fill* 0x00000000401644ae 0x2 + .text.mbedtls_rsa_import_raw + 0x00000000401644b0 0x85 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x95 (size before relaxing) + 0x00000000401644b0 mbedtls_rsa_import_raw + *fill* 0x0000000040164535 0x3 + .text.mbedtls_rsa_complete + 0x0000000040164538 0x205 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x221 (size before relaxing) + 0x0000000040164538 mbedtls_rsa_complete + *fill* 0x000000004016473d 0x3 + .text.mbedtls_rsa_init + 0x0000000040164740 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040164740 mbedtls_rsa_init + *fill* 0x0000000040164752 0x2 + .text.mbedtls_rsa_check_pubkey + 0x0000000040164754 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x64 (size before relaxing) + 0x0000000040164754 mbedtls_rsa_check_pubkey + .text.mbedtls_rsa_check_privkey + 0x00000000401647a4 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x6b (size before relaxing) + 0x00000000401647a4 mbedtls_rsa_check_privkey + *fill* 0x0000000040164807 0x1 + .text.mbedtls_rsa_check_pub_priv + 0x0000000040164808 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x41 (size before relaxing) + 0x0000000040164808 mbedtls_rsa_check_pub_priv + *fill* 0x0000000040164841 0x3 + .text.mbedtls_rsa_public + 0x0000000040164844 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x82 (size before relaxing) + 0x0000000040164844 mbedtls_rsa_public + *fill* 0x00000000401648b6 0x2 + .text.mbedtls_rsa_private + 0x00000000401648b8 0x274 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x30c (size before relaxing) + 0x00000000401648b8 mbedtls_rsa_private + .text.rsa_rsassa_pss_sign + 0x0000000040164b2c 0x183 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x193 (size before relaxing) + *fill* 0x0000000040164caf 0x1 + .text.mbedtls_rsa_rsaes_oaep_encrypt + 0x0000000040164cb0 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x100 (size before relaxing) + 0x0000000040164cb0 mbedtls_rsa_rsaes_oaep_encrypt + .text.mbedtls_rsa_rsaes_pkcs1_v15_encrypt + 0x0000000040164da0 0xa9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040164da0 mbedtls_rsa_rsaes_pkcs1_v15_encrypt + *fill* 0x0000000040164e49 0x3 + .text.mbedtls_rsa_pkcs1_encrypt + 0x0000000040164e4c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x44 (size before relaxing) + 0x0000000040164e4c mbedtls_rsa_pkcs1_encrypt + .text.mbedtls_rsa_rsaes_oaep_decrypt + 0x0000000040164e8c 0x197 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1af (size before relaxing) + 0x0000000040164e8c mbedtls_rsa_rsaes_oaep_decrypt + *fill* 0x0000000040165023 0x1 + .text.mbedtls_rsa_rsaes_pkcs1_v15_decrypt + 0x0000000040165024 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x5d (size before relaxing) + 0x0000000040165024 mbedtls_rsa_rsaes_pkcs1_v15_decrypt + *fill* 0x0000000040165075 0x3 + .text.mbedtls_rsa_pkcs1_decrypt + 0x0000000040165078 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040165078 mbedtls_rsa_pkcs1_decrypt + .text.mbedtls_rsa_rsassa_pss_sign + 0x00000000401650c4 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x00000000401650c4 mbedtls_rsa_rsassa_pss_sign + *fill* 0x00000000401650e5 0x3 + .text.mbedtls_rsa_rsassa_pkcs1_v15_sign + 0x00000000401650e8 0xc2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xe2 (size before relaxing) + 0x00000000401650e8 mbedtls_rsa_rsassa_pkcs1_v15_sign + *fill* 0x00000000401651aa 0x2 + .text.mbedtls_rsa_pkcs1_sign + 0x00000000401651ac 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x00000000401651ac mbedtls_rsa_pkcs1_sign + *fill* 0x00000000401651fe 0x2 + .text.mbedtls_rsa_rsassa_pss_verify_ext + 0x0000000040165200 0x1a9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1b9 (size before relaxing) + 0x0000000040165200 mbedtls_rsa_rsassa_pss_verify_ext + *fill* 0x00000000401653a9 0x3 + .text.mbedtls_rsa_rsassa_pss_verify + 0x00000000401653ac 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x00000000401653ac mbedtls_rsa_rsassa_pss_verify + *fill* 0x00000000401653dd 0x3 + .text.mbedtls_rsa_rsassa_pkcs1_v15_verify + 0x00000000401653e0 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xa8 (size before relaxing) + 0x00000000401653e0 mbedtls_rsa_rsassa_pkcs1_v15_verify + .text.mbedtls_rsa_pkcs1_verify + 0x0000000040165474 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040165474 mbedtls_rsa_pkcs1_verify + *fill* 0x00000000401654bd 0x3 + .text.mbedtls_rsa_free + 0x00000000401654c0 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x82 (size before relaxing) + 0x00000000401654c0 mbedtls_rsa_free + *fill* 0x000000004016551e 0x2 + .text.mbedtls_rsa_deduce_primes + 0x0000000040165520 0x1cc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x21c (size before relaxing) + 0x0000000040165520 mbedtls_rsa_deduce_primes + .text.mbedtls_rsa_deduce_private_exponent + 0x00000000401656ec 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0xc8 (size before relaxing) + 0x00000000401656ec mbedtls_rsa_deduce_private_exponent + .text.mbedtls_rsa_deduce_crt + 0x000000004016578c 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x7a (size before relaxing) + 0x000000004016578c mbedtls_rsa_deduce_crt + *fill* 0x00000000401657fa 0x2 + .text.mbedtls_rsa_validate_params + 0x00000000401657fc 0x1d0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x21c (size before relaxing) + 0x00000000401657fc mbedtls_rsa_validate_params + .text.mbedtls_rsa_validate_crt + 0x00000000401659cc 0x12c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x15c (size before relaxing) + 0x00000000401659cc mbedtls_rsa_validate_crt + .text.mbedtls_hash_info_get_size + 0x0000000040165af8 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + 0x0000000040165af8 mbedtls_hash_info_get_size + *fill* 0x0000000040165b11 0x3 + .text.pem_get_iv + 0x0000000040165b14 0x6d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + *fill* 0x0000000040165b81 0x3 + .text.pem_pbkdf1 + 0x0000000040165b84 0xda esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x102 (size before relaxing) + *fill* 0x0000000040165c5e 0x2 + .text.pem_aes_decrypt + 0x0000000040165c60 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x61 (size before relaxing) + *fill* 0x0000000040165cad 0x3 + .text.mbedtls_pem_read_buffer + 0x0000000040165cb0 0x2c3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x2df (size before relaxing) + 0x0000000040165cb0 mbedtls_pem_read_buffer + *fill* 0x0000000040165f73 0x1 + .text.mbedtls_pem_free + 0x0000000040165f74 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x2c (size before relaxing) + 0x0000000040165f74 mbedtls_pem_free + .text.mbedtls_base64_decode + 0x0000000040165f98 0x16d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x0000000040165f98 mbedtls_base64_decode + *fill* 0x0000000040166105 0x3 + .text.misc_nvs_load + 0x0000000040166108 0x89 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0xa1 (size before relaxing) + 0x000000004016611c misc_nvs_load + *fill* 0x0000000040166191 0x3 + .text.misc_nvs_deinit + 0x0000000040166194 0x4a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x5a (size before relaxing) + 0x0000000040166198 misc_nvs_deinit + *fill* 0x00000000401661de 0x2 + .text.misc_nvs_init + 0x00000000401661e0 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x3c (size before relaxing) + 0x00000000401661e0 misc_nvs_init + .text.ethip6_output + 0x000000004016620c 0x7c esp-idf/lwip/liblwip.a(ethip6.c.obj) + 0x84 (size before relaxing) + 0x000000004016620c ethip6_output + .text._ZdaPv 0x0000000040166288 0xe /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + 0x0000000040166288 _ZdaPv + *fill* 0x0000000040166296 0x2 + .text._ZdaPvj 0x0000000040166298 0xe /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opvs.o) + 0x0000000040166298 _ZdaPvj + *fill* 0x00000000401662a6 0x2 + .text._ZSt15get_new_handlerv + 0x00000000401662a8 0x10 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + 0x00000000401662a8 _ZSt15get_new_handlerv + .text._ZnajRKSt9nothrow_t + 0x00000000401662b8 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + 0x00000000401662b8 _ZnajRKSt9nothrow_t + .text._ZdlPv 0x00000000401662dc 0xe /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + 0x00000000401662dc _ZdlPv + *fill* 0x00000000401662ea 0x2 + .text.__cxa_begin_catch + 0x00000000401662ec 0x5a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + 0x00000000401662ec __cxa_begin_catch + *fill* 0x0000000040166346 0x2 + .text.__cxa_end_catch + 0x0000000040166348 0x66 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + 0x0000000040166348 __cxa_end_catch + *fill* 0x00000000401663ae 0x2 + .text._ZL15eh_globals_dtorPv + 0x00000000401663b0 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .text.__cxa_get_globals_fast + 0x00000000401663d4 0x1d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x00000000401663d4 __cxa_get_globals_fast + *fill* 0x00000000401663f1 0x3 + .text.__cxa_get_globals + 0x00000000401663f4 0x42 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x00000000401663f4 __cxa_get_globals + *fill* 0x0000000040166436 0x2 + .text.startup._GLOBAL__sub_I__ZN17__eh_globals_init7_S_initE + 0x0000000040166438 0x1e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + *fill* 0x0000000040166456 0x2 + .text.exit._GLOBAL__sub_D__ZN17__eh_globals_init7_S_initE + 0x0000000040166458 0x1d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + *fill* 0x0000000040166475 0x3 + .text._ZN10__cxxabiv111__terminateEPFvvE + 0x0000000040166478 0x1a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x0000000040166478 _ZN10__cxxabiv111__terminateEPFvvE + *fill* 0x0000000040166492 0x2 + .text._ZSt13get_terminatev + 0x0000000040166494 0x10 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x0000000040166494 _ZSt13get_terminatev + .text._ZSt9terminatev + 0x00000000401664a4 0xf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x00000000401664a4 _ZSt9terminatev + *fill* 0x00000000401664b3 0x1 + .text._ZSt14get_unexpectedv + 0x00000000401664b4 0x10 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x00000000401664b4 _ZSt14get_unexpectedv + .text._Znaj 0x00000000401664c4 0x10 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opv.o) + 0x00000000401664c4 _Znaj + .text._Znwj 0x00000000401664d4 0x3f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + 0x00000000401664d4 _Znwj + *fill* 0x0000000040166513 0x1 + .text._ZN10__cxxabiv120__si_class_type_infoD2Ev + 0x0000000040166514 0x12 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x0000000040166514 _ZN10__cxxabiv120__si_class_type_infoD1Ev + 0x0000000040166514 _ZN10__cxxabiv120__si_class_type_infoD2Ev + *fill* 0x0000000040166526 0x2 + .text._ZN10__cxxabiv120__si_class_type_infoD0Ev + 0x0000000040166528 0x18 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x0000000040166528 _ZN10__cxxabiv120__si_class_type_infoD0Ev + .text._ZNKSt9type_infoeqERKS_$isra$0 + 0x0000000040166540 0x32 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + *fill* 0x0000000040166572 0x2 + .text._ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE + 0x0000000040166574 0x7a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x0000000040166574 _ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE + *fill* 0x00000000401665ee 0x2 + .text._ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ + 0x00000000401665f0 0x2c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x00000000401665f0 _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 + 0x000000004016661c 0x26 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x000000004016661c _ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE + *fill* 0x0000000040166642 0x2 + .text._ZNKSt9bad_alloc4whatEv + 0x0000000040166644 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + 0x0000000040166644 _ZNKSt9bad_alloc4whatEv + .text._ZNSt9bad_allocD2Ev + 0x000000004016664c 0x12 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + 0x000000004016664c _ZNSt9bad_allocD1Ev + 0x000000004016664c _ZNSt9bad_allocD2Ev + *fill* 0x000000004016665e 0x2 + .text._ZNSt9bad_allocD0Ev + 0x0000000040166660 0x18 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + 0x0000000040166660 _ZNSt9bad_allocD0Ev + .text._ZN10__cxxabiv117__class_type_infoD2Ev + 0x0000000040166678 0x12 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x0000000040166678 _ZN10__cxxabiv117__class_type_infoD2Ev + 0x0000000040166678 _ZN10__cxxabiv117__class_type_infoD1Ev + *fill* 0x000000004016668a 0x2 + .text._ZN10__cxxabiv117__class_type_infoD0Ev + 0x000000004016668c 0x18 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x000000004016668c _ZN10__cxxabiv117__class_type_infoD0Ev + .text._ZNKSt9type_infoeqERKS_$isra$0 + 0x00000000401666a4 0x32 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + *fill* 0x00000000401666d6 0x2 + .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE + 0x00000000401666d8 0x1d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x00000000401666d8 _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE + *fill* 0x00000000401666f5 0x3 + .text._ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE + 0x00000000401666f8 0x36 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x00000000401666f8 _ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE + *fill* 0x000000004016672e 0x2 + .text._ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj + 0x0000000040166730 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x0000000040166730 _ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj + .text._ZdlPvj 0x0000000040166754 0xe /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + 0x0000000040166754 _ZdlPvj + *fill* 0x0000000040166762 0x2 + .text._ZNK9__gnu_cxx24__concurrence_lock_error4whatEv + 0x0000000040166764 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x0000000040166764 _ZNK9__gnu_cxx24__concurrence_lock_error4whatEv + .text._ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv + 0x000000004016676c 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x000000004016676c _ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv + .text._ZN9__gnu_cxx24__concurrence_lock_errorD2Ev + 0x0000000040166774 0x12 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x0000000040166774 _ZN9__gnu_cxx24__concurrence_lock_errorD1Ev + 0x0000000040166774 _ZN9__gnu_cxx24__concurrence_lock_errorD2Ev + *fill* 0x0000000040166786 0x2 + .text._ZN9__gnu_cxx26__concurrence_unlock_errorD2Ev + 0x0000000040166788 0x12 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x0000000040166788 _ZN9__gnu_cxx26__concurrence_unlock_errorD2Ev + 0x0000000040166788 _ZN9__gnu_cxx26__concurrence_unlock_errorD1Ev + *fill* 0x000000004016679a 0x2 + .text._ZN9__gnu_cxx24__concurrence_lock_errorD0Ev + 0x000000004016679c 0x18 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x000000004016679c _ZN9__gnu_cxx24__concurrence_lock_errorD0Ev + .text._ZN9__gnu_cxx26__concurrence_unlock_errorD0Ev + 0x00000000401667b4 0x18 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x00000000401667b4 _ZN9__gnu_cxx26__concurrence_unlock_errorD0Ev + .text._ZN9__gnu_cxx7__mutex4lockEv + 0x00000000401667cc 0x2b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x00000000401667cc _ZN9__gnu_cxx7__mutex4lockEv + *fill* 0x00000000401667f7 0x1 + .text._ZN9__gnu_cxx7__mutex6unlockEv + 0x00000000401667f8 0x2b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x00000000401667f8 _ZN9__gnu_cxx7__mutex6unlockEv + *fill* 0x0000000040166823 0x1 + .text._ZN12_GLOBAL__N_14pool4freeEPv$constprop$0 + 0x0000000040166824 0x70 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .text._ZN12_GLOBAL__N_14pool8allocateEj$constprop$0 + 0x0000000040166894 0x62 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + *fill* 0x00000000401668f6 0x2 + .text.__cxa_allocate_exception + 0x00000000401668f8 0x36 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x00000000401668f8 __cxa_allocate_exception + *fill* 0x000000004016692e 0x2 + .text.__cxa_free_exception + 0x0000000040166930 0x27 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x0000000040166930 __cxa_free_exception + *fill* 0x0000000040166957 0x1 + .text.startup._GLOBAL__sub_I__ZN9__gnu_cxx9__freeresEv + 0x0000000040166958 0x52 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + *fill* 0x00000000401669aa 0x2 + .text.exit._GLOBAL__sub_D__ZN9__gnu_cxx9__freeresEv + 0x00000000401669ac 0xe /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + *fill* 0x00000000401669ba 0x2 + .text._ZL23__gxx_exception_cleanup19_Unwind_Reason_CodeP17_Unwind_Exception + 0x00000000401669bc 0x3f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + *fill* 0x00000000401669fb 0x1 + .text.__cxa_init_primary_exception + 0x00000000401669fc 0x32 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + 0x00000000401669fc __cxa_init_primary_exception + *fill* 0x0000000040166a2e 0x2 + .text.__cxa_throw + 0x0000000040166a30 0x3a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + 0x0000000040166a30 __cxa_throw + *fill* 0x0000000040166a6a 0x2 + .text._Z12abort_returnIiET_v + 0x0000000040166a6c 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + *fill* 0x0000000040166a75 0x3 + .text.__wrap__Unwind_Resume + 0x0000000040166a78 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x0000000040166a78 __wrap__Unwind_Resume + *fill* 0x0000000040166a81 0x3 + .text.__wrap__Unwind_DeleteException + 0x0000000040166a84 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x0000000040166a84 __wrap__Unwind_DeleteException + *fill* 0x0000000040166a8d 0x3 + .text.__wrap__Unwind_RaiseException + 0x0000000040166a90 0x6 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x9 (size before relaxing) + 0x0000000040166a90 __wrap__Unwind_RaiseException + 0x0000000040166a90 __wrap__Unwind_Resume_or_Rethrow + *fill* 0x0000000040166a96 0x2 + .text.__wrap___gxx_personality_v0 + 0x0000000040166a98 0x6 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x9 (size before relaxing) + 0x0000000040166a98 __wrap___gxx_personality_v0 + *fill* 0x0000000040166a9e 0x2 + .text.phy_change_channel_nomac + 0x0000000040166aa0 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + 0x17 (size before relaxing) + 0x0000000040166aa0 phy_change_channel_nomac + *fill* 0x0000000040166ab0 0x0 + .text.ram_pbus_force_mode + 0x0000000040166ab0 0xea /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x116 (size before relaxing) + 0x0000000040166ad0 ram_pbus_force_mode + *fill* 0x0000000040166b9a 0x2 + .text.ram_pbus_xpd_tx_on + 0x0000000040166b9c 0x88 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x0000000040166ba4 ram_pbus_xpd_tx_on + .text.ram_restart_cal + 0x0000000040166c24 0x5e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x62 (size before relaxing) + 0x0000000040166c24 ram_restart_cal + *fill* 0x0000000040166c82 0x2 + .text.ram_wait_rfpll_cal_end + 0x0000000040166c84 0x42 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x4e (size before relaxing) + 0x0000000040166c88 ram_wait_rfpll_cal_end + *fill* 0x0000000040166cc6 0x2 + .text.ram_rfpll_set_freq + 0x0000000040166cc8 0xae /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0xc5 (size before relaxing) + 0x0000000040166ce0 ram_rfpll_set_freq + *fill* 0x0000000040166d76 0x2 + .text.chip_v7_rxmax_ext_ana + 0x0000000040166d78 0xe7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0xeb (size before relaxing) + 0x0000000040166d84 chip_v7_rxmax_ext_ana + *fill* 0x0000000040166e5f 0x1 + .text.phy_freq_correct_opt + 0x0000000040166e60 0x5f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x6b (size before relaxing) + 0x0000000040166e70 phy_freq_correct_opt + *fill* 0x0000000040166ebf 0x1 + .text.get_rf_freq_cap + 0x0000000040166ec0 0xa7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0xaf (size before relaxing) + 0x0000000040166ec4 get_rf_freq_cap + *fill* 0x0000000040166f67 0x1 + .text.correct_rfpll_offset + 0x0000000040166f68 0x11f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x133 (size before relaxing) + 0x0000000040166f80 correct_rfpll_offset + *fill* 0x0000000040167087 0x1 + .text.wr_rf_freq_mem + 0x0000000040167088 0x6f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x83 (size before relaxing) + 0x0000000040167088 wr_rf_freq_mem + *fill* 0x00000000401670f7 0x1 + .text.get_rf_freq_init$part$1 + 0x00000000401670f8 0x10f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x12b (size before relaxing) + *fill* 0x0000000040167207 0x1 + .text.write_freq_mem_all + 0x0000000040167208 0x93 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0xa7 (size before relaxing) + 0x0000000040167208 write_freq_mem_all + *fill* 0x000000004016729b 0x1 + .text.bt_i2c_write_set + 0x000000004016729c 0x5dc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x630 (size before relaxing) + 0x0000000040167308 bt_i2c_write_set + .text.bt_i2c_set_wifi_data + 0x0000000040167878 0xf6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x102 (size before relaxing) + 0x000000004016788c bt_i2c_set_wifi_data + *fill* 0x000000004016796e 0x2 + .text.phy_bt_pll_track + 0x0000000040167970 0x12 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x0000000040167974 phy_bt_pll_track + *fill* 0x0000000040167982 0x2 + .text.tsens_read_init + 0x0000000040167984 0x65 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x85 (size before relaxing) + 0x000000004016798c tsens_read_init + *fill* 0x00000000401679e9 0x3 + .text.phy_bt_power_track + 0x00000000401679ec 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x1c (size before relaxing) + 0x00000000401679f0 phy_bt_power_track + *fill* 0x0000000040167a01 0x3 + .text.bt_get_i2c_data + 0x0000000040167a04 0x427 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x42b (size before relaxing) + 0x0000000040167a08 bt_get_i2c_data + *fill* 0x0000000040167e2b 0x1 + .text.write_wifi_chan_data + 0x0000000040167e2c 0xaf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0xc3 (size before relaxing) + 0x0000000040167e34 write_wifi_chan_data + *fill* 0x0000000040167edb 0x1 + .text.set_chan_freq_hw_init + 0x0000000040167edc 0xa4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0xdc (size before relaxing) + 0x0000000040167ee4 set_chan_freq_hw_init + .text.rf_init 0x0000000040167f80 0x88 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x98 (size before relaxing) + 0x0000000040167f90 rf_init + .text.set_chan_freq_sw_start + 0x0000000040168008 0x1cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x22b (size before relaxing) + 0x0000000040168020 set_chan_freq_sw_start + *fill* 0x00000000401681d3 0x1 + .text.set_channel_rfpll_freq + 0x00000000401681d4 0xd9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x109 (size before relaxing) + 0x00000000401681e4 set_channel_rfpll_freq + *fill* 0x00000000401682ad 0x3 + .text.chip_v7_set_chan_nomac + 0x00000000401682b0 0xf5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x128 (size before relaxing) + 0x00000000401682c8 chip_v7_set_chan_nomac + *fill* 0x00000000401683a5 0x3 + .text.chip_v7_set_chan_offset + 0x00000000401683a8 0x94 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0xb8 (size before relaxing) + 0x00000000401683b4 chip_v7_set_chan_offset + .text.chip_v7_set_chan_ana + 0x000000004016843c 0x1f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x2f (size before relaxing) + 0x000000004016843c chip_v7_set_chan_ana + *fill* 0x000000004016845b 0x1 + .text.ram_set_pbus_mem + 0x000000004016845c 0x2e7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x307 (size before relaxing) + 0x00000000401684ac ram_set_pbus_mem + *fill* 0x0000000040168743 0x1 + .text.ram_start_tx_tone + 0x0000000040168744 0x7e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x86 (size before relaxing) + 0x000000004016874c ram_start_tx_tone + *fill* 0x00000000401687c2 0x2 + .text.ram_bb_tx_ht20_cen + 0x00000000401687c4 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x30 (size before relaxing) + 0x00000000401687c8 ram_bb_tx_ht20_cen + .text.ram_phy_get_noisefloor + 0x00000000401687ec 0x46 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x4e (size before relaxing) + 0x00000000401687f4 ram_phy_get_noisefloor + *fill* 0x0000000040168832 0x2 + .text.ram_check_noise_floor + 0x0000000040168834 0xf6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x12a (size before relaxing) + 0x0000000040168840 ram_check_noise_floor + *fill* 0x000000004016892a 0x2 + .text.ram_bb_bss_bw_40_en + 0x000000004016892c 0x22 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x2a (size before relaxing) + 0x000000004016892c ram_bb_bss_bw_40_en + *fill* 0x000000004016894e 0x2 + .text.bt_txdc_cal$part$4 + 0x0000000040168950 0xb9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xc5 (size before relaxing) + *fill* 0x0000000040168a09 0x3 + .text.bt_txiq_cal$part$5 + 0x0000000040168a0c 0xa6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xc6 (size before relaxing) + *fill* 0x0000000040168ab2 0x2 + .text.ram_gen_rx_gain_table + 0x0000000040168ab4 0x16b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x17b (size before relaxing) + 0x0000000040168ac4 ram_gen_rx_gain_table + *fill* 0x0000000040168c1f 0x1 + .text.set_rx_gain_cal_iq + 0x0000000040168c20 0x367 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3bb (size before relaxing) + 0x0000000040168c4c set_rx_gain_cal_iq + *fill* 0x0000000040168f87 0x1 + .text.set_rx_gain_cal_dc + 0x0000000040168f88 0x391 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3b9 (size before relaxing) + 0x0000000040168f90 set_rx_gain_cal_dc + *fill* 0x0000000040169319 0x3 + .text.wr_rx_gain_mem + 0x000000004016931c 0x1cf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x1e3 (size before relaxing) + 0x0000000040169324 wr_rx_gain_mem + *fill* 0x00000000401694eb 0x1 + .text.set_rx_gain_testchip_70 + 0x00000000401694ec 0x23c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x28c (size before relaxing) + 0x0000000040169500 set_rx_gain_testchip_70 + .text.bt_correct_bbgain + 0x0000000040169728 0xb0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xb4 (size before relaxing) + 0x0000000040169728 bt_correct_bbgain + .text.bt_tx_gain_cal$part$3 + 0x00000000401697d8 0x1e2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x1f2 (size before relaxing) + *fill* 0x00000000401699ba 0x2 + .text.bt_index_to_bb + 0x00000000401699bc 0x16 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x1a (size before relaxing) + 0x00000000401699bc bt_index_to_bb + *fill* 0x00000000401699d2 0x2 + .text.wr_bt_tx_gain_mem + 0x00000000401699d4 0x106 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x112 (size before relaxing) + 0x00000000401699e0 wr_bt_tx_gain_mem + *fill* 0x0000000040169ada 0x2 + .text.set_tx_gain_table_bt + 0x0000000040169adc 0x37 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x5b (size before relaxing) + 0x0000000040169ae0 set_tx_gain_table_bt + *fill* 0x0000000040169b13 0x1 + .text.set_chanfreq_nomac + 0x0000000040169b14 0x27 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x2f (size before relaxing) + 0x0000000040169b14 set_chanfreq_nomac + *fill* 0x0000000040169b3b 0x1 + .text.set_rx_sense + 0x0000000040169b3c 0x2d4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x328 (size before relaxing) + 0x0000000040169b74 set_rx_sense + .text.read_hw_noisefloor + 0x0000000040169e10 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x1c (size before relaxing) + 0x0000000040169e10 read_hw_noisefloor + .text.noise_check_loop + 0x0000000040169e24 0x166 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x19a (size before relaxing) + 0x0000000040169e30 noise_check_loop + *fill* 0x0000000040169f8a 0x2 + .text.noise_init + 0x0000000040169f8c 0x12e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x14e (size before relaxing) + 0x0000000040169f94 noise_init + *fill* 0x000000004016a0ba 0x2 + .text.chip_v7_set_chan_misc + 0x000000004016a0bc 0x8f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xab (size before relaxing) + 0x000000004016a0d0 chip_v7_set_chan_misc + *fill* 0x000000004016a14b 0x1 + .text.set_rx_gain_table + 0x000000004016a14c 0x22d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x2c1 (size before relaxing) + 0x000000004016a168 set_rx_gain_table + *fill* 0x000000004016a379 0x3 + .text.txiq_cal_init + 0x000000004016a37c 0xdc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xf4 (size before relaxing) + 0x000000004016a380 txiq_cal_init + .text.analog_gain_init + 0x000000004016a458 0xc3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xc7 (size before relaxing) + 0x000000004016a45c analog_gain_init + *fill* 0x000000004016a51b 0x1 + .text.bb_init 0x000000004016a51c 0xc4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x124 (size before relaxing) + 0x000000004016a538 bb_init + .text.register_chipv7_phy_init_param + 0x000000004016a5e0 0x1f7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x1fb (size before relaxing) + 0x000000004016a5ec register_chipv7_phy_init_param + *fill* 0x000000004016a7d7 0x1 + .text.phy_get_romfunc_addr + 0x000000004016a7d8 0x2f9 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x2fd (size before relaxing) + 0x000000004016a888 phy_get_romfunc_addr + *fill* 0x000000004016aad1 0x3 + .text.rf_cal_data_recovery + 0x000000004016aad4 0xa2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xae (size before relaxing) + 0x000000004016aad4 rf_cal_data_recovery + *fill* 0x000000004016ab76 0x2 + .text.rf_cal_data_backup + 0x000000004016ab78 0x17a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x1a2 (size before relaxing) + 0x000000004016ab7c rf_cal_data_backup + *fill* 0x000000004016acf2 0x2 + .text.phy_get_rf_cal_version + 0x000000004016acf4 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004016acf8 phy_get_rf_cal_version + .text.i2cmst_reg_init + 0x000000004016ad00 0x79 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xa9 (size before relaxing) + 0x000000004016ad04 i2cmst_reg_init + *fill* 0x000000004016ad79 0x3 + .text.fe_reg_init + 0x000000004016ad7c 0x9d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xd5 (size before relaxing) + 0x000000004016ad88 fe_reg_init + *fill* 0x000000004016ae19 0x3 + .text.get_phy_version_str + 0x000000004016ae1c 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3b (size before relaxing) + 0x000000004016ae30 get_phy_version_str + *fill* 0x000000004016ae4c 0x0 + .text.reset_rf_dig + 0x000000004016ae4c 0x86 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xa6 (size before relaxing) + 0x000000004016ae5c reset_rf_dig + *fill* 0x000000004016aed2 0x2 + .text.register_chipv7_phy + 0x000000004016aed4 0x23e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x2be (size before relaxing) + 0x000000004016aefc register_chipv7_phy + *fill* 0x000000004016b112 0x2 + .text.phy_set_most_tpw + 0x000000004016b114 0x49 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x55 (size before relaxing) + 0x000000004016b120 phy_set_most_tpw + *fill* 0x000000004016b15d 0x3 + .text.chan14_mic_cfg + 0x000000004016b160 0xf6 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x11e (size before relaxing) + 0x000000004016b170 chan14_mic_cfg + *fill* 0x000000004016b256 0x2 + .text.phy_enable_low_rate + 0x000000004016b258 0x62 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x76 (size before relaxing) + 0x000000004016b264 phy_enable_low_rate + *fill* 0x000000004016b2ba 0x2 + .text.phy_disable_low_rate + 0x000000004016b2bc 0x5a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x76 (size before relaxing) + 0x000000004016b2c0 phy_disable_low_rate + *fill* 0x000000004016b316 0x2 + .text.ram_index_to_txbbgain + 0x000000004016b318 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000004016b31c ram_index_to_txbbgain + *fill* 0x000000004016b336 0x2 + .text.ram_txdc_cal_v70 + 0x000000004016b338 0x1bf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x1eb (size before relaxing) + 0x000000004016b348 ram_txdc_cal_v70 + *fill* 0x000000004016b4f7 0x1 + .text.txcal_debuge_mode + 0x000000004016b4f8 0x53 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x5f (size before relaxing) + 0x000000004016b4f8 txcal_debuge_mode + *fill* 0x000000004016b54b 0x1 + .text.ram_txcal_work_mode + 0x000000004016b54c 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x32 (size before relaxing) + 0x000000004016b54c ram_txcal_work_mode + *fill* 0x000000004016b57a 0x2 + .text.ram_get_fm_sar_dout + 0x000000004016b57c 0xa1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0xb5 (size before relaxing) + 0x000000004016b580 ram_get_fm_sar_dout + *fill* 0x000000004016b61d 0x3 + .text.ram_txiq_get_mis_pwr + 0x000000004016b620 0xdc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x100 (size before relaxing) + 0x000000004016b62c ram_txiq_get_mis_pwr + .text.ram_txiq_cover + 0x000000004016b6fc 0x187 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x18b (size before relaxing) + 0x000000004016b6fc ram_txiq_cover + *fill* 0x000000004016b883 0x1 + .text.rfcal_txiq + 0x000000004016b884 0x1ce /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x20a (size before relaxing) + 0x000000004016b884 rfcal_txiq + *fill* 0x000000004016ba52 0x2 + .text.ram_iq_est_enable + 0x000000004016ba54 0xaf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0xcf (size before relaxing) + 0x000000004016ba6c ram_iq_est_enable + *fill* 0x000000004016bb03 0x1 + .text.ram_iq_est_disable + 0x000000004016bb04 0x34 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x44 (size before relaxing) + 0x000000004016bb04 ram_iq_est_disable + .text.ram_dc_iq_est + 0x000000004016bb38 0x76 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x92 (size before relaxing) + 0x000000004016bb38 ram_dc_iq_est + *fill* 0x000000004016bbae 0x2 + .text.ram_pbus_rx_dco_cal + 0x000000004016bbb0 0x2ff /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x323 (size before relaxing) + 0x000000004016bbc4 ram_pbus_rx_dco_cal + *fill* 0x000000004016beaf 0x1 + .text.rxdc_est_min + 0x000000004016beb0 0xec /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0xf0 (size before relaxing) + 0x000000004016beb0 rxdc_est_min + .text.pbus_rx_dco_cal_1step + 0x000000004016bf9c 0x422 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x44a (size before relaxing) + 0x000000004016bf9c pbus_rx_dco_cal_1step + *fill* 0x000000004016c3be 0x2 + .text.rc_cal 0x000000004016c3c0 0x259 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x271 (size before relaxing) + 0x000000004016c3cc rc_cal + *fill* 0x000000004016c619 0x3 + .text.tx_cap_init + 0x000000004016c61c 0x154 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x17c (size before relaxing) + 0x000000004016c624 tx_cap_init + .text.ram_meas_tone_pwr_db + 0x000000004016c770 0x55 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x5d (size before relaxing) + 0x000000004016c770 ram_meas_tone_pwr_db + *fill* 0x000000004016c7c5 0x3 + .text.ram_rfcal_pwrctrl + 0x000000004016c7c8 0x24e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x25a (size before relaxing) + 0x000000004016c7cc ram_rfcal_pwrctrl + *fill* 0x000000004016ca16 0x2 + .text.ram_tx_pwr_backoff + 0x000000004016ca18 0x20d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x225 (size before relaxing) + 0x000000004016ca18 ram_tx_pwr_backoff + *fill* 0x000000004016cc25 0x3 + .text.cal_rf_ana_gain + 0x000000004016cc28 0xd3 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0xf3 (size before relaxing) + 0x000000004016cc30 cal_rf_ana_gain + *fill* 0x000000004016ccfb 0x1 + .text.tx_pwctrl_init_cal + 0x000000004016ccfc 0x183 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x1c3 (size before relaxing) + 0x000000004016cd08 tx_pwctrl_init_cal + *fill* 0x000000004016ce7f 0x1 + .text.tx_pwctrl_init + 0x000000004016ce80 0x9c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0xc8 (size before relaxing) + 0x000000004016ce84 tx_pwctrl_init + .text.bt_tx_pwctrl_init + 0x000000004016cf1c 0x1cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x213 (size before relaxing) + 0x000000004016cf24 bt_tx_pwctrl_init + *fill* 0x000000004016d0e7 0x1 + .text.ram_phy_get_vdd33 + 0x000000004016d0e8 0x18c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x1dc (size before relaxing) + 0x000000004016d104 ram_phy_get_vdd33 + .text.txpwr_offset + 0x000000004016d274 0x90 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0xa4 (size before relaxing) + 0x000000004016d280 txpwr_offset + .text 0x000000004016d304 0x120 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_ceil.o) + 0x000000004016d304 ceil + .text 0x000000004016d424 0x126 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_floor.o) + 0x000000004016d424 floor + *fill* 0x000000004016d54a 0x2 + .text 0x000000004016d54c 0xd /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + 0x000000004016d54c __errno + *fill* 0x000000004016d559 0x3 + .text 0x000000004016d55c 0x108 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + 0x000000004016d55c _fopen_r + 0x000000004016d650 fopen + .text 0x000000004016d664 0x31 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + 0x000000004016d664 _fseek_r + 0x000000004016d67c fseek + *fill* 0x000000004016d695 0x3 + .text 0x000000004016d698 0x3c2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + 0x000000004016d698 _fseeko_r + 0x000000004016da44 fseeko + *fill* 0x000000004016da5a 0x2 + .text 0x000000004016da5c 0x2bf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + 0x000000004016da5c __sfvwrite_r + *fill* 0x000000004016dd1b 0x1 + .text 0x000000004016dd1c 0x10f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + 0x000000004016dd1c __swhatbuf_r + 0x000000004016dd8c __smakebuf_r + *fill* 0x000000004016de2b 0x1 + .text 0x000000004016de2c 0x78 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + 0x000000004016de2c _printf_r + 0x000000004016de64 printf + .text 0x000000004016dea4 0xc8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + 0x000000004016dea4 _putc_r + 0x000000004016df58 putc + .text 0x000000004016df6c 0x4c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + 0x000000004016df6c _putchar_r + 0x000000004016df90 putchar + .text 0x000000004016dfb8 0xea /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + 0x000000004016dfb8 _puts_r + 0x000000004016e090 puts + *fill* 0x000000004016e0a2 0x2 + .text 0x000000004016e0a4 0xfc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + 0x000000004016e0a4 cleanup_glue + 0x000000004016e0bc _reclaim_reent + .text 0x000000004016e1a0 0x15d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + 0x000000004016e1c4 __srefill_r + *fill* 0x000000004016e2fd 0x3 + .text 0x000000004016e300 0xd9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + 0x000000004016e300 _snprintf_r + 0x000000004016e368 snprintf + *fill* 0x000000004016e3d9 0x3 + .text 0x000000004016e3dc 0xa3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + 0x000000004016e3dc _sprintf_r + 0x000000004016e424 sprintf + *fill* 0x000000004016e47f 0x1 + .text 0x000000004016e480 0xc2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + 0x000000004016e480 sscanf + 0x000000004016e4e8 _sscanf_r + *fill* 0x000000004016e542 0x2 + .text 0x000000004016e544 0xfd6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + 0x000000004016e578 _strtod_l + 0x000000004016f37c _strtod_r + 0x000000004016f394 strtod_l + 0x000000004016f3ac strtod + 0x000000004016f3c8 strtof_l + 0x000000004016f470 strtof + *fill* 0x000000004016f51a 0x2 + .text 0x000000004016f51c 0x34ba /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + 0x000000004016f9f0 _svfprintf_r + *fill* 0x00000000401729d6 0x2 + .text 0x00000000401729d8 0x2412 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + 0x0000000040172a28 __ssvfscanf_r + *fill* 0x0000000040174dea 0x2 + .text 0x0000000040174dec 0x18 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + 0x0000000040174dec gettimeofday + .text 0x0000000040174e04 0x36b6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + 0x00000000401752d8 _vfprintf_r + 0x0000000040178400 vfprintf + *fill* 0x00000000401784ba 0x2 + .text 0x00000000401784bc 0x62 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + 0x00000000401784bc vprintf + 0x00000000401784f0 _vprintf_r + *fill* 0x000000004017851e 0x2 + .text 0x0000000040178520 0x81 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + 0x0000000040178520 _vsnprintf_r + 0x0000000040178578 vsnprintf + *fill* 0x00000000401785a1 0x3 + .text 0x00000000401785a4 0xfb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + 0x00000000401785a4 __swsetup_r + *fill* 0x000000004017869f 0x1 + .text 0x00000000401786a0 0xe88 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + 0x00000000401787e0 _dtoa_r + .text 0x0000000040179528 0x567 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + 0x00000000401795cc __hexdig_fun + 0x0000000040179608 __gethex + *fill* 0x0000000040179a8f 0x1 + .text 0x0000000040179a90 0x1d4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + 0x0000000040179ad8 __match + 0x0000000040179b08 __hexnan + .text 0x0000000040179c64 0x11 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + 0x0000000040179c64 iswspace + *fill* 0x0000000040179c75 0x3 + .text 0x0000000040179c78 0x1c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace_l.o) + 0x0000000040179c78 iswspace_l + .text 0x0000000040179c94 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + 0x0000000040179c94 _setlocale_r + 0x0000000040179cc8 __locale_mb_cur_max + 0x0000000040179cd8 setlocale + .text 0x0000000040179cec 0x2b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + 0x0000000040179cec __localeconv_l + 0x0000000040179cf8 _localeconv_r + 0x0000000040179d08 localeconv + *fill* 0x0000000040179d17 0x1 + .text 0x0000000040179d18 0x50 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + 0x0000000040179d18 _mbrtowc_r + 0x0000000040179d50 mbrtowc + .text 0x0000000040179d68 0x3e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + 0x0000000040179d68 _mbtowc_r + 0x0000000040179d84 __ascii_mbtowc + *fill* 0x0000000040179da6 0x2 + .text 0x0000000040179da8 0xa2c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + 0x0000000040179da8 _Balloc + 0x0000000040179e34 _Bfree + 0x0000000040179e74 __multadd + 0x0000000040179efc __s2b + 0x0000000040179f94 __hi0bits + 0x0000000040179fe4 __lo0bits + 0x000000004017a054 __i2b + 0x000000004017a07c __multiply + 0x000000004017a1f0 __pow5mult + 0x000000004017a298 __lshift + 0x000000004017a398 __mcmp + 0x000000004017a3d4 __mdiff + 0x000000004017a508 __ulp + 0x000000004017a554 __b2d + 0x000000004017a600 __d2b + 0x000000004017a6b0 __ratio + 0x000000004017a704 _mprec_log10 + 0x000000004017a738 __copybits + 0x000000004017a784 __any_on + .text 0x000000004017a7d4 0x62 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + 0x000000004017a7d4 frexp + *fill* 0x000000004017a836 0x2 + .text 0x000000004017a838 0xb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_nan.o) + 0x000000004017a838 nan + *fill* 0x000000004017a843 0x1 + .text 0x000000004017a844 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + 0x000000004017a844 nanf + .text 0x000000004017a84c 0x1b0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + 0x000000004017a9b8 _strtoll_r + 0x000000004017a9cc strtoll_l + 0x000000004017a9e4 strtoll + .text 0x000000004017a9fc 0x1a8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + 0x000000004017ab60 _strtoull_r + 0x000000004017ab74 strtoull_l + 0x000000004017ab8c strtoull + .text 0x000000004017aba4 0x233a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + 0x000000004017b078 __ssprint_r + 0x000000004017b188 _svfiprintf_r + *fill* 0x000000004017cede 0x2 + .text 0x000000004017cee0 0x202a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + 0x000000004017cf30 _sungetc_r + 0x000000004017cfac __ssrefill_r + 0x000000004017cfec _sfread_r + 0x000000004017d05c __ssvfiscanf_r + *fill* 0x000000004017ef0a 0x2 + .text 0x000000004017ef0c 0x249a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + 0x000000004017f3e0 __sprint_r + 0x000000004017f404 _vfiprintf_r + 0x00000000401812e8 vfiprintf + *fill* 0x00000000401813a6 0x2 + .text.mutexattr_check + 0x00000000401813a8 0x11 esp-idf/pthread/libpthread.a(pthread.c.obj) + *fill* 0x00000000401813b9 0x0 + *fill* 0x00000000401813b9 0x0 + *fill* 0x00000000401813b9 0x0 + *fill* 0x00000000401813b9 0x0 + *fill* 0x00000000401813b9 0x0 + *fill* 0x00000000401813b9 0x3 + .text.pthread_include_pthread_impl + 0x00000000401813bc 0x5 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x00000000401813bc pthread_include_pthread_impl + *fill* 0x00000000401813c1 0x3 + .text.find_value + 0x00000000401813c4 0x14 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + *fill* 0x00000000401813d8 0x0 + *fill* 0x00000000401813d8 0x0 + *fill* 0x00000000401813d8 0x0 + *fill* 0x00000000401813d8 0x0 + *fill* 0x00000000401813d8 0x0 + .text.pthread_include_pthread_local_storage_impl + 0x00000000401813d8 0x5 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x00000000401813d8 pthread_include_pthread_local_storage_impl + *fill* 0x00000000401813dd 0x3 + .text.pthread_include_pthread_rwlock_impl + 0x00000000401813e0 0x5 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + 0x00000000401813e0 pthread_include_pthread_rwlock_impl + *fill* 0x00000000401813e5 0x3 + .text.pthread_include_pthread_semaphore_impl + 0x00000000401813e8 0x5 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + 0x00000000401813e8 pthread_include_pthread_semaphore_impl + *fill* 0x00000000401813ed 0x0 + *fill* 0x00000000401813ed 0x0 + *fill* 0x00000000401813ed 0x0 + *fill* 0x00000000401813ed 0x0 + *fill* 0x00000000401813ed 0x0 + *fill* 0x00000000401813ed 0x0 + *fill* 0x00000000401813ed 0x0 + *fill* 0x00000000401813ed 0x0 + *fill* 0x00000000401813ed 0x0 + *fill* 0x00000000401813ed 0x0 + *fill* 0x00000000401813ed 0x0 + *fill* 0x00000000401813ed 0x0 + *fill* 0x00000000401813ed 0x0 + *fill* 0x00000000401813ed 0x0 + *fill* 0x00000000401813ed 0x0 + *fill* 0x00000000401813ed 0x0 + *fill* 0x00000000401813ed 0x0 + *fill* 0x00000000401813ed 0x0 + *fill* 0x00000000401813ed 0x0 + *fill* 0x00000000401813ed 0x0 + *fill* 0x00000000401813ed 0x0 + *fill* 0x00000000401813ed 0x0 + *fill* 0x00000000401813ed 0x3 + .text.__cxx_eh_arena_size_get + 0x00000000401813f0 0x7 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x00000000401813f0 __cxx_eh_arena_size_get + *fill* 0x00000000401813f7 0x0 + *fill* 0x00000000401813f7 0x0 + *fill* 0x00000000401813f7 0x0 + *fill* 0x00000000401813f7 0x0 + *fill* 0x00000000401813f7 0x0 + *fill* 0x00000000401813f7 0x0 + *fill* 0x00000000401813f7 0x0 + *fill* 0x00000000401813f7 0x0 + *fill* 0x00000000401813f7 0x0 + *fill* 0x00000000401813f7 0x1 + .text.panic_get_address + 0x00000000401813f8 0x7 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x00000000401813f8 panic_get_address + *fill* 0x00000000401813ff 0x1 + .text.panic_get_cause + 0x0000000040181400 0x8 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x0000000040181400 panic_get_cause + .text.panic_set_address + 0x0000000040181408 0x7 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x0000000040181408 panic_set_address + *fill* 0x000000004018140f 0x0 + *fill* 0x000000004018140f 0x0 + *fill* 0x000000004018140f 0x0 + *fill* 0x000000004018140f 0x0 + *fill* 0x000000004018140f 0x0 + *fill* 0x000000004018140f 0x1 + .text.heap_caps_match + 0x0000000040181410 0x30 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x0000000040181410 heap_caps_match + *fill* 0x0000000040181440 0x0 + *fill* 0x0000000040181440 0x0 + *fill* 0x0000000040181440 0x0 + *fill* 0x0000000040181440 0x0 + .text.heap_caps_check_add_region_allowed + 0x0000000040181440 0x5d esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x0000000040181440 heap_caps_check_add_region_allowed + *fill* 0x000000004018149d 0x0 + *fill* 0x000000004018149d 0x0 + *fill* 0x000000004018149d 0x0 + *fill* 0x000000004018149d 0x3 + .text.s_compare_reserved_regions + 0x00000000401814a0 0xc esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x00000000401814ac 0x0 + *fill* 0x00000000401814ac 0x0 + *fill* 0x00000000401814ac 0x0 + *fill* 0x00000000401814ac 0x0 + *fill* 0x00000000401814ac 0x0 + *fill* 0x00000000401814ac 0x0 + *fill* 0x00000000401814ac 0x0 + *fill* 0x00000000401814ac 0x0 + .text.esp_intr_get_cpu + 0x00000000401814ac 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x00000000401814ac esp_intr_get_cpu + *fill* 0x00000000401814b8 0x0 + *fill* 0x00000000401814b8 0x0 + *fill* 0x00000000401814b8 0x0 + *fill* 0x00000000401814b8 0x0 + *fill* 0x00000000401814b8 0x0 + *fill* 0x00000000401814b8 0x0 + *fill* 0x00000000401814b8 0x0 + *fill* 0x00000000401814b8 0x0 + *fill* 0x00000000401814b8 0x0 + .text.pthread_setcancelstate + 0x00000000401814b8 0x7 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x00000000401814b8 pthread_setcancelstate + *fill* 0x00000000401814bf 0x1 + .text.newlib_include_pthread_impl + 0x00000000401814c0 0x5 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x00000000401814c0 newlib_include_pthread_impl + *fill* 0x00000000401814c5 0x0 + *fill* 0x00000000401814c5 0x0 + *fill* 0x00000000401814c5 0x3 + .text.syscall_not_implemented + 0x00000000401814c8 0xb esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x00000000401814c8 _getpid_r + 0x00000000401814c8 _kill_r + 0x00000000401814c8 _system_r + 0x00000000401814c8 _isatty_r + *fill* 0x00000000401814d3 0x0 + *fill* 0x00000000401814d3 0x1 + .text.newlib_include_syscalls_impl + 0x00000000401814d4 0x5 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x00000000401814d4 newlib_include_syscalls_impl + *fill* 0x00000000401814d9 0x0 + *fill* 0x00000000401814d9 0x0 + *fill* 0x00000000401814d9 0x0 + *fill* 0x00000000401814d9 0x0 + *fill* 0x00000000401814d9 0x0 + *fill* 0x00000000401814d9 0x0 + *fill* 0x00000000401814d9 0x0 + *fill* 0x00000000401814d9 0x0 + *fill* 0x00000000401814d9 0x0 + *fill* 0x00000000401814d9 0x3 + .text.__cxa_guard_dummy + 0x00000000401814dc 0x5 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x00000000401814dc __cxa_guard_dummy + *fill* 0x00000000401814e1 0x0 + *fill* 0x00000000401814e1 0x0 + *fill* 0x00000000401814e1 0x0 + *fill* 0x00000000401814e1 0x0 + *fill* 0x00000000401814e1 0x0 + *fill* 0x00000000401814e1 0x0 + *fill* 0x00000000401814e1 0x0 + *fill* 0x00000000401814e1 0x0 + *fill* 0x00000000401814e1 0x0 + *fill* 0x00000000401814e1 0x0 + *fill* 0x00000000401814e1 0x0 + *fill* 0x00000000401814e1 0x3 + .text.include_esp_phy_override + 0x00000000401814e4 0x5 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x00000000401814e4 include_esp_phy_override + *fill* 0x00000000401814e9 0x0 + *fill* 0x00000000401814e9 0x0 + *fill* 0x00000000401814e9 0x0 + *fill* 0x00000000401814e9 0x0 + *fill* 0x00000000401814e9 0x0 + *fill* 0x00000000401814e9 0x0 + *fill* 0x00000000401814e9 0x0 + *fill* 0x00000000401814e9 0x0 + *fill* 0x00000000401814e9 0x0 + *fill* 0x00000000401814e9 0x0 + *fill* 0x00000000401814e9 0x0 + *fill* 0x00000000401814e9 0x0 + *fill* 0x00000000401814e9 0x0 + *fill* 0x00000000401814e9 0x3 + .text.vfs_include_syscalls_impl + 0x00000000401814ec 0x5 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000401814ec vfs_include_syscalls_impl + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x0 + *fill* 0x00000000401814f1 0x3 + .text.queue_init + 0x00000000401814f4 0x18 esp-idf/bt/libbt.a(hli_api.c.obj) + *fill* 0x000000004018150c 0x0 + *fill* 0x000000004018150c 0x0 + *fill* 0x000000004018150c 0x0 + .text.nvs_sec_provider_include_impl + 0x000000004018150c 0x5 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + 0x000000004018150c nvs_sec_provider_include_impl + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x0 + *fill* 0x0000000040181511 0x3 + .text.get_config + 0x0000000040181514 0x7 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x0 + *fill* 0x000000004018151b 0x1 + .text.protocomm_common_security_handler + 0x000000004018151c 0x2d esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + *fill* 0x0000000040181549 0x0 + *fill* 0x0000000040181549 0x0 + *fill* 0x0000000040181549 0x0 + *fill* 0x0000000040181549 0x0 + *fill* 0x0000000040181549 0x0 + *fill* 0x0000000040181549 0x0 + *fill* 0x0000000040181549 0x0 + *fill* 0x0000000040181549 0x0 + *fill* 0x0000000040181549 0x0 + *fill* 0x0000000040181549 0x3 + .text.flip_endian + 0x000000004018154c 0x27 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x0 + *fill* 0x0000000040181573 0x1 + .text.protocomm_ble_add_endpoint + 0x0000000040181574 0x7 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + *fill* 0x000000004018157b 0x1 + .text.protocomm_ble_remove_endpoint + 0x000000004018157c 0x7 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x0 + *fill* 0x0000000040181583 0x1 + .text.btdm_sleep_enter_phase1_wrapper + 0x0000000040181584 0x5 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x0000000040181589 0x3 + .text.btdm_config_mask_load + 0x000000004018158c 0x7 esp-idf/bt/libbt.a(bt.c.obj) + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x0 + *fill* 0x0000000040181593 0x1 + .text.ble_hs_util_load_rand_addr + 0x0000000040181594 0x7 esp-idf/bt/libbt.a(addr.c.obj) + *fill* 0x000000004018159b 0x0 + *fill* 0x000000004018159b 0x1 + .text.ble_store_util_iter_count + 0x000000004018159c 0xd esp-idf/bt/libbt.a(ble_store_util.c.obj) + *fill* 0x00000000401815a9 0x0 + *fill* 0x00000000401815a9 0x0 + *fill* 0x00000000401815a9 0x0 + *fill* 0x00000000401815a9 0x3 + .text.ble_hs_is_rpa + 0x00000000401815ac 0x22 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0x00000000401815ac ble_hs_is_rpa + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x0 + *fill* 0x00000000401815ce 0x2 + .text.ble_hs_hci_evt_le_adv_rpt_first_pass + 0x00000000401815d0 0x58 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + .text.ble_hs_hci_evt_le_ext_adv_rpt + 0x0000000040181628 0x7 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + *fill* 0x000000004018162f 0x1 + .text.ble_hs_hci_evt_le_periodic_adv_sync_estab + 0x0000000040181630 0x7 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + *fill* 0x0000000040181637 0x1 + .text.ble_hs_hci_evt_le_periodic_adv_rpt + 0x0000000040181638 0x7 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + *fill* 0x000000004018163f 0x1 + .text.ble_hs_hci_evt_le_periodic_adv_sync_lost + 0x0000000040181640 0x7 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + *fill* 0x0000000040181647 0x1 + .text.ble_hs_hci_evt_le_periodic_adv_sync_transfer + 0x0000000040181648 0x7 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + *fill* 0x000000004018164f 0x1 + .text.ble_hs_hci_evt_le_scan_timeout + 0x0000000040181650 0x7 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + *fill* 0x0000000040181657 0x1 + .text.ble_hs_hci_evt_le_adv_set_terminated + 0x0000000040181658 0x7 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + *fill* 0x000000004018165f 0x1 + .text.ble_hs_hci_evt_le_scan_req_rcvd + 0x0000000040181660 0x7 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + *fill* 0x0000000040181667 0x0 + *fill* 0x0000000040181667 0x0 + *fill* 0x0000000040181667 0x0 + *fill* 0x0000000040181667 0x0 + *fill* 0x0000000040181667 0x0 + *fill* 0x0000000040181667 0x0 + *fill* 0x0000000040181667 0x0 + *fill* 0x0000000040181667 0x0 + *fill* 0x0000000040181667 0x0 + *fill* 0x0000000040181667 0x0 + *fill* 0x0000000040181667 0x0 + *fill* 0x0000000040181667 0x0 + *fill* 0x0000000040181667 0x1 + .text.ble_att_inc_tx_stat + 0x0000000040181668 0x5 esp-idf/bt/libbt.a(ble_att.c.obj) + 0x0000000040181668 ble_att_inc_tx_stat + *fill* 0x000000004018166d 0x3 + .text.ble_att_set_peer_mtu + 0x0000000040181670 0x12 esp-idf/bt/libbt.a(ble_att.c.obj) + 0x0000000040181670 ble_att_set_peer_mtu + *fill* 0x0000000040181682 0x0 + *fill* 0x0000000040181682 0x0 + *fill* 0x0000000040181682 0x0 + *fill* 0x0000000040181682 0x2 + .text.ble_gattc_rx_entry_find + 0x0000000040181684 0x1c esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000401816a0 0x0 + *fill* 0x00000000401816a0 0x0 + *fill* 0x00000000401816a0 0x0 + *fill* 0x00000000401816a0 0x0 + *fill* 0x00000000401816a0 0x0 + .text.ble_gattc_proc_matches_conn_op + 0x00000000401816a0 0x2e esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000401816ce 0x2 + .text.ble_gattc_proc_matches_expired + 0x00000000401816d0 0x22 esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000401816f2 0x2 + .text.ble_gattc_proc_matches_stalled + 0x00000000401816f4 0xb esp-idf/bt/libbt.a(ble_gattc.c.obj) + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x0 + *fill* 0x00000000401816ff 0x1 + .text.ble_store_key_from_value_cccd + 0x0000000040181700 0x28 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x0000000040181700 ble_store_key_from_value_cccd + .text.ble_store_key_from_value_sec + 0x0000000040181728 0x33 esp-idf/bt/libbt.a(ble_store.c.obj) + 0x0000000040181728 ble_store_key_from_value_sec + *fill* 0x000000004018175b 0x0 + *fill* 0x000000004018175b 0x0 + *fill* 0x000000004018175b 0x0 + *fill* 0x000000004018175b 0x0 + *fill* 0x000000004018175b 0x0 + *fill* 0x000000004018175b 0x0 + *fill* 0x000000004018175b 0x0 + *fill* 0x000000004018175b 0x0 + *fill* 0x000000004018175b 0x0 + *fill* 0x000000004018175b 0x0 + *fill* 0x000000004018175b 0x0 + *fill* 0x000000004018175b 0x0 + *fill* 0x000000004018175b 0x0 + *fill* 0x000000004018175b 0x0 + *fill* 0x000000004018175b 0x0 + *fill* 0x000000004018175b 0x0 + *fill* 0x000000004018175b 0x1 + .text.ble_hs_log_flat_buf + 0x000000004018175c 0xf esp-idf/bt/libbt.a(ble_hs_log.c.obj) + 0x000000004018175c ble_hs_log_flat_buf + *fill* 0x000000004018176b 0x0 + *fill* 0x000000004018176b 0x0 + *fill* 0x000000004018176b 0x0 + *fill* 0x000000004018176b 0x0 + *fill* 0x000000004018176b 0x0 + *fill* 0x000000004018176b 0x1 + .text.ble_l2cap_sig_proc_matches + 0x000000004018176c 0x30 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + .text.ble_l2cap_sig_rx_noop + 0x000000004018179c 0x7 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + *fill* 0x00000000401817a3 0x1 + .text.ble_l2cap_sig_update_call_cb + 0x00000000401817a4 0x13 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + *fill* 0x00000000401817b7 0x0 + *fill* 0x00000000401817b7 0x0 + *fill* 0x00000000401817b7 0x0 + *fill* 0x00000000401817b7 0x0 + *fill* 0x00000000401817b7 0x0 + *fill* 0x00000000401817b7 0x0 + *fill* 0x00000000401817b7 0x0 + *fill* 0x00000000401817b7 0x0 + *fill* 0x00000000401817b7 0x0 + *fill* 0x00000000401817b7 0x0 + *fill* 0x00000000401817b7 0x0 + *fill* 0x00000000401817b7 0x0 + *fill* 0x00000000401817b7 0x0 + *fill* 0x00000000401817b7 0x0 + *fill* 0x00000000401817b7 0x1 + .text.ble_gap_has_client + 0x00000000401817b8 0x18 esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x00000000401817d0 0x0 + *fill* 0x00000000401817d0 0x0 + *fill* 0x00000000401817d0 0x0 + .text.ble_gap_update_to_l2cap + 0x00000000401817d0 0x1d esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x00000000401817ed 0x0 + *fill* 0x00000000401817ed 0x0 + *fill* 0x00000000401817ed 0x3 + .text.ble_gap_adv_type + 0x00000000401817f0 0x31 esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x0000000040181821 0x3 + .text.ble_gap_adv_dflt_itvls + 0x0000000040181824 0x43 esp-idf/bt/libbt.a(ble_gap.c.obj) + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x0 + *fill* 0x0000000040181867 0x1 + .text.ble_uuid_u16 + 0x0000000040181868 0x14 esp-idf/bt/libbt.a(ble_uuid.c.obj) + 0x0000000040181868 ble_uuid_u16 + *fill* 0x000000004018187c 0x0 + *fill* 0x000000004018187c 0x0 + .text.ble_uuid_length + 0x000000004018187c 0xb esp-idf/bt/libbt.a(ble_uuid.c.obj) + 0x000000004018187c ble_uuid_length + *fill* 0x0000000040181887 0x0 + *fill* 0x0000000040181887 0x0 + *fill* 0x0000000040181887 0x0 + *fill* 0x0000000040181887 0x0 + *fill* 0x0000000040181887 0x0 + *fill* 0x0000000040181887 0x0 + *fill* 0x0000000040181887 0x0 + *fill* 0x0000000040181887 0x0 + *fill* 0x0000000040181887 0x0 + *fill* 0x0000000040181887 0x0 + *fill* 0x0000000040181887 0x0 + *fill* 0x0000000040181887 0x0 + *fill* 0x0000000040181887 0x0 + *fill* 0x0000000040181887 0x0 + *fill* 0x0000000040181887 0x0 + *fill* 0x0000000040181887 0x1 + .text.ble_l2cap_is_mtu_req_sent + 0x0000000040181888 0xb esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x0000000040181888 ble_l2cap_is_mtu_req_sent + *fill* 0x0000000040181893 0x0 + *fill* 0x0000000040181893 0x0 + *fill* 0x0000000040181893 0x0 + *fill* 0x0000000040181893 0x0 + *fill* 0x0000000040181893 0x0 + *fill* 0x0000000040181893 0x0 + *fill* 0x0000000040181893 0x0 + *fill* 0x0000000040181893 0x0 + *fill* 0x0000000040181893 0x0 + *fill* 0x0000000040181893 0x0 + *fill* 0x0000000040181893 0x1 + .text.ble_hs_misc_own_addr_type_to_id + 0x0000000040181894 0x16 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + 0x0000000040181894 ble_hs_misc_own_addr_type_to_id + *fill* 0x00000000401818aa 0x2 + .text.ble_hs_misc_peer_addr_type_to_id + 0x00000000401818ac 0x16 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + 0x00000000401818ac ble_hs_misc_peer_addr_type_to_id + *fill* 0x00000000401818c2 0x2 + .text.ble_gatts_chr_clt_cfg_allowed + 0x00000000401818c4 0x1e esp-idf/bt/libbt.a(ble_gatts.c.obj) + *fill* 0x00000000401818e2 0x2 + .text.ble_gatts_att_flags_from_chr_flags + 0x00000000401818e4 0x66 esp-idf/bt/libbt.a(ble_gatts.c.obj) + *fill* 0x000000004018194a 0x2 + .text.ble_gatts_chr_properties + 0x000000004018194c 0x69 esp-idf/bt/libbt.a(ble_gatts.c.obj) + *fill* 0x00000000401819b5 0x3 + .text.ble_gatts_chr_is_sane + 0x00000000401819b8 0x19 esp-idf/bt/libbt.a(ble_gatts.c.obj) + *fill* 0x00000000401819d1 0x3 + .text.ble_gatts_chr_op + 0x00000000401819d4 0x10 esp-idf/bt/libbt.a(ble_gatts.c.obj) + *fill* 0x00000000401819e4 0x0 + .text.ble_gatts_dsc_op + 0x00000000401819e4 0x10 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .text.ble_gatts_dsc_is_sane + 0x00000000401819f4 0x19 esp-idf/bt/libbt.a(ble_gatts.c.obj) + *fill* 0x0000000040181a0d 0x0 + *fill* 0x0000000040181a0d 0x0 + *fill* 0x0000000040181a0d 0x0 + *fill* 0x0000000040181a0d 0x3 + .text.ble_gatts_svc_is_sane + 0x0000000040181a10 0x21 esp-idf/bt/libbt.a(ble_gatts.c.obj) + *fill* 0x0000000040181a31 0x0 + *fill* 0x0000000040181a31 0x3 + .text.ble_gatts_schedule_update + 0x0000000040181a34 0x38 esp-idf/bt/libbt.a(ble_gatts.c.obj) + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + *fill* 0x0000000040181a6c 0x0 + .text.find_field_func + 0x0000000040181a6c 0x18 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + *fill* 0x0000000040181a84 0x0 + *fill* 0x0000000040181a84 0x0 + .text.ble_hs_adv_parse + 0x0000000040181a84 0x38 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + 0x0000000040181a84 ble_hs_adv_parse + *fill* 0x0000000040181abc 0x0 + *fill* 0x0000000040181abc 0x0 + .text.ble_hs_hci_rx_cmd_complete + 0x0000000040181abc 0x64 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .text.ble_hs_hci_rx_cmd_status + 0x0000000040181b20 0x35 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + *fill* 0x0000000040181b55 0x0 + *fill* 0x0000000040181b55 0x0 + *fill* 0x0000000040181b55 0x0 + *fill* 0x0000000040181b55 0x0 + *fill* 0x0000000040181b55 0x0 + *fill* 0x0000000040181b55 0x0 + *fill* 0x0000000040181b55 0x0 + *fill* 0x0000000040181b55 0x0 + *fill* 0x0000000040181b55 0x0 + *fill* 0x0000000040181b55 0x0 + *fill* 0x0000000040181b55 0x0 + *fill* 0x0000000040181b55 0x0 + *fill* 0x0000000040181b55 0x0 + *fill* 0x0000000040181b55 0x0 + *fill* 0x0000000040181b55 0x0 + *fill* 0x0000000040181b55 0x3 + .text.ble_hs_hci_util_handle_pb_bc_join + 0x0000000040181b58 0x20 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + 0x0000000040181b58 ble_hs_hci_util_handle_pb_bc_join + *fill* 0x0000000040181b78 0x0 + *fill* 0x0000000040181b78 0x0 + *fill* 0x0000000040181b78 0x0 + *fill* 0x0000000040181b78 0x0 + *fill* 0x0000000040181b78 0x0 + .text.is_irk_nonzero + 0x0000000040181b78 0x20 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + *fill* 0x0000000040181b98 0x0 + .text.put_le16 + 0x0000000040181b98 0xe esp-idf/bt/libbt.a(endian.c.obj) + 0x0000000040181b98 put_le16 + *fill* 0x0000000040181ba6 0x2 + .text.put_le32 + 0x0000000040181ba8 0x1a esp-idf/bt/libbt.a(endian.c.obj) + 0x0000000040181ba8 put_le32 + *fill* 0x0000000040181bc2 0x2 + .text.get_le16 + 0x0000000040181bc4 0x11 esp-idf/bt/libbt.a(endian.c.obj) + 0x0000000040181bc4 get_le16 + *fill* 0x0000000040181bd5 0x3 + .text.get_le32 + 0x0000000040181bd8 0x23 esp-idf/bt/libbt.a(endian.c.obj) + 0x0000000040181bd8 get_le32 + *fill* 0x0000000040181bfb 0x1 + .text.get_be32 + 0x0000000040181bfc 0x23 esp-idf/bt/libbt.a(endian.c.obj) + 0x0000000040181bfc get_be32 + *fill* 0x0000000040181c1f 0x1 + .text.swap_in_place + 0x0000000040181c20 0x23 esp-idf/bt/libbt.a(endian.c.obj) + 0x0000000040181c20 swap_in_place + *fill* 0x0000000040181c43 0x1 + .text.swap_buf + 0x0000000040181c44 0x1e esp-idf/bt/libbt.a(endian.c.obj) + 0x0000000040181c44 swap_buf + *fill* 0x0000000040181c62 0x0 + *fill* 0x0000000040181c62 0x0 + *fill* 0x0000000040181c62 0x2 + .text.os_mempool_clear + 0x0000000040181c64 0x3d esp-idf/bt/libbt.a(os_mempool.c.obj) + 0x0000000040181c64 os_mempool_clear + *fill* 0x0000000040181ca1 0x0 + *fill* 0x0000000040181ca1 0x3 + .text.os_memblock_from + 0x0000000040181ca4 0x3d esp-idf/bt/libbt.a(os_mempool.c.obj) + 0x0000000040181ca4 os_memblock_from + *fill* 0x0000000040181ce1 0x0 + *fill* 0x0000000040181ce1 0x0 + *fill* 0x0000000040181ce1 0x0 + *fill* 0x0000000040181ce1 0x0 + *fill* 0x0000000040181ce1 0x0 + *fill* 0x0000000040181ce1 0x0 + *fill* 0x0000000040181ce1 0x0 + *fill* 0x0000000040181ce1 0x3 + .text.os_mbuf_pool_init + 0x0000000040181ce4 0x12 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x0000000040181ce4 os_mbuf_pool_init + *fill* 0x0000000040181cf6 0x0 + *fill* 0x0000000040181cf6 0x0 + *fill* 0x0000000040181cf6 0x2 + .text.os_mbuf_off + 0x0000000040181cf8 0x26 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x0000000040181cf8 os_mbuf_off + *fill* 0x0000000040181d1e 0x0 + *fill* 0x0000000040181d1e 0x0 + *fill* 0x0000000040181d1e 0x0 + *fill* 0x0000000040181d1e 0x0 + *fill* 0x0000000040181d1e 0x0 + *fill* 0x0000000040181d1e 0x0 + *fill* 0x0000000040181d1e 0x2 + .text.os_mbuf_concat + 0x0000000040181d20 0x44 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x0000000040181d20 os_mbuf_concat + *fill* 0x0000000040181d64 0x0 + *fill* 0x0000000040181d64 0x0 + *fill* 0x0000000040181d64 0x0 + *fill* 0x0000000040181d64 0x0 + *fill* 0x0000000040181d64 0x0 + *fill* 0x0000000040181d64 0x0 + *fill* 0x0000000040181d64 0x0 + *fill* 0x0000000040181d64 0x0 + *fill* 0x0000000040181d64 0x0 + *fill* 0x0000000040181d64 0x0 + *fill* 0x0000000040181d64 0x0 + *fill* 0x0000000040181d64 0x0 + *fill* 0x0000000040181d64 0x0 + *fill* 0x0000000040181d64 0x0 + *fill* 0x0000000040181d64 0x0 + *fill* 0x0000000040181d64 0x0 + *fill* 0x0000000040181d64 0x0 + *fill* 0x0000000040181d64 0x0 + *fill* 0x0000000040181d64 0x0 + .text.ble_hs_conn_chan_find_by_scid + 0x0000000040181d64 0x22 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x0000000040181d64 ble_hs_conn_chan_find_by_scid + *fill* 0x0000000040181d86 0x2 + .text.ble_hs_conn_chan_insert + 0x0000000040181d88 0x3c esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x0000000040181d88 ble_hs_conn_chan_insert + *fill* 0x0000000040181dc4 0x0 + *fill* 0x0000000040181dc4 0x0 + *fill* 0x0000000040181dc4 0x0 + *fill* 0x0000000040181dc4 0x0 + *fill* 0x0000000040181dc4 0x0 + *fill* 0x0000000040181dc4 0x0 + *fill* 0x0000000040181dc4 0x0 + *fill* 0x0000000040181dc4 0x0 + *fill* 0x0000000040181dc4 0x0 + *fill* 0x0000000040181dc4 0x0 + .text.ble_sm_proc_matches + 0x0000000040181dc4 0x42 esp-idf/bt/libbt.a(ble_sm.c.obj) + *fill* 0x0000000040181e06 0x2 + .text.ble_sm_rx_noop + 0x0000000040181e08 0xf esp-idf/bt/libbt.a(ble_sm.c.obj) + *fill* 0x0000000040181e17 0x0 + *fill* 0x0000000040181e17 0x1 + .text.ble_sm_key_dist + 0x0000000040181e18 0x2b esp-idf/bt/libbt.a(ble_sm.c.obj) + *fill* 0x0000000040181e43 0x1 + .text.ble_sm_state_after_pair + 0x0000000040181e44 0x12 esp-idf/bt/libbt.a(ble_sm.c.obj) + *fill* 0x0000000040181e56 0x0 + *fill* 0x0000000040181e56 0x0 + *fill* 0x0000000040181e56 0x2 + .text.ble_sm_verify_auth_requirements + 0x0000000040181e58 0x7 esp-idf/bt/libbt.a(ble_sm.c.obj) + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x0 + *fill* 0x0000000040181e5f 0x1 + .text.ble_sm_ioact_state + 0x0000000040181e60 0x35 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x0000000040181e60 ble_sm_ioact_state + *fill* 0x0000000040181e95 0x0 + *fill* 0x0000000040181e95 0x0 + *fill* 0x0000000040181e95 0x3 + .text.ble_sm_our_pair_rand + 0x0000000040181e98 0x15 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x0000000040181e98 ble_sm_our_pair_rand + *fill* 0x0000000040181ead 0x0 + *fill* 0x0000000040181ead 0x3 + .text.ble_sm_peer_pair_rand + 0x0000000040181eb0 0x15 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x0000000040181eb0 ble_sm_peer_pair_rand + *fill* 0x0000000040181ec5 0x0 + *fill* 0x0000000040181ec5 0x0 + *fill* 0x0000000040181ec5 0x0 + *fill* 0x0000000040181ec5 0x3 + .text.ble_l2cap_sig_hdr_parse + 0x0000000040181ec8 0x1d esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + 0x0000000040181ec8 ble_l2cap_sig_hdr_parse + *fill* 0x0000000040181ee5 0x0 + *fill* 0x0000000040181ee5 0x0 + *fill* 0x0000000040181ee5 0x0 + *fill* 0x0000000040181ee5 0x3 + .text.ble_att_svr_prep_find_prev + 0x0000000040181ee8 0x26 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + *fill* 0x0000000040181f0e 0x2 + .text.ble_att_svr_prep_validate + 0x0000000040181f10 0x63 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x0 + *fill* 0x0000000040181f73 0x1 + .text.ble_sm_alg_xor_128 + 0x0000000040181f74 0x23 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + *fill* 0x0000000040181f97 0x0 + *fill* 0x0000000040181f97 0x0 + *fill* 0x0000000040181f97 0x0 + *fill* 0x0000000040181f97 0x0 + *fill* 0x0000000040181f97 0x0 + *fill* 0x0000000040181f97 0x0 + *fill* 0x0000000040181f97 0x1 + .text.ble_sm_alg_ecc_init + 0x0000000040181f98 0x5 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x0000000040181f98 ble_sm_alg_ecc_init + *fill* 0x0000000040181f9d 0x0 + *fill* 0x0000000040181f9d 0x0 + *fill* 0x0000000040181f9d 0x0 + *fill* 0x0000000040181f9d 0x0 + *fill* 0x0000000040181f9d 0x0 + *fill* 0x0000000040181f9d 0x0 + *fill* 0x0000000040181f9d 0x0 + *fill* 0x0000000040181f9d 0x0 + *fill* 0x0000000040181f9d 0x0 + *fill* 0x0000000040181f9d 0x0 + *fill* 0x0000000040181f9d 0x0 + *fill* 0x0000000040181f9d 0x0 + *fill* 0x0000000040181f9d 0x0 + *fill* 0x0000000040181f9d 0x3 + .text.ble_sm_sc_initiator_txes_confirm + 0x0000000040181fa0 0x1a esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + *fill* 0x0000000040181fba 0x2 + .text.ble_sm_sc_responder_verifies_random + 0x0000000040181fbc 0x1a esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + *fill* 0x0000000040181fd6 0x2 + .text.ble_sm_sc_gen_ri + 0x0000000040181fd8 0x60 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + *fill* 0x0000000040182038 0x0 + *fill* 0x0000000040182038 0x0 + *fill* 0x0000000040182038 0x0 + *fill* 0x0000000040182038 0x0 + *fill* 0x0000000040182038 0x0 + *fill* 0x0000000040182038 0x0 + *fill* 0x0000000040182038 0x0 + *fill* 0x0000000040182038 0x0 + *fill* 0x0000000040182038 0x0 + *fill* 0x0000000040182038 0x0 + *fill* 0x0000000040182038 0x0 + *fill* 0x0000000040182038 0x0 + *fill* 0x0000000040182038 0x0 + *fill* 0x0000000040182038 0x0 + *fill* 0x0000000040182038 0x0 + *fill* 0x0000000040182038 0x0 + *fill* 0x0000000040182038 0x0 + *fill* 0x0000000040182038 0x0 + .text 0x0000000040182038 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke.o) + 0x0000000040182038 config_ke_funcs_reset + *fill* 0x000000004018203d 0x0 + *fill* 0x000000004018203d 0x0 + *fill* 0x000000004018203d 0x0 + *fill* 0x000000004018203d 0x0 + *fill* 0x000000004018203d 0x0 + *fill* 0x000000004018203d 0x0 + *fill* 0x000000004018203d 0x0 + *fill* 0x000000004018203d 0x0 + *fill* 0x000000004018203d 0x0 + *fill* 0x000000004018203d 0x0 + *fill* 0x000000004018203d 0x0 + *fill* 0x000000004018203d 0x0 + *fill* 0x000000004018203d 0x0 + *fill* 0x000000004018203d 0x0 + *fill* 0x000000004018203d 0x0 + *fill* 0x000000004018203d 0x0 + *fill* 0x000000004018203d 0x0 + *fill* 0x000000004018203d 0x0 + *fill* 0x000000004018203d 0x0 + *fill* 0x000000004018203d 0x0 + *fill* 0x000000004018203d 0x0 + *fill* 0x000000004018203d 0x0 + *fill* 0x000000004018203d 0x0 + *fill* 0x000000004018203d 0x0 + *fill* 0x000000004018203d 0x3 + .text 0x0000000040182040 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(syscntl.o) + 0x0000000040182040 r_syscntl_init + *fill* 0x0000000040182045 0x0 + *fill* 0x0000000040182045 0x0 + *fill* 0x0000000040182045 0x0 + *fill* 0x0000000040182045 0x0 + *fill* 0x0000000040182045 0x3 + .text 0x0000000040182048 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(emi.o) + 0x0000000040182048 r_emi_init + *fill* 0x000000004018204d 0x0 + *fill* 0x000000004018204d 0x3 + .text 0x0000000040182050 0xd /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(led.o) + 0x0000000040182050 r_led_init + 0x0000000040182058 r_led_set_all + *fill* 0x000000004018205d 0x3 + .text 0x0000000040182060 0xb /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ll.o) + 0x0000000040182060 r_wfi + *fill* 0x000000004018206b 0x0 + *fill* 0x000000004018206b 0x0 + *fill* 0x000000004018206b 0x0 + *fill* 0x000000004018206b 0x1 + .text.uint32_pack + 0x000000004018206c 0x71 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x00000000401820dd 0x0 + *fill* 0x00000000401820dd 0x3 + .text.int_range_lookup + 0x00000000401820e0 0x78 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.parse_tag_and_wiretype + 0x0000000040182158 0x68 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.scan_length_prefixed_data + 0x00000000401821c0 0x54 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.max_b128_numbers + 0x0000000040182214 0x23 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x0000000040182237 0x0 + *fill* 0x0000000040182237 0x0 + *fill* 0x0000000040182237 0x0 + *fill* 0x0000000040182237 0x1 + .text.parse_boolean + 0x0000000040182238 0x20 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.scan_varint + 0x0000000040182258 0x2c esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .text.is_packable_type + 0x0000000040182284 0xf esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + *fill* 0x0000000040182293 0x0 + *fill* 0x0000000040182293 0x0 + *fill* 0x0000000040182293 0x0 + *fill* 0x0000000040182293 0x0 + *fill* 0x0000000040182293 0x0 + *fill* 0x0000000040182293 0x0 + *fill* 0x0000000040182293 0x0 + *fill* 0x0000000040182293 0x0 + *fill* 0x0000000040182293 0x0 + *fill* 0x0000000040182293 0x0 + *fill* 0x0000000040182293 0x0 + *fill* 0x0000000040182293 0x0 + *fill* 0x0000000040182293 0x0 + *fill* 0x0000000040182293 0x0 + *fill* 0x0000000040182293 0x0 + *fill* 0x0000000040182293 0x0 + *fill* 0x0000000040182293 0x0 + *fill* 0x0000000040182293 0x0 + *fill* 0x0000000040182293 0x0 + *fill* 0x0000000040182293 0x1 + .text.protobuf_c_message_init + 0x0000000040182294 0xc esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x0000000040182294 protobuf_c_message_init + *fill* 0x00000000401822a0 0x0 + *fill* 0x00000000401822a0 0x0 + *fill* 0x00000000401822a0 0x0 + *fill* 0x00000000401822a0 0x0 + .text.get_decimal_point + 0x00000000401822a0 0x7 esp-idf/json/libjson.a(cJSON.c.obj) + *fill* 0x00000000401822a7 0x0 + *fill* 0x00000000401822a7 0x1 + .text.suffix_object + 0x00000000401822a8 0x9 esp-idf/json/libjson.a(cJSON.c.obj) + *fill* 0x00000000401822b1 0x3 + .text.cast_away_const + 0x00000000401822b4 0x5 esp-idf/json/libjson.a(cJSON.c.obj) + *fill* 0x00000000401822b9 0x0 + *fill* 0x00000000401822b9 0x0 + *fill* 0x00000000401822b9 0x0 + *fill* 0x00000000401822b9 0x0 + *fill* 0x00000000401822b9 0x0 + *fill* 0x00000000401822b9 0x0 + *fill* 0x00000000401822b9 0x0 + *fill* 0x00000000401822b9 0x0 + *fill* 0x00000000401822b9 0x0 + *fill* 0x00000000401822b9 0x0 + *fill* 0x00000000401822b9 0x0 + *fill* 0x00000000401822b9 0x0 + *fill* 0x00000000401822b9 0x0 + *fill* 0x00000000401822b9 0x0 + *fill* 0x00000000401822b9 0x0 + *fill* 0x00000000401822b9 0x3 + .text.reedSolomonMultiply + 0x00000000401822bc 0x39 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x00000000401822f5 0x0 + *fill* 0x00000000401822f5 0x3 + .text.getBit 0x00000000401822f8 0xe esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + *fill* 0x0000000040182306 0x0 + *fill* 0x0000000040182306 0x0 + *fill* 0x0000000040182306 0x0 + *fill* 0x0000000040182306 0x0 + *fill* 0x0000000040182306 0x0 + *fill* 0x0000000040182306 0x0 + *fill* 0x0000000040182306 0x0 + *fill* 0x0000000040182306 0x0 + *fill* 0x0000000040182306 0x0 + *fill* 0x0000000040182306 0x0 + *fill* 0x0000000040182306 0x0 + *fill* 0x0000000040182306 0x0 + *fill* 0x0000000040182306 0x0 + *fill* 0x0000000040182306 0x0 + *fill* 0x0000000040182306 0x0 + *fill* 0x0000000040182306 0x0 + *fill* 0x0000000040182306 0x0 + *fill* 0x0000000040182306 0x0 + *fill* 0x0000000040182306 0x0 + *fill* 0x0000000040182306 0x0 + *fill* 0x0000000040182306 0x0 + *fill* 0x0000000040182306 0x2 + .text.esp_efuse_get_field_size + 0x0000000040182308 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x0000000040182308 esp_efuse_get_field_size + *fill* 0x000000004018232e 0x0 + *fill* 0x000000004018232e 0x2 + .text.get_mask + 0x0000000040182330 0x1e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x000000004018234e 0x2 + .text.get_reg_num + 0x0000000040182350 0x24 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.get_starting_bit_num_in_reg + 0x0000000040182374 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x000000004018238e 0x2 + .text.get_count_bits_in_reg + 0x0000000040182390 0x2e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x00000000401823be 0x0 + *fill* 0x00000000401823be 0x2 + .text.esp_efuse_utility_get_number_of_items + 0x00000000401823c0 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x00000000401823c0 esp_efuse_utility_get_number_of_items + *fill* 0x00000000401823d6 0x0 + *fill* 0x00000000401823d6 0x0 + *fill* 0x00000000401823d6 0x0 + *fill* 0x00000000401823d6 0x0 + *fill* 0x00000000401823d6 0x2 + .text.esp_efuse_utility_check_errors + 0x00000000401823d8 0x7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x00000000401823d8 esp_efuse_utility_check_errors + *fill* 0x00000000401823df 0x0 + *fill* 0x00000000401823df 0x0 + *fill* 0x00000000401823df 0x0 + *fill* 0x00000000401823df 0x0 + *fill* 0x00000000401823df 0x0 + *fill* 0x00000000401823df 0x0 + *fill* 0x00000000401823df 0x0 + *fill* 0x00000000401823df 0x0 + *fill* 0x00000000401823df 0x0 + *fill* 0x00000000401823df 0x0 + *fill* 0x00000000401823df 0x1 + .text.s_mem_caps_check + 0x00000000401823e0 0x1a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x00000000401823fa 0x2 + .text.s_find_available_region + 0x00000000401823fc 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.s_is_enclosed + 0x000000004018242c 0x1d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x0000000040182449 0x3 + .text.s_is_overlapped + 0x000000004018244c 0x35 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x0 + *fill* 0x0000000040182481 0x3 + .text.uart_hal_get_sclk + 0x0000000040182484 0x1a esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x0000000040182484 uart_hal_get_sclk + *fill* 0x000000004018249e 0x0 + *fill* 0x000000004018249e 0x0 + *fill* 0x000000004018249e 0x2 + .text.uart_hal_set_stop_bits + 0x00000000401824a0 0x5d esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x00000000401824a0 uart_hal_set_stop_bits + *fill* 0x00000000401824fd 0x3 + .text.uart_hal_get_stop_bits + 0x0000000040182500 0x2c esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x0000000040182500 uart_hal_get_stop_bits + .text.uart_hal_set_data_bit_num + 0x000000004018252c 0x1f esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x000000004018252c uart_hal_set_data_bit_num + *fill* 0x000000004018254b 0x1 + .text.uart_hal_get_data_bit_num + 0x000000004018254c 0x11 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x000000004018254c uart_hal_get_data_bit_num + *fill* 0x000000004018255d 0x3 + .text.uart_hal_set_parity + 0x0000000040182560 0x35 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x0000000040182560 uart_hal_set_parity + *fill* 0x0000000040182595 0x3 + .text.uart_hal_get_parity + 0x0000000040182598 0x26 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x0000000040182598 uart_hal_get_parity + *fill* 0x00000000401825be 0x0 + *fill* 0x00000000401825be 0x0 + *fill* 0x00000000401825be 0x0 + *fill* 0x00000000401825be 0x0 + *fill* 0x00000000401825be 0x0 + *fill* 0x00000000401825be 0x0 + *fill* 0x00000000401825be 0x0 + *fill* 0x00000000401825be 0x0 + *fill* 0x00000000401825be 0x0 + *fill* 0x00000000401825be 0x0 + *fill* 0x00000000401825be 0x0 + *fill* 0x00000000401825be 0x0 + *fill* 0x00000000401825be 0x0 + *fill* 0x00000000401825be 0x0 + *fill* 0x00000000401825be 0x0 + *fill* 0x00000000401825be 0x0 + *fill* 0x00000000401825be 0x2 + .text._ZSt9__find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleEEUlRS1_E_EEET_SE_SE_T0_ + 0x00000000401825c0 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + *fill* 0x00000000401825d2 0x0 + *fill* 0x00000000401825d2 0x2 + .text._ZSt9__find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZ9nvs_closeEUlRS1_E_EEET_SA_SA_T0_ + 0x00000000401825d4 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + *fill* 0x00000000401825e6 0x0 + *fill* 0x00000000401825e6 0x0 + *fill* 0x00000000401825e6 0x0 + *fill* 0x00000000401825e6 0x0 + *fill* 0x00000000401825e6 0x0 + *fill* 0x00000000401825e6 0x2 + .text._ZN14NVSHandleEntryD2Ev + 0x00000000401825e8 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000401825e8 _ZN14NVSHandleEntryD2Ev + 0x00000000401825e8 _ZN14NVSHandleEntryD1Ev + *fill* 0x00000000401825f8 0x0 + *fill* 0x00000000401825f8 0x0 + *fill* 0x00000000401825f8 0x0 + .text._ZN14intrusive_listI14NVSHandleEntryE5eraseENS1_8iteratorE + 0x00000000401825f8 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000401825f8 _ZN14intrusive_listI14NVSHandleEntryE5eraseENS1_8iteratorE + *fill* 0x000000004018261a 0x0 + *fill* 0x000000004018261a 0x0 + *fill* 0x000000004018261a 0x0 + *fill* 0x000000004018261a 0x2 + .text._ZN14intrusive_listI14NVSHandleEntryE9push_backEPS0_ + 0x000000004018261c 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x000000004018261c _ZN14intrusive_listI14NVSHandleEntryE9push_backEPS0_ + *fill* 0x000000004018263d 0x0 + *fill* 0x000000004018263d 0x0 + *fill* 0x000000004018263d 0x3 + .text._ZN3nvs9NVSHandle8set_itemIaEEiPKcT_ + 0x0000000040182640 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040182640 _ZN3nvs9NVSHandle8set_itemIaEEiPKcT_ + *fill* 0x000000004018265c 0x0 + .text._ZN3nvs9NVSHandle8set_itemIhEEiPKcT_ + 0x000000004018265c 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x000000004018265c _ZN3nvs9NVSHandle8set_itemIhEEiPKcT_ + *fill* 0x0000000040182678 0x0 + .text._ZN3nvs9NVSHandle8set_itemItEEiPKcT_ + 0x0000000040182678 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040182678 _ZN3nvs9NVSHandle8set_itemItEEiPKcT_ + *fill* 0x0000000040182694 0x0 + .text._ZN3nvs9NVSHandle8set_itemImEEiPKcT_ + 0x0000000040182694 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040182694 _ZN3nvs9NVSHandle8set_itemImEEiPKcT_ + *fill* 0x00000000401826ae 0x0 + *fill* 0x00000000401826ae 0x2 + .text._ZN3nvs9NVSHandle8get_itemIaEEiPKcRT_ + 0x00000000401826b0 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000401826b0 _ZN3nvs9NVSHandle8get_itemIaEEiPKcRT_ + *fill* 0x00000000401826c8 0x0 + .text._ZN3nvs9NVSHandle8get_itemIhEEiPKcRT_ + 0x00000000401826c8 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000401826c8 _ZN3nvs9NVSHandle8get_itemIhEEiPKcRT_ + *fill* 0x00000000401826e0 0x0 + .text._ZN3nvs9NVSHandle8get_itemItEEiPKcRT_ + 0x00000000401826e0 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000401826e0 _ZN3nvs9NVSHandle8get_itemItEEiPKcRT_ + *fill* 0x00000000401826f8 0x0 + .text._ZN3nvs9NVSHandle8get_itemImEEiPKcRT_ + 0x00000000401826f8 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000401826f8 _ZN3nvs9NVSHandle8get_itemImEEiPKcRT_ + *fill* 0x0000000040182710 0x0 + *fill* 0x0000000040182710 0x0 + *fill* 0x0000000040182710 0x0 + *fill* 0x0000000040182710 0x0 + *fill* 0x0000000040182710 0x0 + *fill* 0x0000000040182710 0x0 + *fill* 0x0000000040182710 0x0 + *fill* 0x0000000040182710 0x0 + *fill* 0x0000000040182710 0x0 + .text._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE9push_backEPS2_ + 0x0000000040182710 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x0000000040182710 _ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE9push_backEPS2_ + *fill* 0x0000000040182731 0x3 + .text._ZN19CompressedEnumTableIbLj1ELj256EE3setEjb + 0x0000000040182734 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x0000000040182734 _ZN19CompressedEnumTableIbLj1ELj256EE3setEjb + .text._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE9push_backEPS2_ + 0x000000004018276c 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x000000004018276c _ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE9push_backEPS2_ + *fill* 0x000000004018278d 0x3 + .text._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE9push_backEPS2_ + 0x0000000040182790 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x0000000040182790 _ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE9push_backEPS2_ + *fill* 0x00000000401827b1 0x0 + *fill* 0x00000000401827b1 0x0 + *fill* 0x00000000401827b1 0x3 + .text._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE5eraseENS3_8iteratorE + 0x00000000401827b4 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000401827b4 _ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE5eraseENS3_8iteratorE + *fill* 0x00000000401827d6 0x0 + *fill* 0x00000000401827d6 0x0 + *fill* 0x00000000401827d6 0x0 + *fill* 0x00000000401827d6 0x2 + .text._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE5eraseENS3_8iteratorE + 0x00000000401827d8 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000401827d8 _ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE5eraseENS3_8iteratorE + *fill* 0x00000000401827f9 0x0 + *fill* 0x00000000401827f9 0x0 + *fill* 0x00000000401827f9 0x3 + .text._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE5eraseENS3_8iteratorE + 0x00000000401827fc 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000401827fc _ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE5eraseENS3_8iteratorE + *fill* 0x000000004018281e 0x0 + *fill* 0x000000004018281e 0x0 + *fill* 0x000000004018281e 0x0 + *fill* 0x000000004018281e 0x0 + *fill* 0x000000004018281e 0x0 + *fill* 0x000000004018281e 0x0 + *fill* 0x000000004018281e 0x0 + *fill* 0x000000004018281e 0x0 + *fill* 0x000000004018281e 0x0 + *fill* 0x000000004018281e 0x0 + *fill* 0x000000004018281e 0x0 + *fill* 0x000000004018281e 0x0 + *fill* 0x000000004018281e 0x0 + *fill* 0x000000004018281e 0x0 + *fill* 0x000000004018281e 0x0 + *fill* 0x000000004018281e 0x0 + *fill* 0x000000004018281e 0x2 + .text._ZNK3nvs15NVSHandleSimple18get_partition_nameEv + 0x0000000040182820 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x0000000040182820 _ZNK3nvs15NVSHandleSimple18get_partition_nameEv + *fill* 0x0000000040182832 0x0 + *fill* 0x0000000040182832 0x2 + .text._ZN3nvs12NVSPartition18get_partition_nameEv + 0x0000000040182834 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x0000000040182834 _ZN3nvs12NVSPartition18get_partition_nameEv + *fill* 0x000000004018283e 0x2 + .text._ZN3nvs12NVSPartition11get_addressEv + 0x0000000040182840 0x9 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x0000000040182840 _ZN3nvs12NVSPartition11get_addressEv + *fill* 0x0000000040182849 0x3 + .text._ZN3nvs12NVSPartition8get_sizeEv + 0x000000004018284c 0x9 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x000000004018284c _ZN3nvs12NVSPartition8get_sizeEv + *fill* 0x0000000040182855 0x0 + *fill* 0x0000000040182855 0x0 + *fill* 0x0000000040182855 0x0 + *fill* 0x0000000040182855 0x0 + *fill* 0x0000000040182855 0x0 + *fill* 0x0000000040182855 0x0 + *fill* 0x0000000040182855 0x0 + *fill* 0x0000000040182855 0x0 + *fill* 0x0000000040182855 0x0 + *fill* 0x0000000040182855 0x0 + *fill* 0x0000000040182855 0x0 + *fill* 0x0000000040182855 0x0 + *fill* 0x0000000040182855 0x0 + *fill* 0x0000000040182855 0x3 + .text._ZN14intrusive_listIN3nvs12NVSPartitionEE9push_backEPS1_ + 0x0000000040182858 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x0000000040182858 _ZN14intrusive_listIN3nvs12NVSPartitionEE9push_backEPS1_ + *fill* 0x0000000040182879 0x3 + .text._ZN14intrusive_listIN3nvs12NVSPartitionEE5eraseENS2_8iteratorE + 0x000000004018287c 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x000000004018287c _ZN14intrusive_listIN3nvs12NVSPartitionEE5eraseENS2_8iteratorE + *fill* 0x000000004018289e 0x2 + .text._ZN14intrusive_listIN3nvs7StorageEE9push_backEPS1_ + 0x00000000401828a0 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x00000000401828a0 _ZN14intrusive_listIN3nvs7StorageEE9push_backEPS1_ + *fill* 0x00000000401828c1 0x3 + .text._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE5eraseENS2_8iteratorE + 0x00000000401828c4 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x00000000401828c4 _ZN14intrusive_listIN3nvs15NVSHandleSimpleEE5eraseENS2_8iteratorE + *fill* 0x00000000401828e6 0x2 + .text._ZN14intrusive_listIN3nvs7StorageEE5eraseENS2_8iteratorE + 0x00000000401828e8 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x00000000401828e8 _ZN14intrusive_listIN3nvs7StorageEE5eraseENS2_8iteratorE + *fill* 0x000000004018290a 0x0 + *fill* 0x000000004018290a 0x2 + .text._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE9push_backEPS1_ + 0x000000004018290c 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x000000004018290c _ZN14intrusive_listIN3nvs15NVSHandleSimpleEE9push_backEPS1_ + *fill* 0x000000004018292d 0x3 + .text._ZN3nvs8HashListC2Ev + 0x0000000040182930 0xd esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x0000000040182930 _ZN3nvs8HashListC2Ev + 0x0000000040182930 _ZN3nvs8HashListC1Ev + *fill* 0x000000004018293d 0x3 + .text._ZN3nvs8HashList13HashListBlockC2Ev + 0x0000000040182940 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x0000000040182940 _ZN3nvs8HashList13HashListBlockC1Ev + 0x0000000040182940 _ZN3nvs8HashList13HashListBlockC2Ev + *fill* 0x0000000040182965 0x0 + *fill* 0x0000000040182965 0x3 + .text._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE5eraseENS3_8iteratorE + 0x0000000040182968 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x0000000040182968 _ZN14intrusive_listIN3nvs8HashList13HashListBlockEE5eraseENS3_8iteratorE + *fill* 0x000000004018298a 0x0 + *fill* 0x000000004018298a 0x0 + *fill* 0x000000004018298a 0x0 + *fill* 0x000000004018298a 0x2 + .text._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE9push_backEPS2_ + 0x000000004018298c 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x000000004018298c _ZN14intrusive_listIN3nvs8HashList13HashListBlockEE9push_backEPS2_ + *fill* 0x00000000401829ad 0x0 + *fill* 0x00000000401829ad 0x3 + .text._ZSt9__find_ifIPmN9__gnu_cxx5__ops10_Iter_predIZN3nvs4Page4loadEPNS4_9PartitionEmEUlmE_EEET_SA_SA_T0_St26random_access_iterator_tag + 0x00000000401829b0 0x72 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x0000000040182a22 0x0 + *fill* 0x0000000040182a22 0x2 + .text._ZN3nvs4Page20updateFirstUsedEntryEjj + 0x0000000040182a24 0x55 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x0000000040182a24 _ZN3nvs4Page20updateFirstUsedEntryEjj + *fill* 0x0000000040182a79 0x0 + *fill* 0x0000000040182a79 0x3 + .text._ZN3nvs4Page14alterPageStateENS0_9PageStateE + 0x0000000040182a7c 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x0000000040182a7c _ZN3nvs4Page14alterPageStateENS0_9PageStateE + .text._ZNK3nvs4Page9readEntryEjRNS_4ItemE + 0x0000000040182aa0 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x0000000040182aa0 _ZNK3nvs4Page9readEntryEjRNS_4ItemE + *fill* 0x0000000040182aca 0x0 + *fill* 0x0000000040182aca 0x0 + *fill* 0x0000000040182aca 0x0 + *fill* 0x0000000040182aca 0x0 + *fill* 0x0000000040182aca 0x0 + *fill* 0x0000000040182aca 0x0 + *fill* 0x0000000040182aca 0x2 + .text._ZN19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3setEjS2_ + 0x0000000040182acc 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x0000000040182acc _ZN19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3setEjS2_ + *fill* 0x0000000040182b06 0x0 + *fill* 0x0000000040182b06 0x0 + *fill* 0x0000000040182b06 0x0 + *fill* 0x0000000040182b06 0x0 + *fill* 0x0000000040182b06 0x0 + *fill* 0x0000000040182b06 0x2 + .text._ZN14intrusive_listIN3nvs4PageEE9push_backEPS1_ + 0x0000000040182b08 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x0000000040182b08 _ZN14intrusive_listIN3nvs4PageEE9push_backEPS1_ + *fill* 0x0000000040182b29 0x3 + .text._ZN14intrusive_listIN3nvs4PageEE5eraseENS2_8iteratorE + 0x0000000040182b2c 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x0000000040182b2c _ZN14intrusive_listIN3nvs4PageEE5eraseENS2_8iteratorE + *fill* 0x0000000040182b4d 0x0 + *fill* 0x0000000040182b4d 0x3 + .text._ZN14intrusive_listIN3nvs4PageEE10push_frontEPS1_ + 0x0000000040182b50 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x0000000040182b50 _ZN14intrusive_listIN3nvs4PageEE10push_frontEPS1_ + *fill* 0x0000000040182b70 0x0 + *fill* 0x0000000040182b70 0x0 + *fill* 0x0000000040182b70 0x0 + *fill* 0x0000000040182b70 0x0 + *fill* 0x0000000040182b70 0x0 + .text.esp_phy_modem_init + 0x0000000040182b70 0x5 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x0000000040182b70 esp_phy_modem_init + *fill* 0x0000000040182b75 0x3 + .text.esp_phy_modem_deinit + 0x0000000040182b78 0x5 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x0000000040182b78 esp_phy_modem_deinit + *fill* 0x0000000040182b7d 0x0 + *fill* 0x0000000040182b7d 0x0 + *fill* 0x0000000040182b7d 0x3 + .text.esp_phy_update_country_info + 0x0000000040182b80 0x7 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x0000000040182b80 esp_phy_update_country_info + *fill* 0x0000000040182b87 0x0 + *fill* 0x0000000040182b87 0x0 + *fill* 0x0000000040182b87 0x0 + *fill* 0x0000000040182b87 0x0 + *fill* 0x0000000040182b87 0x0 + *fill* 0x0000000040182b87 0x1 + .text.esp_netif_reset_ip_info + 0x0000000040182b88 0x15 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x0 + *fill* 0x0000000040182b9d 0x3 + .text.esp_netif_get_io_driver + 0x0000000040182ba0 0x7 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040182ba0 esp_netif_get_io_driver + *fill* 0x0000000040182ba7 0x0 + *fill* 0x0000000040182ba7 0x0 + *fill* 0x0000000040182ba7 0x0 + *fill* 0x0000000040182ba7 0x0 + *fill* 0x0000000040182ba7 0x0 + *fill* 0x0000000040182ba7 0x0 + *fill* 0x0000000040182ba7 0x0 + *fill* 0x0000000040182ba7 0x1 + .text.esp_netif_free_rx_buffer + 0x0000000040182ba8 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040182ba8 esp_netif_free_rx_buffer + *fill* 0x0000000040182bb6 0x2 + .text.esp_netif_transmit_wrap + 0x0000000040182bb8 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040182bb8 esp_netif_transmit_wrap + .text.esp_netif_receive + 0x0000000040182bcc 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040182bcc esp_netif_receive + .text.esp_netif_dhcpc_get_status + 0x0000000040182be0 0x21 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040182be0 esp_netif_dhcpc_get_status + *fill* 0x0000000040182c01 0x0 + *fill* 0x0000000040182c01 0x3 + .text.esp_netif_is_netif_up + 0x0000000040182c04 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040182c04 esp_netif_is_netif_up + *fill* 0x0000000040182c20 0x0 + *fill* 0x0000000040182c20 0x0 + *fill* 0x0000000040182c20 0x0 + .text.esp_netif_is_valid_static_ip + 0x0000000040182c20 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040182c20 esp_netif_is_valid_static_ip + .text.esp_netif_get_flags + 0x0000000040182c38 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040182c38 esp_netif_get_flags + .text.esp_netif_get_ifkey + 0x0000000040182c40 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040182c40 esp_netif_get_ifkey + .text.esp_netif_get_desc + 0x0000000040182c48 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040182c48 esp_netif_get_desc + .text.esp_netif_get_event_id + 0x0000000040182c50 0x1d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040182c50 esp_netif_get_event_id + *fill* 0x0000000040182c6d 0x0 + *fill* 0x0000000040182c6d 0x0 + *fill* 0x0000000040182c6d 0x3 + .text.esp_aes_gmac + 0x0000000040182c70 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + *fill* 0x0000000040182c77 0x0 + *fill* 0x0000000040182c77 0x0 + *fill* 0x0000000040182c77 0x0 + *fill* 0x0000000040182c77 0x0 + *fill* 0x0000000040182c77 0x0 + *fill* 0x0000000040182c77 0x0 + *fill* 0x0000000040182c77 0x0 + *fill* 0x0000000040182c77 0x0 + *fill* 0x0000000040182c77 0x0 + *fill* 0x0000000040182c77 0x0 + *fill* 0x0000000040182c77 0x0 + *fill* 0x0000000040182c77 0x0 + *fill* 0x0000000040182c77 0x0 + *fill* 0x0000000040182c77 0x0 + *fill* 0x0000000040182c77 0x0 + *fill* 0x0000000040182c77 0x0 + *fill* 0x0000000040182c77 0x0 + *fill* 0x0000000040182c77 0x1 + .text.rc4_skip + 0x0000000040182c78 0xb3 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + 0x0000000040182c78 rc4_skip + *fill* 0x0000000040182d2b 0x0 + *fill* 0x0000000040182d2b 0x0 + *fill* 0x0000000040182d2b 0x0 + *fill* 0x0000000040182d2b 0x0 + *fill* 0x0000000040182d2b 0x0 + *fill* 0x0000000040182d2b 0x0 + *fill* 0x0000000040182d2b 0x0 + *fill* 0x0000000040182d2b 0x1 + .text.hex2num 0x0000000040182d2c 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.inc_byte_array + 0x0000000040182d64 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x0000000040182d64 inc_byte_array + *fill* 0x0000000040182d82 0x2 + .text.buf_shift_right + 0x0000000040182d84 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x0000000040182d84 buf_shift_right + *fill* 0x0000000040182dc2 0x0 + *fill* 0x0000000040182dc2 0x0 + *fill* 0x0000000040182dc2 0x2 + .text.int_array_len + 0x0000000040182dc4 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x0000000040182dc4 int_array_len + *fill* 0x0000000040182ddc 0x0 + .text.os_reltime_initialized + 0x0000000040182ddc 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x0000000040182ddc os_reltime_initialized + *fill* 0x0000000040182df6 0x2 + .text.xor_aes_block + 0x0000000040182df8 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + *fill* 0x0000000040182e21 0x0 + *fill* 0x0000000040182e21 0x0 + *fill* 0x0000000040182e21 0x0 + *fill* 0x0000000040182e21 0x0 + *fill* 0x0000000040182e21 0x0 + *fill* 0x0000000040182e21 0x0 + *fill* 0x0000000040182e21 0x0 + *fill* 0x0000000040182e21 0x0 + *fill* 0x0000000040182e21 0x0 + *fill* 0x0000000040182e21 0x0 + *fill* 0x0000000040182e21 0x0 + *fill* 0x0000000040182e21 0x0 + *fill* 0x0000000040182e21 0x0 + *fill* 0x0000000040182e21 0x3 + .text.nan_start + 0x0000000040182e24 0x7 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x0000000040182e24 nan_start + *fill* 0x0000000040182e2b 0x1 + .text.nan_stop + 0x0000000040182e2c 0x7 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x0000000040182e2c nan_stop + *fill* 0x0000000040182e33 0x1 + .text.nan_input + 0x0000000040182e34 0x7 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x0000000040182e34 nan_input + *fill* 0x0000000040182e3b 0x1 + .text.nan_sm_handle_event + 0x0000000040182e3c 0x5 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x0000000040182e3c nan_sm_handle_event + *fill* 0x0000000040182e41 0x0 + *fill* 0x0000000040182e41 0x0 + *fill* 0x0000000040182e41 0x0 + *fill* 0x0000000040182e41 0x0 + *fill* 0x0000000040182e41 0x0 + *fill* 0x0000000040182e41 0x0 + *fill* 0x0000000040182e41 0x0 + *fill* 0x0000000040182e41 0x0 + *fill* 0x0000000040182e41 0x0 + *fill* 0x0000000040182e41 0x0 + *fill* 0x0000000040182e41 0x0 + *fill* 0x0000000040182e41 0x0 + *fill* 0x0000000040182e41 0x3 + .text.esp_wifi_is_if_ready_when_started + 0x0000000040182e44 0x10 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x0000000040182e44 esp_wifi_is_if_ready_when_started + *fill* 0x0000000040182e54 0x0 + *fill* 0x0000000040182e54 0x0 + *fill* 0x0000000040182e54 0x0 + .text.clear_intr_wrapper + 0x0000000040182e54 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000040182e59 0x3 + .text.task_get_max_priority_wrapper + 0x0000000040182e5c 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000040182e63 0x1 + .text.coex_pti_get_wrapper + 0x0000000040182e64 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x0 + *fill* 0x0000000040182e6b 0x1 + .text.mbedtls_mpi_init + 0x0000000040182e6c 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000040182e6c mbedtls_mpi_init + *fill* 0x0000000040182e7b 0x0 + *fill* 0x0000000040182e7b 0x0 + *fill* 0x0000000040182e7b 0x0 + *fill* 0x0000000040182e7b 0x0 + *fill* 0x0000000040182e7b 0x1 + .text.mbedtls_mpi_get_bit + 0x0000000040182e7c 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000040182e7c mbedtls_mpi_get_bit + *fill* 0x0000000040182ea1 0x0 + *fill* 0x0000000040182ea1 0x3 + .text.mbedtls_mpi_lsb + 0x0000000040182ea4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000040182ea4 mbedtls_mpi_lsb + *fill* 0x0000000040182ed4 0x0 + *fill* 0x0000000040182ed4 0x0 + *fill* 0x0000000040182ed4 0x0 + *fill* 0x0000000040182ed4 0x0 + *fill* 0x0000000040182ed4 0x0 + *fill* 0x0000000040182ed4 0x0 + *fill* 0x0000000040182ed4 0x0 + *fill* 0x0000000040182ed4 0x0 + *fill* 0x0000000040182ed4 0x0 + *fill* 0x0000000040182ed4 0x0 + *fill* 0x0000000040182ed4 0x0 + *fill* 0x0000000040182ed4 0x0 + *fill* 0x0000000040182ed4 0x0 + *fill* 0x0000000040182ed4 0x0 + *fill* 0x0000000040182ed4 0x0 + *fill* 0x0000000040182ed4 0x0 + *fill* 0x0000000040182ed4 0x0 + *fill* 0x0000000040182ed4 0x0 + *fill* 0x0000000040182ed4 0x0 + *fill* 0x0000000040182ed4 0x0 + .text.mpi_bigendian_to_host + 0x0000000040182ed4 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + *fill* 0x0000000040182eea 0x0 + *fill* 0x0000000040182eea 0x0 + *fill* 0x0000000040182eea 0x0 + *fill* 0x0000000040182eea 0x0 + *fill* 0x0000000040182eea 0x0 + *fill* 0x0000000040182eea 0x0 + *fill* 0x0000000040182eea 0x0 + *fill* 0x0000000040182eea 0x0 + *fill* 0x0000000040182eea 0x2 + .text.mbedtls_mpi_core_add + 0x0000000040182eec 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x0000000040182eec mbedtls_mpi_core_add + .text.mbedtls_mpi_core_sub + 0x0000000040182f28 0x3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x0000000040182f28 mbedtls_mpi_core_sub + *fill* 0x0000000040182f67 0x1 + .text.mbedtls_mpi_core_mla + 0x0000000040182f68 0x18f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x0000000040182f68 mbedtls_mpi_core_mla + *fill* 0x00000000401830f7 0x0 + *fill* 0x00000000401830f7 0x0 + *fill* 0x00000000401830f7 0x1 + .text.mbedtls_mpi_core_sub_int + 0x00000000401830f8 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x00000000401830f8 mbedtls_mpi_core_sub_int + .text.add_pkcs_padding + 0x0000000040183124 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x0000000040183141 0x0 + *fill* 0x0000000040183141 0x3 + .text.add_one_and_zeros_padding + 0x0000000040183144 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x000000004018316b 0x0 + *fill* 0x000000004018316b 0x1 + .text.add_zeros_and_len_padding + 0x000000004018316c 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.add_zeros_padding + 0x0000000040183194 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + *fill* 0x00000000401831a8 0x0 + .text.mbedtls_ct_uchar_mask_of_range + 0x00000000401831a8 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + *fill* 0x00000000401831c7 0x1 + .text.mbedtls_ct_size_gt + 0x00000000401831c8 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + *fill* 0x00000000401831d3 0x1 + .text.mbedtls_ct_cond_select_sign + 0x00000000401831d4 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + *fill* 0x00000000401831ea 0x2 + .text.mbedtls_ct_memcmp + 0x00000000401831ec 0x2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x00000000401831ec mbedtls_ct_memcmp + *fill* 0x000000004018321b 0x1 + .text.mbedtls_ct_uint_mask + 0x000000004018321c 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x000000004018321c mbedtls_ct_uint_mask + *fill* 0x000000004018322a 0x2 + .text.mbedtls_ct_mpi_uint_mask + 0x000000004018322c 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x000000004018322c mbedtls_ct_mpi_uint_mask + *fill* 0x000000004018323a 0x2 + .text.mbedtls_ct_mpi_uint_lt + 0x000000004018323c 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x000000004018323c mbedtls_ct_mpi_uint_lt + *fill* 0x0000000040183253 0x0 + *fill* 0x0000000040183253 0x1 + .text.mbedtls_ct_mpi_uint_cond_assign + 0x0000000040183254 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x0000000040183254 mbedtls_ct_mpi_uint_cond_assign + *fill* 0x0000000040183282 0x0 + *fill* 0x0000000040183282 0x0 + *fill* 0x0000000040183282 0x0 + *fill* 0x0000000040183282 0x2 + .text.cmac_pad + 0x0000000040183284 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + *fill* 0x00000000401832b8 0x0 + *fill* 0x00000000401832b8 0x0 + .text.good_nonce_len + 0x00000000401832b8 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + *fill* 0x00000000401832cc 0x0 + *fill* 0x00000000401832cc 0x0 + *fill* 0x00000000401832cc 0x0 + *fill* 0x00000000401832cc 0x0 + *fill* 0x00000000401832cc 0x0 + *fill* 0x00000000401832cc 0x0 + *fill* 0x00000000401832cc 0x0 + *fill* 0x00000000401832cc 0x0 + *fill* 0x00000000401832cc 0x0 + *fill* 0x00000000401832cc 0x0 + *fill* 0x00000000401832cc 0x0 + *fill* 0x00000000401832cc 0x0 + *fill* 0x00000000401832cc 0x0 + *fill* 0x00000000401832cc 0x0 + *fill* 0x00000000401832cc 0x0 + .text.ecp_group_is_static_comb_table + 0x00000000401832cc 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x00000000401832e8 0x0 + *fill* 0x00000000401832e8 0x0 + *fill* 0x00000000401832e8 0x0 + *fill* 0x00000000401832e8 0x0 + *fill* 0x00000000401832e8 0x0 + *fill* 0x00000000401832e8 0x0 + *fill* 0x00000000401832e8 0x0 + *fill* 0x00000000401832e8 0x0 + *fill* 0x00000000401832e8 0x0 + *fill* 0x00000000401832e8 0x0 + *fill* 0x00000000401832e8 0x0 + *fill* 0x00000000401832e8 0x0 + *fill* 0x00000000401832e8 0x0 + *fill* 0x00000000401832e8 0x0 + *fill* 0x00000000401832e8 0x0 + *fill* 0x00000000401832e8 0x0 + *fill* 0x00000000401832e8 0x0 + *fill* 0x00000000401832e8 0x0 + *fill* 0x00000000401832e8 0x0 + .text.mbedtls_ecp_restart_init + 0x00000000401832e8 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x00000000401832e8 mbedtls_ecp_restart_init + *fill* 0x00000000401832f7 0x0 + *fill* 0x00000000401832f7 0x0 + *fill* 0x00000000401832f7 0x1 + .text.mbedtls_ecp_get_type + 0x00000000401832f8 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x00000000401832f8 mbedtls_ecp_get_type + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x0 + *fill* 0x0000000040183311 0x3 + .text.add64 0x0000000040183314 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .text.carry64 0x0000000040183354 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x000000004018337b 0x0 + *fill* 0x000000004018337b 0x0 + *fill* 0x000000004018337b 0x0 + *fill* 0x000000004018337b 0x1 + .text.mbedtls_ecp_fix_negative + 0x000000004018337c 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x00000000401833d6 0x0 + *fill* 0x00000000401833d6 0x0 + *fill* 0x00000000401833d6 0x0 + *fill* 0x00000000401833d6 0x0 + *fill* 0x00000000401833d6 0x0 + *fill* 0x00000000401833d6 0x0 + *fill* 0x00000000401833d6 0x0 + *fill* 0x00000000401833d6 0x0 + *fill* 0x00000000401833d6 0x0 + *fill* 0x00000000401833d6 0x0 + *fill* 0x00000000401833d6 0x0 + *fill* 0x00000000401833d6 0x0 + *fill* 0x00000000401833d6 0x0 + *fill* 0x00000000401833d6 0x2 + .text.mbedtls_entropy_add_source + 0x00000000401833d8 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x00000000401833d8 mbedtls_entropy_add_source + *fill* 0x0000000040183404 0x0 + *fill* 0x0000000040183404 0x0 + .text.mbedtls_md_init + 0x0000000040183404 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x0000000040183404 mbedtls_md_init + *fill* 0x000000004018342f 0x0 + *fill* 0x000000004018342f 0x0 + *fill* 0x000000004018342f 0x0 + *fill* 0x000000004018342f 0x0 + *fill* 0x000000004018342f 0x1 + .text.mbedtls_md_get_size + 0x0000000040183430 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x0000000040183430 mbedtls_md_get_size + *fill* 0x0000000040183440 0x0 + *fill* 0x0000000040183440 0x0 + *fill* 0x0000000040183440 0x0 + *fill* 0x0000000040183440 0x0 + *fill* 0x0000000040183440 0x0 + *fill* 0x0000000040183440 0x0 + *fill* 0x0000000040183440 0x0 + .text.esp_aes_xts_decode_keys + 0x0000000040183440 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + *fill* 0x0000000040183465 0x3 + .text.esp_gf128mul_x_ble + 0x0000000040183468 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + *fill* 0x0000000040183570 0x0 + *fill* 0x0000000040183570 0x0 + *fill* 0x0000000040183570 0x0 + *fill* 0x0000000040183570 0x0 + *fill* 0x0000000040183570 0x0 + .text.valid_key_length + 0x0000000040183570 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x0000000040183570 valid_key_length + *fill* 0x0000000040183598 0x0 + *fill* 0x0000000040183598 0x0 + *fill* 0x0000000040183598 0x0 + .text.esp_aes_validate_input + 0x0000000040183598 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + *fill* 0x00000000401835b5 0x0 + *fill* 0x00000000401835b5 0x0 + *fill* 0x00000000401835b5 0x0 + *fill* 0x00000000401835b5 0x3 + .text.mbedtls_mpi_msb + 0x00000000401835b8 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + *fill* 0x00000000401835fa 0x0 + *fill* 0x00000000401835fa 0x0 + *fill* 0x00000000401835fa 0x0 + *fill* 0x00000000401835fa 0x0 + *fill* 0x00000000401835fa 0x0 + *fill* 0x00000000401835fa 0x0 + *fill* 0x00000000401835fa 0x0 + *fill* 0x00000000401835fa 0x0 + *fill* 0x00000000401835fa 0x2 + .text.mbedtls_zeroize + 0x00000000401835fc 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + *fill* 0x0000000040183615 0x0 + *fill* 0x0000000040183615 0x0 + *fill* 0x0000000040183615 0x0 + *fill* 0x0000000040183615 0x0 + *fill* 0x0000000040183615 0x3 + .text.mbedtls_zeroize + 0x0000000040183618 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + *fill* 0x0000000040183631 0x0 + *fill* 0x0000000040183631 0x0 + *fill* 0x0000000040183631 0x0 + *fill* 0x0000000040183631 0x0 + *fill* 0x0000000040183631 0x0 + *fill* 0x0000000040183631 0x3 + .text.mbedtls_zeroize + 0x0000000040183634 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + *fill* 0x000000004018364d 0x0 + *fill* 0x000000004018364d 0x0 + *fill* 0x000000004018364d 0x0 + *fill* 0x000000004018364d 0x0 + *fill* 0x000000004018364d 0x0 + *fill* 0x000000004018364d 0x3 + .text.xor_data + 0x0000000040183650 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + *fill* 0x0000000040183671 0x3 + .text.gcm_gen_table + 0x0000000040183674 0x149 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + *fill* 0x00000000401837bd 0x0 + *fill* 0x00000000401837bd 0x0 + *fill* 0x00000000401837bd 0x0 + *fill* 0x00000000401837bd 0x0 + *fill* 0x00000000401837bd 0x0 + *fill* 0x00000000401837bd 0x0 + *fill* 0x00000000401837bd 0x0 + *fill* 0x00000000401837bd 0x0 + *fill* 0x00000000401837bd 0x0 + *fill* 0x00000000401837bd 0x0 + *fill* 0x00000000401837bd 0x0 + *fill* 0x00000000401837bd 0x0 + *fill* 0x00000000401837bd 0x0 + *fill* 0x00000000401837bd 0x3 + .text.aria_sl 0x00000000401837c0 0xe1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + *fill* 0x00000000401838a1 0x0 + *fill* 0x00000000401838a1 0x0 + *fill* 0x00000000401838a1 0x3 + .text.aria_rot128 + 0x00000000401838a4 0x82 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + *fill* 0x0000000040183926 0x0 + *fill* 0x0000000040183926 0x0 + *fill* 0x0000000040183926 0x0 + *fill* 0x0000000040183926 0x0 + *fill* 0x0000000040183926 0x0 + *fill* 0x0000000040183926 0x0 + *fill* 0x0000000040183926 0x2 + .text.mbedtls_asn1_get_len + 0x0000000040183928 0xf9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x0000000040183928 mbedtls_asn1_get_len + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x0 + *fill* 0x0000000040183a21 0x3 + .text.coex_core_init + 0x0000000040183a24 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0x0000000040183a24 coex_core_init + *fill* 0x0000000040183a2b 0x1 + .text.coex_core_deinit + 0x0000000040183a2c 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0x0000000040183a2c coex_core_deinit + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x0 + *fill* 0x0000000040183a33 0x1 + .text.ieee80211_crypto_attach + 0x0000000040183a34 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x0000000040183a34 ieee80211_crypto_attach + *fill* 0x0000000040183a39 0x0 + *fill* 0x0000000040183a39 0x0 + *fill* 0x0000000040183a39 0x0 + *fill* 0x0000000040183a39 0x0 + *fill* 0x0000000040183a39 0x0 + *fill* 0x0000000040183a39 0x0 + *fill* 0x0000000040183a39 0x0 + *fill* 0x0000000040183a39 0x3 + .text.ieee80211_hdrsize + 0x0000000040183a3c 0x31 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + *fill* 0x0000000040183a6d 0x0 + *fill* 0x0000000040183a6d 0x0 + *fill* 0x0000000040183a6d 0x0 + *fill* 0x0000000040183a6d 0x0 + *fill* 0x0000000040183a6d 0x0 + *fill* 0x0000000040183a6d 0x0 + *fill* 0x0000000040183a6d 0x0 + *fill* 0x0000000040183a6d 0x0 + *fill* 0x0000000040183a6d 0x0 + *fill* 0x0000000040183a6d 0x0 + *fill* 0x0000000040183a6d 0x0 + *fill* 0x0000000040183a6d 0x0 + *fill* 0x0000000040183a6d 0x0 + *fill* 0x0000000040183a6d 0x0 + *fill* 0x0000000040183a6d 0x0 + *fill* 0x0000000040183a6d 0x0 + *fill* 0x0000000040183a6d 0x0 + *fill* 0x0000000040183a6d 0x0 + *fill* 0x0000000040183a6d 0x0 + *fill* 0x0000000040183a6d 0x0 + *fill* 0x0000000040183a6d 0x3 + .text.addba_get_rap_from_private + 0x0000000040183a70 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + *fill* 0x0000000040183aa8 0x0 + *fill* 0x0000000040183aa8 0x0 + *fill* 0x0000000040183aa8 0x0 + *fill* 0x0000000040183aa8 0x0 + *fill* 0x0000000040183aa8 0x0 + *fill* 0x0000000040183aa8 0x0 + *fill* 0x0000000040183aa8 0x0 + *fill* 0x0000000040183aa8 0x0 + *fill* 0x0000000040183aa8 0x0 + *fill* 0x0000000040183aa8 0x0 + *fill* 0x0000000040183aa8 0x0 + *fill* 0x0000000040183aa8 0x0 + .text.addba_timeout_process + 0x0000000040183aa8 0x21 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x0000000040183aa8 addba_timeout_process + *fill* 0x0000000040183ac9 0x3 + .text.ampdu_dispatch_movement + 0x0000000040183acc 0x3e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x0000000040183acc ampdu_dispatch_movement + *fill* 0x0000000040183b0a 0x0 + *fill* 0x0000000040183b0a 0x0 + *fill* 0x0000000040183b0a 0x0 + *fill* 0x0000000040183b0a 0x0 + *fill* 0x0000000040183b0a 0x0 + *fill* 0x0000000040183b0a 0x0 + *fill* 0x0000000040183b0a 0x0 + *fill* 0x0000000040183b0a 0x0 + *fill* 0x0000000040183b0a 0x0 + *fill* 0x0000000040183b0a 0x0 + *fill* 0x0000000040183b0a 0x0 + *fill* 0x0000000040183b0a 0x0 + *fill* 0x0000000040183b0a 0x0 + *fill* 0x0000000040183b0a 0x0 + *fill* 0x0000000040183b0a 0x0 + *fill* 0x0000000040183b0a 0x2 + .text.ieee80211_is_support_rate + 0x0000000040183b0c 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x0000000040183b0c ieee80211_is_support_rate + .text.ieee80211_is_lr_only + 0x0000000040183b54 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x0000000040183b54 ieee80211_is_lr_only + *fill* 0x0000000040183b6c 0x0 + *fill* 0x0000000040183b6c 0x0 + *fill* 0x0000000040183b6c 0x0 + *fill* 0x0000000040183b6c 0x0 + *fill* 0x0000000040183b6c 0x0 + *fill* 0x0000000040183b6c 0x0 + *fill* 0x0000000040183b6c 0x0 + *fill* 0x0000000040183b6c 0x0 + *fill* 0x0000000040183b6c 0x0 + *fill* 0x0000000040183b6c 0x0 + .text.ieee80211_setup_rateset + 0x0000000040183b6c 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x0000000040183b6c ieee80211_setup_rateset + *fill* 0x0000000040183b73 0x0 + *fill* 0x0000000040183b73 0x0 + *fill* 0x0000000040183b73 0x0 + *fill* 0x0000000040183b73 0x0 + *fill* 0x0000000040183b73 0x1 + .text.adc2_wifi_acquire + 0x0000000040183b74 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040183b74 adc2_wifi_acquire + *fill* 0x0000000040183b7b 0x1 + .text.adc2_wifi_release + 0x0000000040183b7c 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040183b7c adc2_wifi_release + *fill* 0x0000000040183b83 0x1 + .text.wifi_station_get_reconnect_policy + 0x0000000040183b84 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040183b84 wifi_station_get_reconnect_policy + *fill* 0x0000000040183b8b 0x0 + *fill* 0x0000000040183b8b 0x0 + *fill* 0x0000000040183b8b 0x0 + *fill* 0x0000000040183b8b 0x0 + *fill* 0x0000000040183b8b 0x0 + *fill* 0x0000000040183b8b 0x0 + *fill* 0x0000000040183b8b 0x0 + *fill* 0x0000000040183b8b 0x0 + *fill* 0x0000000040183b8b 0x0 + *fill* 0x0000000040183b8b 0x0 + *fill* 0x0000000040183b8b 0x0 + *fill* 0x0000000040183b8b 0x0 + *fill* 0x0000000040183b8b 0x0 + *fill* 0x0000000040183b8b 0x0 + *fill* 0x0000000040183b8b 0x0 + *fill* 0x0000000040183b8b 0x0 + *fill* 0x0000000040183b8b 0x0 + *fill* 0x0000000040183b8b 0x0 + *fill* 0x0000000040183b8b 0x1 + .text.wifi_ant_to_ant_type + 0x0000000040183b8c 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040183b8c wifi_ant_to_ant_type + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + *fill* 0x0000000040183ba4 0x0 + .text.ieee80211_is_bufferable_mmpdu + 0x0000000040183ba4 0x58 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x0000000040183ba4 ieee80211_is_bufferable_mmpdu + *fill* 0x0000000040183bfc 0x0 + .text.ieee80211_gettid + 0x0000000040183bfc 0x36 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x0000000040183bfc ieee80211_gettid + *fill* 0x0000000040183c32 0x2 + .text.ieee80211_set_shortslottime + 0x0000000040183c34 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x0000000040183c34 ieee80211_set_shortslottime + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x0 + *fill* 0x0000000040183c4f 0x1 + .text.scan_check_hidden + 0x0000000040183c50 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x0000000040183c50 scan_check_hidden + *fill* 0x0000000040183c76 0x0 + *fill* 0x0000000040183c76 0x0 + *fill* 0x0000000040183c76 0x0 + *fill* 0x0000000040183c76 0x0 + *fill* 0x0000000040183c76 0x0 + *fill* 0x0000000040183c76 0x0 + *fill* 0x0000000040183c76 0x0 + *fill* 0x0000000040183c76 0x0 + *fill* 0x0000000040183c76 0x0 + *fill* 0x0000000040183c76 0x0 + *fill* 0x0000000040183c76 0x2 + .text.scan_fill_wps_scan_ie + 0x0000000040183c78 0x31 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x0000000040183c78 scan_fill_wps_scan_ie + *fill* 0x0000000040183ca9 0x0 + *fill* 0x0000000040183ca9 0x0 + *fill* 0x0000000040183ca9 0x3 + .text.ieee80211_hdrsize + 0x0000000040183cac 0x31 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x0 + *fill* 0x0000000040183cdd 0x3 + .text.cnx_rc_update_age + 0x0000000040183ce0 0x1b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040183ce0 cnx_rc_update_age + *fill* 0x0000000040183cfb 0x0 + *fill* 0x0000000040183cfb 0x0 + *fill* 0x0000000040183cfb 0x0 + *fill* 0x0000000040183cfb 0x0 + *fill* 0x0000000040183cfb 0x0 + *fill* 0x0000000040183cfb 0x0 + *fill* 0x0000000040183cfb 0x0 + *fill* 0x0000000040183cfb 0x0 + *fill* 0x0000000040183cfb 0x0 + *fill* 0x0000000040183cfb 0x0 + *fill* 0x0000000040183cfb 0x0 + *fill* 0x0000000040183cfb 0x0 + *fill* 0x0000000040183cfb 0x0 + *fill* 0x0000000040183cfb 0x0 + *fill* 0x0000000040183cfb 0x1 + .text.send_inval + 0x0000000040183cfc 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + *fill* 0x0000000040183d03 0x1 + .text.recv_inval + 0x0000000040183d04 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + *fill* 0x0000000040183d0b 0x0 + *fill* 0x0000000040183d0b 0x0 + *fill* 0x0000000040183d0b 0x0 + *fill* 0x0000000040183d0b 0x0 + *fill* 0x0000000040183d0b 0x0 + *fill* 0x0000000040183d0b 0x0 + *fill* 0x0000000040183d0b 0x0 + *fill* 0x0000000040183d0b 0x0 + *fill* 0x0000000040183d0b 0x0 + *fill* 0x0000000040183d0b 0x0 + *fill* 0x0000000040183d0b 0x0 + *fill* 0x0000000040183d0b 0x0 + *fill* 0x0000000040183d0b 0x0 + *fill* 0x0000000040183d0b 0x0 + *fill* 0x0000000040183d0b 0x0 + *fill* 0x0000000040183d0b 0x1 + .text.wep_decap + 0x0000000040183d0c 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + 0x0000000040183d0c wep_decap + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x0 + *fill* 0x0000000040183d35 0x3 + .text.pm_noise_check_process + 0x0000000040183d38 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040183d38 pm_noise_check_process + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x0 + *fill* 0x0000000040183d3d 0x3 + .text.pm_force_scan_unlock + 0x0000000040183d40 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040183d40 pm_force_scan_unlock + *fill* 0x0000000040183d45 0x0 + *fill* 0x0000000040183d45 0x0 + *fill* 0x0000000040183d45 0x3 + .text.getle32 0x0000000040183d48 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040183d48 getle32 + *fill* 0x0000000040183d6b 0x1 + .text.putle32 0x0000000040183d6c 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040183d6c putle32 + *fill* 0x0000000040183d8c 0x0 + *fill* 0x0000000040183d8c 0x0 + *fill* 0x0000000040183d8c 0x0 + *fill* 0x0000000040183d8c 0x0 + *fill* 0x0000000040183d8c 0x0 + *fill* 0x0000000040183d8c 0x0 + *fill* 0x0000000040183d8c 0x0 + *fill* 0x0000000040183d8c 0x0 + *fill* 0x0000000040183d8c 0x0 + .text.ppCheckIsConnTraffic + 0x0000000040183d8c 0x50 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040183d8c ppCheckIsConnTraffic + *fill* 0x0000000040183ddc 0x0 + .text.ppSetInterface + 0x0000000040183ddc 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040183ddc ppSetInterface + *fill* 0x0000000040183de1 0x3 + .text.pp_gettid + 0x0000000040183de4 0x2e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040183de4 pp_gettid + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x0 + *fill* 0x0000000040183e12 0x2 + .text.dbg_lmac_init + 0x0000000040183e14 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x0000000040183e14 dbg_lmac_init + *fill* 0x0000000040183e19 0x0 + *fill* 0x0000000040183e19 0x0 + *fill* 0x0000000040183e19 0x0 + *fill* 0x0000000040183e19 0x0 + *fill* 0x0000000040183e19 0x0 + *fill* 0x0000000040183e19 0x0 + *fill* 0x0000000040183e19 0x0 + *fill* 0x0000000040183e19 0x0 + *fill* 0x0000000040183e19 0x0 + *fill* 0x0000000040183e19 0x0 + *fill* 0x0000000040183e19 0x0 + *fill* 0x0000000040183e19 0x0 + *fill* 0x0000000040183e19 0x0 + *fill* 0x0000000040183e19 0x3 + .text.RC_SetBasicRate + 0x0000000040183e1c 0x7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x0000000040183e1c RC_SetBasicRate + *fill* 0x0000000040183e23 0x0 + *fill* 0x0000000040183e23 0x0 + *fill* 0x0000000040183e23 0x0 + *fill* 0x0000000040183e23 0x1 + .text.rc11NRate2SchedIdx + 0x0000000040183e24 0x4c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rcLoRaRate2SchedIdx + 0x0000000040183e70 0x1c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x0000000040183e70 rcLoRaRate2SchedIdx + .text.rcBuildIndex + 0x0000000040183e8c 0x1d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + *fill* 0x0000000040183ea9 0x3 + .text.trc_calc_duration + 0x0000000040183eac 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x0000000040183eac trc_calc_duration + *fill* 0x0000000040183ebd 0x0 + *fill* 0x0000000040183ebd 0x3 + .text.trcAmpduSetState + 0x0000000040183ec0 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x0000000040183ec0 trcAmpduSetState + *fill* 0x0000000040183ee6 0x2 + .text.rcSetTxAmpduLimit + 0x0000000040183ee8 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x0000000040183ee8 rcSetTxAmpduLimit + *fill* 0x0000000040183f23 0x0 + *fill* 0x0000000040183f23 0x1 + .text.rcGetDefaultHigestRateIdx + 0x0000000040183f24 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x0000000040183f24 rcGetDefaultHigestRateIdx + *fill* 0x0000000040183f3c 0x0 + *fill* 0x0000000040183f3c 0x0 + *fill* 0x0000000040183f3c 0x0 + *fill* 0x0000000040183f3c 0x0 + *fill* 0x0000000040183f3c 0x0 + .text.rcUpdateAckSnr + 0x0000000040183f3c 0x4f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x0000000040183f3c rcUpdateAckSnr + *fill* 0x0000000040183f8b 0x0 + *fill* 0x0000000040183f8b 0x0 + *fill* 0x0000000040183f8b 0x0 + *fill* 0x0000000040183f8b 0x0 + *fill* 0x0000000040183f8b 0x0 + *fill* 0x0000000040183f8b 0x0 + *fill* 0x0000000040183f8b 0x0 + *fill* 0x0000000040183f8b 0x0 + *fill* 0x0000000040183f8b 0x0 + *fill* 0x0000000040183f8b 0x0 + *fill* 0x0000000040183f8b 0x0 + *fill* 0x0000000040183f8b 0x0 + *fill* 0x0000000040183f8b 0x0 + *fill* 0x0000000040183f8b 0x0 + *fill* 0x0000000040183f8b 0x0 + *fill* 0x0000000040183f8b 0x0 + *fill* 0x0000000040183f8b 0x1 + .text.wDev_SetAuthed + 0x0000000040183f8c 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x0000000040183f8c wDev_SetAuthed + *fill* 0x0000000040183f91 0x0 + *fill* 0x0000000040183f91 0x0 + *fill* 0x0000000040183f91 0x0 + *fill* 0x0000000040183f91 0x0 + *fill* 0x0000000040183f91 0x0 + *fill* 0x0000000040183f91 0x0 + *fill* 0x0000000040183f91 0x0 + *fill* 0x0000000040183f91 0x0 + *fill* 0x0000000040183f91 0x0 + *fill* 0x0000000040183f91 0x0 + *fill* 0x0000000040183f91 0x0 + *fill* 0x0000000040183f91 0x0 + *fill* 0x0000000040183f91 0x0 + *fill* 0x0000000040183f91 0x3 + .text.wDev_RxSecError + 0x0000000040183f94 0x2c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x0000000040183f94 wDev_RxSecError + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + *fill* 0x0000000040183fc0 0x0 + .text.mpu_hal_set_region_access + 0x0000000040183fc0 0x4c esp-idf/hal/libhal.a(mpu_hal.c.obj) + 0x0000000040183fc0 mpu_hal_set_region_access + *fill* 0x000000004018400c 0x0 + *fill* 0x000000004018400c 0x0 + *fill* 0x000000004018400c 0x0 + *fill* 0x000000004018400c 0x0 + *fill* 0x000000004018400c 0x0 + *fill* 0x000000004018400c 0x0 + *fill* 0x000000004018400c 0x0 + *fill* 0x000000004018400c 0x0 + *fill* 0x000000004018400c 0x0 + *fill* 0x000000004018400c 0x0 + .text.mpi_hal_calc_hardware_words + 0x000000004018400c 0xc esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x000000004018400c mpi_hal_calc_hardware_words + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + *fill* 0x0000000040184018 0x0 + .text.lwip_htons + 0x0000000040184018 0x14 esp-idf/lwip/liblwip.a(def.c.obj) + 0x0000000040184018 lwip_htons + *fill* 0x000000004018402c 0x0 + .text.dns_init + 0x000000004018402c 0x5 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x000000004018402c dns_init + *fill* 0x0000000040184031 0x0 + *fill* 0x0000000040184031 0x0 + *fill* 0x0000000040184031 0x0 + *fill* 0x0000000040184031 0x3 + .text.mem_init + 0x0000000040184034 0x5 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x0000000040184034 mem_init + *fill* 0x0000000040184039 0x3 + .text.mem_trim + 0x000000004018403c 0x5 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x000000004018403c mem_trim + *fill* 0x0000000040184041 0x0 + *fill* 0x0000000040184041 0x0 + *fill* 0x0000000040184041 0x0 + *fill* 0x0000000040184041 0x3 + .text.memp_init + 0x0000000040184044 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x0000000040184044 memp_init + .text.netif_null_output_ip6 + 0x0000000040184058 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_null_output_ip4 + 0x0000000040184060 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x0000000040184068 0x0 + *fill* 0x0000000040184068 0x0 + *fill* 0x0000000040184068 0x0 + *fill* 0x0000000040184068 0x0 + *fill* 0x0000000040184068 0x0 + *fill* 0x0000000040184068 0x0 + *fill* 0x0000000040184068 0x0 + *fill* 0x0000000040184068 0x0 + *fill* 0x0000000040184068 0x0 + *fill* 0x0000000040184068 0x0 + *fill* 0x0000000040184068 0x0 + *fill* 0x0000000040184068 0x0 + *fill* 0x0000000040184068 0x0 + *fill* 0x0000000040184068 0x0 + *fill* 0x0000000040184068 0x0 + *fill* 0x0000000040184068 0x0 + *fill* 0x0000000040184068 0x0 + *fill* 0x0000000040184068 0x0 + .text.pbuf_init_alloced_pbuf + 0x0000000040184068 0x1f esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x0000000040184087 0x1 + .text.pbuf_skip_const + 0x0000000040184088 0x1f esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x00000000401840a7 0x0 + *fill* 0x00000000401840a7 0x0 + *fill* 0x00000000401840a7 0x0 + *fill* 0x00000000401840a7 0x0 + *fill* 0x00000000401840a7 0x0 + *fill* 0x00000000401840a7 0x0 + *fill* 0x00000000401840a7 0x0 + *fill* 0x00000000401840a7 0x1 + .text.pbuf_clen + 0x00000000401840a8 0x16 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000401840a8 pbuf_clen + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x0 + *fill* 0x00000000401840be 0x2 + .text.tcp_arg 0x00000000401840c0 0xa esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000401840c0 tcp_arg + *fill* 0x00000000401840ca 0x0 + *fill* 0x00000000401840ca 0x0 + *fill* 0x00000000401840ca 0x0 + *fill* 0x00000000401840ca 0x2 + .text.tcp_accept + 0x00000000401840cc 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000401840cc tcp_accept + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x0 + *fill* 0x00000000401840db 0x1 + .text.udp_recv + 0x00000000401840dc 0xe esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000401840dc udp_recv + *fill* 0x00000000401840ea 0x0 + *fill* 0x00000000401840ea 0x0 + *fill* 0x00000000401840ea 0x2 + .text.dhcp_set_state + 0x00000000401840ec 0x18 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x0000000040184104 0x0 + *fill* 0x0000000040184104 0x0 + *fill* 0x0000000040184104 0x0 + *fill* 0x0000000040184104 0x0 + *fill* 0x0000000040184104 0x0 + *fill* 0x0000000040184104 0x0 + *fill* 0x0000000040184104 0x0 + *fill* 0x0000000040184104 0x0 + *fill* 0x0000000040184104 0x0 + *fill* 0x0000000040184104 0x0 + *fill* 0x0000000040184104 0x0 + *fill* 0x0000000040184104 0x0 + *fill* 0x0000000040184104 0x0 + *fill* 0x0000000040184104 0x0 + *fill* 0x0000000040184104 0x0 + *fill* 0x0000000040184104 0x0 + *fill* 0x0000000040184104 0x0 + *fill* 0x0000000040184104 0x0 + *fill* 0x0000000040184104 0x0 + *fill* 0x0000000040184104 0x0 + *fill* 0x0000000040184104 0x0 + *fill* 0x0000000040184104 0x0 + *fill* 0x0000000040184104 0x0 + *fill* 0x0000000040184104 0x0 + *fill* 0x0000000040184104 0x0 + .text.dhcp_supplied_address + 0x0000000040184104 0x44 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x0000000040184104 dhcp_supplied_address + *fill* 0x0000000040184148 0x0 + *fill* 0x0000000040184148 0x0 + *fill* 0x0000000040184148 0x0 + *fill* 0x0000000040184148 0x0 + *fill* 0x0000000040184148 0x0 + *fill* 0x0000000040184148 0x0 + *fill* 0x0000000040184148 0x0 + *fill* 0x0000000040184148 0x0 + *fill* 0x0000000040184148 0x0 + *fill* 0x0000000040184148 0x0 + *fill* 0x0000000040184148 0x0 + *fill* 0x0000000040184148 0x0 + *fill* 0x0000000040184148 0x0 + *fill* 0x0000000040184148 0x0 + *fill* 0x0000000040184148 0x0 + *fill* 0x0000000040184148 0x0 + *fill* 0x0000000040184148 0x0 + *fill* 0x0000000040184148 0x0 + *fill* 0x0000000040184148 0x0 + .text.igmp_remove_group + 0x0000000040184148 0x22 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000004018416a 0x0 + *fill* 0x000000004018416a 0x0 + *fill* 0x000000004018416a 0x0 + *fill* 0x000000004018416a 0x0 + *fill* 0x000000004018416a 0x0 + *fill* 0x000000004018416a 0x0 + *fill* 0x000000004018416a 0x0 + *fill* 0x000000004018416a 0x0 + *fill* 0x000000004018416a 0x2 + .text.igmp_lookfor_group + 0x000000004018416c 0x17 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x000000004018416c igmp_lookfor_group + *fill* 0x0000000040184183 0x0 + *fill* 0x0000000040184183 0x0 + *fill* 0x0000000040184183 0x0 + *fill* 0x0000000040184183 0x0 + *fill* 0x0000000040184183 0x0 + *fill* 0x0000000040184183 0x0 + *fill* 0x0000000040184183 0x0 + *fill* 0x0000000040184183 0x0 + *fill* 0x0000000040184183 0x0 + *fill* 0x0000000040184183 0x0 + *fill* 0x0000000040184183 0x0 + *fill* 0x0000000040184183 0x0 + *fill* 0x0000000040184183 0x0 + *fill* 0x0000000040184183 0x0 + *fill* 0x0000000040184183 0x1 + .text.ip4_addr_isbroadcast_u32 + 0x0000000040184184 0x48 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x0000000040184184 ip4_addr_isbroadcast_u32 + *fill* 0x00000000401841cc 0x0 + *fill* 0x00000000401841cc 0x0 + *fill* 0x00000000401841cc 0x0 + *fill* 0x00000000401841cc 0x0 + *fill* 0x00000000401841cc 0x0 + *fill* 0x00000000401841cc 0x0 + *fill* 0x00000000401841cc 0x0 + *fill* 0x00000000401841cc 0x0 + *fill* 0x00000000401841cc 0x0 + *fill* 0x00000000401841cc 0x0 + *fill* 0x00000000401841cc 0x0 + *fill* 0x00000000401841cc 0x0 + *fill* 0x00000000401841cc 0x0 + .text.mld6_remove_group + 0x00000000401841cc 0x2c esp-idf/lwip/liblwip.a(mld6.c.obj) + *fill* 0x00000000401841f8 0x0 + *fill* 0x00000000401841f8 0x0 + *fill* 0x00000000401841f8 0x0 + .text.mld6_lookfor_group + 0x00000000401841f8 0x35 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000401841f8 mld6_lookfor_group + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x0 + *fill* 0x000000004018422d 0x3 + .text.nd6_restart_netif + 0x0000000040184230 0xa esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x0000000040184230 nd6_restart_netif + *fill* 0x000000004018423a 0x0 + *fill* 0x000000004018423a 0x0 + *fill* 0x000000004018423a 0x0 + *fill* 0x000000004018423a 0x0 + *fill* 0x000000004018423a 0x0 + *fill* 0x000000004018423a 0x0 + *fill* 0x000000004018423a 0x0 + *fill* 0x000000004018423a 0x0 + *fill* 0x000000004018423a 0x0 + *fill* 0x000000004018423a 0x0 + *fill* 0x000000004018423a 0x0 + *fill* 0x000000004018423a 0x0 + *fill* 0x000000004018423a 0x0 + *fill* 0x000000004018423a 0x0 + *fill* 0x000000004018423a 0x0 + *fill* 0x000000004018423a 0x0 + *fill* 0x000000004018423a 0x0 + *fill* 0x000000004018423a 0x0 + *fill* 0x000000004018423a 0x0 + *fill* 0x000000004018423a 0x0 + *fill* 0x000000004018423a 0x0 + *fill* 0x000000004018423a 0x0 + *fill* 0x000000004018423a 0x0 + *fill* 0x000000004018423a 0x0 + *fill* 0x000000004018423a 0x2 + .text.get_ip_info + 0x000000004018423c 0x2e esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x000000004018426a 0x2 + .text.node_insert_to_list + 0x000000004018426c 0x3b esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x00000000401842a7 0x1 + .text.add_msg_type + 0x00000000401842a8 0x14 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x00000000401842bc 0x0 + .text.add_end 0x00000000401842bc 0xc esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x00000000401842c8 0x0 + *fill* 0x00000000401842c8 0x0 + *fill* 0x00000000401842c8 0x0 + .text.dhcps_poll_set + 0x00000000401842c8 0x11e esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x00000000401843e6 0x0 + *fill* 0x00000000401843e6 0x0 + *fill* 0x00000000401843e6 0x2 + .text.dhcps_set_option_info + 0x00000000401843e8 0xa9 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000401843e8 dhcps_set_option_info + *fill* 0x0000000040184491 0x3 + .text.node_remove_from_list + 0x0000000040184494 0x35 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x0000000040184494 node_remove_from_list + *fill* 0x00000000401844c9 0x0 + *fill* 0x00000000401844c9 0x0 + *fill* 0x00000000401844c9 0x0 + *fill* 0x00000000401844c9 0x0 + *fill* 0x00000000401844c9 0x0 + *fill* 0x00000000401844c9 0x0 + *fill* 0x00000000401844c9 0x3 + .text.dhcps_set_new_lease_cb + 0x00000000401844cc 0x15 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000401844cc dhcps_set_new_lease_cb + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x0 + *fill* 0x00000000401844e1 0x3 + .text.lwip_standard_chksum + 0x00000000401844e4 0x69 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x00000000401844e4 lwip_standard_chksum + *fill* 0x000000004018454d 0x0 + *fill* 0x000000004018454d 0x0 + *fill* 0x000000004018454d 0x0 + *fill* 0x000000004018454d 0x0 + *fill* 0x000000004018454d 0x0 + *fill* 0x000000004018454d 0x0 + *fill* 0x000000004018454d 0x0 + *fill* 0x000000004018454d 0x0 + *fill* 0x000000004018454d 0x3 + .text.low_level_init + 0x0000000040184550 0x20 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + *fill* 0x0000000040184570 0x0 + *fill* 0x0000000040184570 0x0 + *fill* 0x0000000040184570 0x0 + *fill* 0x0000000040184570 0x0 + .text.wpa_ap_get_peer_spp_msg + 0x0000000040184570 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x0000000040184570 wpa_ap_get_peer_spp_msg + *fill* 0x0000000040184586 0x0 + *fill* 0x0000000040184586 0x0 + *fill* 0x0000000040184586 0x0 + *fill* 0x0000000040184586 0x0 + *fill* 0x0000000040184586 0x0 + *fill* 0x0000000040184586 0x0 + *fill* 0x0000000040184586 0x0 + *fill* 0x0000000040184586 0x0 + *fill* 0x0000000040184586 0x0 + *fill* 0x0000000040184586 0x0 + *fill* 0x0000000040184586 0x0 + *fill* 0x0000000040184586 0x0 + *fill* 0x0000000040184586 0x0 + *fill* 0x0000000040184586 0x0 + *fill* 0x0000000040184586 0x0 + *fill* 0x0000000040184586 0x0 + *fill* 0x0000000040184586 0x0 + *fill* 0x0000000040184586 0x0 + *fill* 0x0000000040184586 0x2 + .text.supplicant_sta_conn_handler + 0x0000000040184588 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x0000000040184588 supplicant_sta_conn_handler + *fill* 0x000000004018458d 0x3 + .text.supplicant_sta_disconn_handler + 0x0000000040184590 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x0000000040184590 supplicant_sta_disconn_handler + *fill* 0x0000000040184595 0x3 + .text.esp_set_scan_ie + 0x0000000040184598 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x0000000040184598 esp_set_scan_ie + *fill* 0x000000004018459d 0x0 + *fill* 0x000000004018459d 0x0 + *fill* 0x000000004018459d 0x0 + *fill* 0x000000004018459d 0x0 + *fill* 0x000000004018459d 0x0 + *fill* 0x000000004018459d 0x0 + *fill* 0x000000004018459d 0x0 + *fill* 0x000000004018459d 0x0 + *fill* 0x000000004018459d 0x0 + *fill* 0x000000004018459d 0x0 + *fill* 0x000000004018459d 0x0 + *fill* 0x000000004018459d 0x0 + *fill* 0x000000004018459d 0x0 + *fill* 0x000000004018459d 0x0 + *fill* 0x000000004018459d 0x0 + *fill* 0x000000004018459d 0x0 + *fill* 0x000000004018459d 0x0 + *fill* 0x000000004018459d 0x0 + *fill* 0x000000004018459d 0x0 + *fill* 0x000000004018459d 0x0 + *fill* 0x000000004018459d 0x0 + *fill* 0x000000004018459d 0x0 + *fill* 0x000000004018459d 0x0 + *fill* 0x000000004018459d 0x3 + .text.crypto_ec_get_prime + 0x00000000401845a0 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x00000000401845a0 crypto_ec_get_prime + *fill* 0x00000000401845a7 0x1 + .text.crypto_ec_get_order + 0x00000000401845a8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x00000000401845a8 crypto_ec_get_order + .text.crypto_ec_get_b + 0x00000000401845b0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x00000000401845b0 crypto_ec_get_b + *fill* 0x00000000401845b8 0x0 + *fill* 0x00000000401845b8 0x0 + *fill* 0x00000000401845b8 0x0 + *fill* 0x00000000401845b8 0x0 + *fill* 0x00000000401845b8 0x0 + *fill* 0x00000000401845b8 0x0 + *fill* 0x00000000401845b8 0x0 + *fill* 0x00000000401845b8 0x0 + .text.crypto_ec_get_mbedtls_to_nist_group_id + 0x00000000401845b8 0x41 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x00000000401845b8 crypto_ec_get_mbedtls_to_nist_group_id + *fill* 0x00000000401845f9 0x0 + *fill* 0x00000000401845f9 0x3 + .text.crypto_mbedtls_get_grp_id + 0x00000000401845fc 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x00000000401845fc crypto_mbedtls_get_grp_id + *fill* 0x0000000040184621 0x0 + *fill* 0x0000000040184621 0x0 + *fill* 0x0000000040184621 0x0 + *fill* 0x0000000040184621 0x0 + *fill* 0x0000000040184621 0x0 + *fill* 0x0000000040184621 0x0 + *fill* 0x0000000040184621 0x0 + *fill* 0x0000000040184621 0x0 + *fill* 0x0000000040184621 0x0 + *fill* 0x0000000040184621 0x0 + *fill* 0x0000000040184621 0x0 + *fill* 0x0000000040184621 0x0 + *fill* 0x0000000040184621 0x0 + *fill* 0x0000000040184621 0x0 + *fill* 0x0000000040184621 0x0 + *fill* 0x0000000040184621 0x0 + *fill* 0x0000000040184621 0x0 + *fill* 0x0000000040184621 0x0 + *fill* 0x0000000040184621 0x3 + .text.wpa_auth_pmksa_free_cb + 0x0000000040184624 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000040184629 0x3 + .text.wpa_request_new_ptk + 0x000000004018462c 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000004018463e 0x2 + .text.sm_WPA_PTK_DISCONNECTED_Enter + 0x0000000040184640 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000040184662 0x2 + .text.sm_WPA_PTK_PTKCALCNEGOTIATING2_Enter + 0x0000000040184664 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000040184686 0x2 + .text.ieee80211w_kde_len + 0x0000000040184688 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x00000000401846a1 0x3 + .text.sm_WPA_PTK_GROUP_IDLE_Enter + 0x00000000401846a4 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x00000000401846d2 0x2 + .text.sm_WPA_PTK_GROUP_REKEYESTABLISHED_Enter + 0x00000000401846d4 0x3b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000004018470f 0x1 + .text.sm_WPA_PTK_GROUP_KEYERROR_Enter + 0x0000000040184710 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + *fill* 0x0000000040184744 0x0 + .text.wpa_auth_uses_mfp + 0x0000000040184744 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x0000000040184744 wpa_auth_uses_mfp + *fill* 0x0000000040184756 0x0 + *fill* 0x0000000040184756 0x0 + *fill* 0x0000000040184756 0x0 + *fill* 0x0000000040184756 0x0 + *fill* 0x0000000040184756 0x0 + *fill* 0x0000000040184756 0x0 + *fill* 0x0000000040184756 0x0 + *fill* 0x0000000040184756 0x0 + *fill* 0x0000000040184756 0x0 + *fill* 0x0000000040184756 0x0 + *fill* 0x0000000040184756 0x2 + .text.ap_sta_list_del + 0x0000000040184758 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + *fill* 0x000000004018477a 0x0 + *fill* 0x000000004018477a 0x2 + .text.ap_sta_hash_add + 0x000000004018477c 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x000000004018477c ap_sta_hash_add + *fill* 0x0000000040184792 0x0 + *fill* 0x0000000040184792 0x2 + .text.sae_set_state + 0x0000000040184794 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + *fill* 0x000000004018479d 0x3 + .text.sae_get_password + 0x00000000401847a0 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .text.use_sae_anti_clogging + 0x00000000401847b0 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + *fill* 0x0000000040184805 0x0 + *fill* 0x0000000040184805 0x3 + .text.sae_status_success + 0x0000000040184808 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + *fill* 0x0000000040184868 0x0 + *fill* 0x0000000040184868 0x0 + *fill* 0x0000000040184868 0x0 + *fill* 0x0000000040184868 0x0 + *fill* 0x0000000040184868 0x0 + *fill* 0x0000000040184868 0x0 + *fill* 0x0000000040184868 0x0 + .text.wpa_res_to_status_code + 0x0000000040184868 0x86 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x0000000040184868 wpa_res_to_status_code + *fill* 0x00000000401848ee 0x0 + *fill* 0x00000000401848ee 0x0 + *fill* 0x00000000401848ee 0x0 + *fill* 0x00000000401848ee 0x2 + .text.const_time_memcmp + 0x00000000401848f0 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x000000004018492a 0x2 + .text.sswu_curve_param + 0x000000004018492c 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x0000000040184941 0x3 + .text.sae_is_password_id_elem + 0x0000000040184944 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x0000000040184986 0x2 + .text.sae_is_rejected_groups_elem + 0x0000000040184988 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.sae_is_token_container_elem + 0x00000000401849cc 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x0000000040184a0e 0x2 + .text.sae_parse_commit_token + 0x0000000040184a10 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x0000000040184a5a 0x0 + *fill* 0x0000000040184a5a 0x0 + *fill* 0x0000000040184a5a 0x0 + *fill* 0x0000000040184a5a 0x0 + *fill* 0x0000000040184a5a 0x0 + *fill* 0x0000000040184a5a 0x0 + *fill* 0x0000000040184a5a 0x0 + *fill* 0x0000000040184a5a 0x0 + *fill* 0x0000000040184a5a 0x0 + *fill* 0x0000000040184a5a 0x0 + *fill* 0x0000000040184a5a 0x0 + *fill* 0x0000000040184a5a 0x0 + *fill* 0x0000000040184a5a 0x0 + *fill* 0x0000000040184a5a 0x0 + *fill* 0x0000000040184a5a 0x0 + *fill* 0x0000000040184a5a 0x0 + *fill* 0x0000000040184a5a 0x0 + *fill* 0x0000000040184a5a 0x0 + *fill* 0x0000000040184a5a 0x0 + *fill* 0x0000000040184a5a 0x0 + *fill* 0x0000000040184a5a 0x0 + *fill* 0x0000000040184a5a 0x0 + *fill* 0x0000000040184a5a 0x2 + .text.sae_ecc_prime_len_2_hash_len + 0x0000000040184a5c 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x0000000040184a5c sae_ecc_prime_len_2_hash_len + *fill* 0x0000000040184a78 0x0 + .text.sae_ffc_prime_len_2_hash_len + 0x0000000040184a78 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x0000000040184a78 sae_ffc_prime_len_2_hash_len + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x0 + *fill* 0x0000000040184a95 0x3 + .text.wpa_cipher_key_len + 0x0000000040184a98 0x3d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x0000000040184a98 wpa_cipher_key_len + *fill* 0x0000000040184ad5 0x0 + *fill* 0x0000000040184ad5 0x3 + .text.wpa_cipher_to_alg + 0x0000000040184ad8 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x0000000040184ad8 wpa_cipher_to_alg + *fill* 0x0000000040184b06 0x2 + .text.wpa_cipher_valid_pairwise + 0x0000000040184b08 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x0000000040184b08 wpa_cipher_valid_pairwise + *fill* 0x0000000040184b4e 0x0 + *fill* 0x0000000040184b4e 0x2 + .text.rsn_cipher_put_suites + 0x0000000040184b50 0x5b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x0000000040184b50 rsn_cipher_put_suites + *fill* 0x0000000040184bab 0x1 + .text.wpa_cipher_put_suites + 0x0000000040184bac 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x0000000040184bac wpa_cipher_put_suites + *fill* 0x0000000040184c06 0x0 + *fill* 0x0000000040184c06 0x0 + *fill* 0x0000000040184c06 0x0 + *fill* 0x0000000040184c06 0x0 + *fill* 0x0000000040184c06 0x0 + *fill* 0x0000000040184c06 0x0 + *fill* 0x0000000040184c06 0x0 + *fill* 0x0000000040184c06 0x0 + *fill* 0x0000000040184c06 0x0 + *fill* 0x0000000040184c06 0x0 + *fill* 0x0000000040184c06 0x0 + *fill* 0x0000000040184c06 0x2 + .text.cipher_type_map_public_to_supp + 0x0000000040184c08 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040184c08 cipher_type_map_public_to_supp + *fill* 0x0000000040184c56 0x0 + *fill* 0x0000000040184c56 0x0 + *fill* 0x0000000040184c56 0x0 + *fill* 0x0000000040184c56 0x0 + *fill* 0x0000000040184c56 0x0 + *fill* 0x0000000040184c56 0x2 + .text.wpa_supplicant_gtk_tx_bit_workaround + 0x0000000040184c58 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040184c58 wpa_supplicant_gtk_tx_bit_workaround + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x0 + *fill* 0x0000000040184c69 0x3 + .text.wpa_gen_wpa_ie_wpa + 0x0000000040184c6c 0x15b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x0000000040184dc7 0x0 + *fill* 0x0000000040184dc7 0x0 + *fill* 0x0000000040184dc7 0x0 + *fill* 0x0000000040184dc7 0x1 + .text.wpabuf_put + 0x0000000040184dc8 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x0000000040184dc8 wpabuf_put + *fill* 0x0000000040184dd7 0x0 + *fill* 0x0000000040184dd7 0x0 + *fill* 0x0000000040184dd7 0x1 + .text.d_invert + 0x0000000040184dd8 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + *fill* 0x0000000040184def 0x1 + .text.sae_pk_buf_shift_left_1 + 0x0000000040184df0 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .text.sae_group_2_hash_len + 0x0000000040184e20 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + *fill* 0x0000000040184e46 0x0 + *fill* 0x0000000040184e46 0x0 + *fill* 0x0000000040184e46 0x0 + *fill* 0x0000000040184e46 0x2 + .text.sae_pk_get_be19 + 0x0000000040184e48 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x0000000040184e48 sae_pk_get_be19 + *fill* 0x0000000040184e65 0x3 + .text.sae_pk_buf_shift_left_19 + 0x0000000040184e68 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x0000000040184e68 sae_pk_buf_shift_left_19 + *fill* 0x0000000040184ea2 0x0 + *fill* 0x0000000040184ea2 0x0 + *fill* 0x0000000040184ea2 0x0 + *fill* 0x0000000040184ea2 0x0 + *fill* 0x0000000040184ea2 0x2 + .text.wpa_bss_in_use + 0x0000000040184ea4 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + *fill* 0x0000000040184eb5 0x0 + *fill* 0x0000000040184eb5 0x0 + *fill* 0x0000000040184eb5 0x0 + *fill* 0x0000000040184eb5 0x0 + *fill* 0x0000000040184eb5 0x0 + *fill* 0x0000000040184eb5 0x0 + *fill* 0x0000000040184eb5 0x3 + .text.wpa_bss_init + 0x0000000040184eb8 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x0000000040184eb8 wpa_bss_init + *fill* 0x0000000040184ecd 0x0 + *fill* 0x0000000040184ecd 0x0 + *fill* 0x0000000040184ecd 0x0 + *fill* 0x0000000040184ecd 0x0 + *fill* 0x0000000040184ecd 0x3 + .text.WPA_GET_LE64 + 0x0000000040184ed0 0x41 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + *fill* 0x0000000040184f11 0x0 + *fill* 0x0000000040184f11 0x0 + *fill* 0x0000000040184f11 0x0 + *fill* 0x0000000040184f11 0x0 + *fill* 0x0000000040184f11 0x0 + *fill* 0x0000000040184f11 0x0 + *fill* 0x0000000040184f11 0x0 + *fill* 0x0000000040184f11 0x3 + .text.wpa_sm_mlme_setprotection + 0x0000000040184f14 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x0000000040184f14 wpa_sm_mlme_setprotection + *fill* 0x0000000040184f1b 0x1 + .text.wpa_sm_disassociate + 0x0000000040184f1c 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x0000000040184f1c wpa_sm_disassociate + *fill* 0x0000000040184f21 0x0 + *fill* 0x0000000040184f21 0x0 + *fill* 0x0000000040184f21 0x0 + *fill* 0x0000000040184f21 0x0 + *fill* 0x0000000040184f21 0x0 + *fill* 0x0000000040184f21 0x0 + *fill* 0x0000000040184f21 0x0 + *fill* 0x0000000040184f21 0x0 + *fill* 0x0000000040184f21 0x0 + *fill* 0x0000000040184f21 0x0 + *fill* 0x0000000040184f21 0x0 + *fill* 0x0000000040184f21 0x0 + *fill* 0x0000000040184f21 0x3 + .text.dbl 0x0000000040184f24 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + *fill* 0x0000000040184f66 0x2 + .text.xor 0x0000000040184f68 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + *fill* 0x0000000040184f89 0x3 + .text.xorend 0x0000000040184f8c 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + *fill* 0x0000000040184fb4 0x0 + *fill* 0x0000000040184fb4 0x0 + *fill* 0x0000000040184fb4 0x0 + *fill* 0x0000000040184fb4 0x0 + .text.get_ie 0x0000000040184fb4 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + 0x0000000040184fb4 get_ie + *fill* 0x0000000040184fe9 0x0 + *fill* 0x0000000040184fe9 0x0 + *fill* 0x0000000040184fe9 0x0 + *fill* 0x0000000040184fe9 0x0 + *fill* 0x0000000040184fe9 0x0 + *fill* 0x0000000040184fe9 0x0 + *fill* 0x0000000040184fe9 0x0 + *fill* 0x0000000040184fe9 0x0 + *fill* 0x0000000040184fe9 0x3 + .text.pmksa_cache_get_current + 0x0000000040184fec 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x0000000040184fec pmksa_cache_get_current + *fill* 0x0000000040184ff6 0x2 + .text.pmksa_cache_clear_current + 0x0000000040184ff8 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x0000000040184ff8 pmksa_cache_clear_current + *fill* 0x0000000040185004 0x0 + *fill* 0x0000000040185004 0x0 + .text.mbedtls_asn1_write_tag + 0x0000000040185004 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x0000000040185004 mbedtls_asn1_write_tag + *fill* 0x0000000040185025 0x0 + *fill* 0x0000000040185025 0x0 + *fill* 0x0000000040185025 0x0 + *fill* 0x0000000040185025 0x0 + *fill* 0x0000000040185025 0x0 + *fill* 0x0000000040185025 0x0 + *fill* 0x0000000040185025 0x3 + .text.mbedtls_ecdsa_can_do + 0x0000000040185028 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x0000000040185028 mbedtls_ecdsa_can_do + *fill* 0x0000000040185039 0x0 + *fill* 0x0000000040185039 0x0 + *fill* 0x0000000040185039 0x0 + *fill* 0x0000000040185039 0x0 + *fill* 0x0000000040185039 0x0 + *fill* 0x0000000040185039 0x0 + *fill* 0x0000000040185039 0x0 + *fill* 0x0000000040185039 0x0 + *fill* 0x0000000040185039 0x0 + *fill* 0x0000000040185039 0x0 + *fill* 0x0000000040185039 0x3 + .text.mbedtls_pk_init + 0x000000004018503c 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x000000004018503c mbedtls_pk_init + *fill* 0x0000000040185047 0x0 + *fill* 0x0000000040185047 0x1 + .text.mbedtls_pk_get_type + 0x0000000040185048 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x0000000040185048 mbedtls_pk_get_type + *fill* 0x000000004018505f 0x1 + .text.rsa_can_do + 0x0000000040185060 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x0000000040185079 0x0 + *fill* 0x0000000040185079 0x3 + .text.eckey_can_do + 0x000000004018507c 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x000000004018508b 0x1 + .text.eckey_get_bitlen + 0x000000004018508c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x0000000040185094 0x0 + .text.eckeydh_can_do + 0x0000000040185094 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x00000000401850a3 0x1 + .text.ecdsa_can_do + 0x00000000401850a4 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x0 + *fill* 0x00000000401850b3 0x1 + .text.mbedtls_rsa_get_len + 0x00000000401850b4 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x00000000401850b4 mbedtls_rsa_get_len + *fill* 0x00000000401850bb 0x0 + *fill* 0x00000000401850bb 0x0 + *fill* 0x00000000401850bb 0x0 + *fill* 0x00000000401850bb 0x0 + *fill* 0x00000000401850bb 0x0 + *fill* 0x00000000401850bb 0x0 + *fill* 0x00000000401850bb 0x0 + *fill* 0x00000000401850bb 0x0 + *fill* 0x00000000401850bb 0x0 + *fill* 0x00000000401850bb 0x0 + *fill* 0x00000000401850bb 0x0 + *fill* 0x00000000401850bb 0x0 + *fill* 0x00000000401850bb 0x0 + *fill* 0x00000000401850bb 0x0 + *fill* 0x00000000401850bb 0x0 + *fill* 0x00000000401850bb 0x0 + *fill* 0x00000000401850bb 0x0 + *fill* 0x00000000401850bb 0x0 + *fill* 0x00000000401850bb 0x0 + *fill* 0x00000000401850bb 0x1 + .text.mbedtls_pem_init + 0x00000000401850bc 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x00000000401850bc mbedtls_pem_init + *fill* 0x00000000401850e7 0x0 + *fill* 0x00000000401850e7 0x0 + *fill* 0x00000000401850e7 0x0 + *fill* 0x00000000401850e7 0x0 + *fill* 0x00000000401850e7 0x0 + *fill* 0x00000000401850e7 0x0 + *fill* 0x00000000401850e7 0x0 + *fill* 0x00000000401850e7 0x0 + *fill* 0x00000000401850e7 0x0 + *fill* 0x00000000401850e7 0x0 + *fill* 0x00000000401850e7 0x0 + *fill* 0x00000000401850e7 0x0 + *fill* 0x00000000401850e7 0x0 + *fill* 0x00000000401850e7 0x0 + *fill* 0x00000000401850e7 0x0 + *fill* 0x00000000401850e7 0x0 + *fill* 0x00000000401850e7 0x0 + *fill* 0x00000000401850e7 0x0 + *fill* 0x00000000401850e7 0x0 + *fill* 0x00000000401850e7 0x0 + *fill* 0x00000000401850e7 0x1 + .text._ZNSt9type_infoD2Ev + 0x00000000401850e8 0x5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + 0x00000000401850e8 _ZNSt9type_infoD1Ev + 0x00000000401850e8 _ZNSt9type_infoD2Ev + *fill* 0x00000000401850ed 0x3 + .text._ZNKSt9type_info14__is_pointer_pEv + 0x00000000401850f0 0x7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + 0x00000000401850f0 _ZNKSt9type_info14__is_pointer_pEv + 0x00000000401850f0 _ZNKSt9type_info15__is_function_pEv + *fill* 0x00000000401850f7 0x0 + *fill* 0x00000000401850f7 0x1 + .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv + 0x00000000401850f8 0x32 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x00000000401850f8 _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv + *fill* 0x000000004018512a 0x2 + .text._ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_ + 0x000000004018512c 0x11 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x000000004018512c _ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_ + *fill* 0x000000004018513d 0x0 + *fill* 0x000000004018513d 0x0 + *fill* 0x000000004018513d 0x0 + *fill* 0x000000004018513d 0x0 + *fill* 0x000000004018513d 0x0 + *fill* 0x000000004018513d 0x0 + *fill* 0x000000004018513d 0x0 + *fill* 0x000000004018513d 0x0 + *fill* 0x000000004018513d 0x0 + *fill* 0x000000004018513d 0x0 + *fill* 0x000000004018513d 0x0 + *fill* 0x000000004018513d 0x0 + *fill* 0x000000004018513d 0x0 + *fill* 0x000000004018513d 0x0 + *fill* 0x000000004018513d 0x3 + .text._ZNSt9exceptionD2Ev + 0x0000000040185140 0x5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + 0x0000000040185140 _ZNSt9exceptionD2Ev + 0x0000000040185140 _ZNSt9exceptionD1Ev + *fill* 0x0000000040185145 0x0 + *fill* 0x0000000040185145 0x0 + *fill* 0x0000000040185145 0x0 + *fill* 0x0000000040185145 0x3 + .text 0x0000000040185148 0x59 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divsf3.o) + 0x0000000040185148 __divsf3 + *fill* 0x00000000401851a1 0x0 + *fill* 0x00000000401851a1 0x0 + *fill* 0x00000000401851a1 0x0 + *fill* 0x00000000401851a1 0x0 + *fill* 0x00000000401851a1 0x0 + *fill* 0x00000000401851a1 0x0 + *fill* 0x00000000401851a1 0x0 + *fill* 0x00000000401851a1 0x3 + .text.ram_rfpll_reset + 0x00000000401851a4 0x5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x00000000401851a4 ram_rfpll_reset + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x0 + *fill* 0x00000000401851a9 0x3 + .text.spur_cal$part$7 + 0x00000000401851ac 0x4a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + *fill* 0x00000000401851f6 0x0 + *fill* 0x00000000401851f6 0x0 + *fill* 0x00000000401851f6 0x0 + *fill* 0x00000000401851f6 0x0 + *fill* 0x00000000401851f6 0x0 + *fill* 0x00000000401851f6 0x0 + *fill* 0x00000000401851f6 0x0 + *fill* 0x00000000401851f6 0x0 + *fill* 0x00000000401851f6 0x0 + *fill* 0x00000000401851f6 0x0 + *fill* 0x00000000401851f6 0x0 + *fill* 0x00000000401851f6 0x0 + *fill* 0x00000000401851f6 0x0 + *fill* 0x00000000401851f6 0x0 + *fill* 0x00000000401851f6 0x0 + *fill* 0x00000000401851f6 0x0 + *fill* 0x00000000401851f6 0x2 + .text.phy_byte_to_word + 0x00000000401851f8 0x23 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x00000000401851f8 phy_byte_to_word + *fill* 0x000000004018521b 0x0 + *fill* 0x000000004018521b 0x0 + *fill* 0x000000004018521b 0x1 + .text.phy_rfcal_data_check + 0x000000004018521c 0xc7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004018521c phy_rfcal_data_check + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x0 + *fill* 0x00000000401852e3 0x1 + .text 0x00000000401852e4 0x80 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + 0x00000000401852e4 __sflags + *fill* 0x0000000040185364 0x0 + *fill* 0x0000000040185364 0x0 + *fill* 0x0000000040185364 0x0 + *fill* 0x0000000040185364 0x0 + *fill* 0x0000000040185364 0x0 + *fill* 0x0000000040185364 0x0 + *fill* 0x0000000040185364 0x0 + *fill* 0x0000000040185364 0x0 + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifi0iram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifi0iram.*) + *(EXCLUDE_FILE(*libpp.a) .wifiorslpiram EXCLUDE_FILE(*libpp.a) .wifiorslpiram.*) + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifirxiram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifirxiram.*) + .wifirxiram.8 0x0000000040185364 0x15 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + 0x0000000040185368 coex_wifi_release + *fill* 0x0000000040185379 0x3 + .wifirxiram.11 + 0x000000004018537c 0xa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + 0x11 (size before relaxing) + 0x000000004018537c coex_status_get + *fill* 0x0000000040185386 0x2 + .wifirxiram.1 0x0000000040185388 0x2f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x0000000040185390 coex_schm_lock + *fill* 0x00000000401853b7 0x1 + .wifirxiram.2 0x00000000401853b8 0x26 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x2e (size before relaxing) + 0x00000000401853b8 coex_schm_unlock + *fill* 0x00000000401853de 0x2 + .wifirxiram.4 0x00000000401853e0 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x30 (size before relaxing) + 0x00000000401853e0 coex_schm_interval_set + *fill* 0x0000000040185400 0x0 + *fill* 0x0000000040185400 0x0 + *fill* 0x0000000040185400 0x0 + *fill* 0x0000000040185400 0x0 + *fill* 0x0000000040185400 0x0 + *(.wifislpiram .wifislpiram.*) + .wifislpiram.26 + 0x0000000040185400 0xe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0x0000000040185404 coex_core_status_get + *fill* 0x000000004018540e 0x2 + .wifislpiram.40 + 0x0000000040185410 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x0000000040185414 esp_wifi_internal_update_mac_time + *fill* 0x0000000040185427 0x1 + .wifislpiram.5 + 0x0000000040185428 0x1ce /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x1d6 (size before relaxing) + 0x0000000040185448 esf_buf_alloc_dynamic + *fill* 0x00000000401855f6 0x2 + .wifislpiram.5 + 0x00000000401855f8 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x00000000401855fc pm_get_connectionless_status + *fill* 0x0000000040185623 0x1 + .wifislpiram.17 + 0x0000000040185624 0x17 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x1b (size before relaxing) + 0x0000000040185628 pm_disable_dream_timer + *fill* 0x000000004018563b 0x1 + .wifislpiram.18 + 0x000000004018563c 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x34 (size before relaxing) + 0x000000004018563c pm_enable_dream_timer + .wifislpiram.20 + 0x0000000040185664 0x12f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x157 (size before relaxing) + 0x0000000040185674 pm_update_by_connectionless_status + *fill* 0x0000000040185793 0x1 + .wifislpiram.30 + 0x0000000040185794 0x38a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x3a6 (size before relaxing) + 0x00000000401857cc pm_update_next_tbtt + *fill* 0x0000000040185b1e 0x2 + .wifislpiram.36 + 0x0000000040185b20 0x5a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x6a (size before relaxing) + 0x0000000040185b20 pm_connectionless_wake_interval_timeout_process + *fill* 0x0000000040185b7a 0x2 + .wifislpiram.37 + 0x0000000040185b7c 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x60 (size before relaxing) + 0x0000000040185b7c pm_connectionless_wake_window_timeout_process + .wifislpiram.3 + 0x0000000040185bc4 0x13 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + *fill* 0x0000000040185bd7 0x1 + .wifislpiram.4 + 0x0000000040185bd8 0x92 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x9e (size before relaxing) + 0x0000000040185be8 pp_timer_do_process + *fill* 0x0000000040185c6a 0x2 + .wifislpiram.16 + 0x0000000040185c6c 0x1e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x0000000040185c70 wdev_csi_len_align + *fill* 0x0000000040185c8a 0x2 + .wifislpiram.26 + 0x0000000040185c8c 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x0000000040185c94 wDev_DiscardFrame + .wifislpiram.9 + 0x0000000040185cb4 0x11 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x0000000040185cb8 hal_mac_rx_read_rxdscrlast + *fill* 0x0000000040185cc5 0x0 + *fill* 0x0000000040185cc5 0x0 + *fill* 0x0000000040185cc5 0x0 + *fill* 0x0000000040185cc5 0x0 + *fill* 0x0000000040185cc5 0x0 + *fill* 0x0000000040185cc5 0x0 + *fill* 0x0000000040185cc5 0x0 + *fill* 0x0000000040185cc5 0x3 + .wifislpiram.6 + 0x0000000040185cc8 0x29 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040185cc8 pp_hdrsize + *fill* 0x0000000040185cf1 0x0 + *fill* 0x0000000040185cf1 0x0 + *fill* 0x0000000040185cf1 0x0 + *fill* 0x0000000040185cf1 0x0 + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifislprxiram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifislprxiram.*) + *libesp_event.a:default_event_loop.*(.literal.esp_event_handler_instance_register .literal.esp_event_handler_instance_unregister .literal.esp_event_handler_register .literal.esp_event_handler_unregister .literal.esp_event_loop_create_default .literal.esp_event_loop_delete_default .literal.esp_event_post .text .text.esp_event_handler_instance_register .text.esp_event_handler_instance_unregister .text.esp_event_handler_register .text.esp_event_handler_unregister .text.esp_event_loop_create_default .text.esp_event_loop_delete_default .text.esp_event_post) + *fill* 0x0000000040185cf1 0x3 + .literal.esp_event_handler_unregister + 0x0000000040185cf4 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_post + 0x0000000040185cf8 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_loop_create_default + 0x0000000040185cf8 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x10 (size before relaxing) + .literal.handler_instances_add + 0x0000000040185cfc 0x18 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x24 (size before relaxing) + .literal.base_node_add_handler + 0x0000000040185d14 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x24 (size before relaxing) + .literal.loop_node_add_handler + 0x0000000040185d18 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x28 (size before relaxing) + .literal.handler_instances_remove + 0x0000000040185d20 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x10 (size before relaxing) + .literal.base_node_remove_handler + 0x0000000040185d20 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0xc (size before relaxing) + .literal.loop_node_remove_handler + 0x0000000040185d20 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x10 (size before relaxing) + .literal.esp_event_loop_create + 0x0000000040185d20 0x30 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x70 (size before relaxing) + .literal.esp_event_loop_run + 0x0000000040185d50 0x24 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x3c (size before relaxing) + .literal.esp_event_loop_run_task + 0x0000000040185d74 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x18 (size before relaxing) + .literal.esp_event_handler_register_with_internal + 0x0000000040185d7c 0x10 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x50 (size before relaxing) + .literal.esp_event_handler_register_with + 0x0000000040185d8c 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4 (size before relaxing) + .literal.esp_event_handler_unregister_with_internal + 0x0000000040185d8c 0xc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x3c (size before relaxing) + .literal.esp_event_handler_unregister_with + 0x0000000040185d98 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4 (size before relaxing) + .literal.esp_event_post_to + 0x0000000040185d98 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x40 (size before relaxing) + .literal.esp_cpu_intr_get_desc + 0x0000000040185da0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x14 (size before relaxing) + .literal.periph_ll_get_clk_en_mask + 0x0000000040185db0 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x3c (size before relaxing) + .literal.periph_ll_get_rst_en_mask + 0x0000000040185dd4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x30 (size before relaxing) + .literal.periph_ll_enable_clk_clear_rst + 0x0000000040185dd4 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x28 (size before relaxing) + .literal.periph_ll_disable_clk_set_rst + 0x0000000040185de8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x28 (size before relaxing) + .literal.periph_ll_reset + 0x0000000040185de8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x18 (size before relaxing) + .literal.periph_ll_wifi_module_enable_clk_clear_rst + 0x0000000040185de8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x10 (size before relaxing) + .literal.periph_ll_wifi_module_disable_clk_set_rst + 0x0000000040185de8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x10 (size before relaxing) + .literal.periph_module_enable + 0x0000000040185de8 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x34 (size before relaxing) + .literal.periph_module_disable + 0x0000000040185e08 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x34 (size before relaxing) + .literal.s_sar_power_acquire + 0x0000000040185e0c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x28 (size before relaxing) + .literal.s_sar_power_release + 0x0000000040185e1c 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x44 (size before relaxing) + .literal.sar_periph_ctrl_init + 0x0000000040185e30 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x8 (size before relaxing) + .literal.sar_periph_ctrl_pwdet_power_acquire + 0x0000000040185e30 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 + 0x0000000040185e30 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 + 0x0000000040185e30 0x4 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x8 (size before relaxing) + .literal.esp_get_free_internal_heap_size + 0x0000000040185e34 0x4 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x8 (size before relaxing) + .literal.other_cpu_startup_idle_hook_cb + 0x0000000040185e38 0x4 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .literal.main_task + 0x0000000040185e3c 0x40 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x5c (size before relaxing) + .literal.esp_startup_start_app + 0x0000000040185e7c 0x38 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x4c (size before relaxing) + .literal.esp_startup_start_app_other_cores + 0x0000000040185eb4 0xc esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x2c (size before relaxing) + .literal.multi_heap_register_impl + 0x0000000040185ec0 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x18 (size before relaxing) + .literal.multi_heap_get_info_impl + 0x0000000040185ed0 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x24 (size before relaxing) + .literal.control_construct + 0x0000000040185ee4 0x28 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x3c (size before relaxing) + .literal.default_walker + 0x0000000040185f0c 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + 0x10 (size before relaxing) + .literal.tlsf_walk_pool + 0x0000000040185f18 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x14 (size before relaxing) + .literal.tlsf_fit_size + 0x0000000040185f28 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4 (size before relaxing) + .literal.tlsf_add_pool + 0x0000000040185f28 0x1c esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4c (size before relaxing) + .literal.tlsf_create + 0x0000000040185f44 0x4 esp-idf/heap/libheap.a(tlsf.c.obj) + 0xc (size before relaxing) + .literal.tlsf_create_with_pool + 0x0000000040185f48 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0xc (size before relaxing) + .literal.heap_swap + 0x0000000040185f48 0x4 esp-idf/log/liblog.a(log.c.obj) + .literal.heap_bubble_down + 0x0000000040185f4c 0x0 esp-idf/log/liblog.a(log.c.obj) + 0x8 (size before relaxing) + .literal.add_to_cache + 0x0000000040185f4c 0x8 esp-idf/log/liblog.a(log.c.obj) + 0x10 (size before relaxing) + .literal.get_uncached_log_level + 0x0000000040185f54 0x8 esp-idf/log/liblog.a(log.c.obj) + .literal.get_cached_log_level + 0x0000000040185f5c 0x10 esp-idf/log/liblog.a(log.c.obj) + 0x24 (size before relaxing) + .literal.s_log_level_get_and_unlock + 0x0000000040185f6c 0x8 esp-idf/log/liblog.a(log.c.obj) + 0x18 (size before relaxing) + .literal.clear_log_level_list + 0x0000000040185f74 0x0 esp-idf/log/liblog.a(log.c.obj) + 0x14 (size before relaxing) + .literal.esp_log_level_set + 0x0000000040185f74 0x14 esp-idf/log/liblog.a(log.c.obj) + 0x50 (size before relaxing) + .literal.esp_log_writev + 0x0000000040185f88 0x8 esp-idf/log/liblog.a(log.c.obj) + 0xc (size before relaxing) + .literal.xt_int_has_handler + 0x0000000040185f90 0x8 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .literal.xt_set_interrupt_handler + 0x0000000040185f98 0x4 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0xc (size before relaxing) + .literal.esp_event_handler_register + 0x0000000040185f9c 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x8 (size before relaxing) + .text.esp_event_handler_register + 0x0000000040185f9c 0x22 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x0000000040185f9c esp_event_handler_register + *fill* 0x0000000040185fbe 0x2 + .text.esp_event_handler_unregister + 0x0000000040185fc0 0x21 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x0000000040185fc0 esp_event_handler_unregister + *fill* 0x0000000040185fe1 0x3 + .text.esp_event_post + 0x0000000040185fe4 0x25 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x0000000040185fe4 esp_event_post + *fill* 0x0000000040186009 0x3 + .text.esp_event_loop_create_default + 0x000000004018600c 0x2a esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x2e (size before relaxing) + 0x000000004018600c esp_event_loop_create_default + *fill* 0x0000000040186036 0x0 + *fill* 0x0000000040186036 0x0 + *fill* 0x0000000040186036 0x0 + *fill* 0x0000000040186036 0x0 + *libesp_event.a:esp_event.*(.literal.base_node_add_handler .literal.base_node_remove_all_handler .literal.base_node_remove_handler .literal.esp_event_handler_instance_register_with .literal.esp_event_handler_instance_unregister_with .literal.esp_event_handler_register_with .literal.esp_event_handler_register_with_internal .literal.esp_event_handler_unregister_with .literal.esp_event_handler_unregister_with_internal .literal.esp_event_loop_create .literal.esp_event_loop_delete .literal.esp_event_loop_run .literal.esp_event_loop_run_task .literal.esp_event_post_to .literal.handler_instances_add .literal.handler_instances_remove .literal.handler_instances_remove_all .literal.loop_node_add_handler .literal.loop_node_remove_all_handler .literal.loop_node_remove_handler .text .text.base_node_add_handler .text.base_node_remove_all_handler .text.base_node_remove_handler .text.esp_event_dump .text.esp_event_handler_instance_register_with .text.esp_event_handler_instance_unregister_with .text.esp_event_handler_register_with .text.esp_event_handler_register_with_internal .text.esp_event_handler_unregister_with .text.esp_event_handler_unregister_with_internal .text.esp_event_loop_create .text.esp_event_loop_delete .text.esp_event_loop_run .text.esp_event_loop_run_task .text.esp_event_post_to .text.handler_execute .text.handler_instances_add .text.handler_instances_remove .text.handler_instances_remove_all .text.loop_node_add_handler .text.loop_node_remove_all_handler .text.loop_node_remove_handler) + *fill* 0x0000000040186036 0x2 + .text.handler_instances_add + 0x0000000040186038 0xa6 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x00000000401860de 0x2 + .text.base_node_add_handler + 0x00000000401860e0 0xce esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x00000000401861ae 0x2 + .text.loop_node_add_handler + 0x00000000401861b0 0xef esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000004018629f 0x1 + .text.handler_instances_remove + 0x00000000401862a0 0x85 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x0000000040186325 0x3 + .text.base_node_remove_handler + 0x0000000040186328 0x6d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x0000000040186395 0x3 + .text.loop_node_remove_handler + 0x0000000040186398 0x7b esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x0000000040186413 0x1 + .text.esp_event_loop_create + 0x0000000040186414 0x148 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x0000000040186414 esp_event_loop_create + .text.esp_event_loop_run + 0x000000004018655c 0x13e esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x000000004018655c esp_event_loop_run + *fill* 0x000000004018669a 0x2 + .text.esp_event_loop_run_task + 0x000000004018669c 0x34 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_handler_register_with_internal + 0x00000000401866d0 0x138 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x00000000401866d0 esp_event_handler_register_with_internal + .text.esp_event_handler_register_with + 0x0000000040186808 0x1d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x0000000040186808 esp_event_handler_register_with + *fill* 0x0000000040186825 0x3 + .text.esp_event_handler_unregister_with_internal + 0x0000000040186828 0xd6 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x0000000040186828 esp_event_handler_unregister_with_internal + *fill* 0x00000000401868fe 0x2 + .text.esp_event_handler_unregister_with + 0x0000000040186900 0x1d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x0000000040186900 esp_event_handler_unregister_with + *fill* 0x000000004018691d 0x3 + .text.esp_event_post_to + 0x0000000040186920 0x126 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x0000000040186920 esp_event_post_to + *fill* 0x0000000040186a46 0x2 + .text.handler_execute + 0x0000000040186a48 0x32 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x0000000040186a7a 0x0 + *fill* 0x0000000040186a7a 0x0 + *fill* 0x0000000040186a7a 0x0 + *fill* 0x0000000040186a7a 0x0 + *fill* 0x0000000040186a7a 0x0 + *fill* 0x0000000040186a7a 0x0 + *fill* 0x0000000040186a7a 0x0 + *fill* 0x0000000040186a7a 0x0 + *fill* 0x0000000040186a7a 0x0 + *fill* 0x0000000040186a7a 0x0 + *fill* 0x0000000040186a7a 0x0 + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_intr_get_desc .literal.esp_cpu_set_watchpoint .text .text.esp_cpu_clear_breakpoint .text.esp_cpu_clear_watchpoint .text.esp_cpu_intr_get_desc .text.esp_cpu_set_breakpoint .text.esp_cpu_set_watchpoint) + *fill* 0x0000000040186a7a 0x2 + .text.esp_cpu_intr_get_desc + 0x0000000040186a7c 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x0000000040186a7c esp_cpu_intr_get_desc + *fill* 0x0000000040186ab6 0x0 + *fill* 0x0000000040186ab6 0x2 + .text.esp_cpu_set_breakpoint + 0x0000000040186ab8 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x0000000040186ab8 esp_cpu_set_breakpoint + *libesp_hw_support.a:esp_gpio_reserve.*(.text) + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_ll_disable_clk_set_rst .literal.periph_ll_enable_clk_clear_rst .literal.periph_ll_get_clk_en_mask .literal.periph_ll_get_rst_en_mask .literal.periph_ll_reset .literal.periph_ll_wifi_module_disable_clk_set_rst .literal.periph_ll_wifi_module_enable_clk_clear_rst .literal.periph_module_disable .literal.periph_module_enable .text .text.periph_ll_disable_clk_set_rst .text.periph_ll_enable_clk_clear_rst .text.periph_ll_get_clk_en_mask .text.periph_ll_get_rst_en_mask .text.periph_ll_reset .text.periph_ll_wifi_module_disable_clk_set_rst .text.periph_ll_wifi_module_enable_clk_clear_rst .text.periph_module_disable .text.periph_module_enable) + .text.periph_ll_get_clk_en_mask + 0x0000000040186adc 0x216 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x0000000040186cf2 0x2 + .text.periph_ll_get_rst_en_mask + 0x0000000040186cf4 0x1c0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_ll_enable_clk_clear_rst + 0x0000000040186eb4 0x111 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x0000000040186fc5 0x3 + .text.periph_ll_disable_clk_set_rst + 0x0000000040186fc8 0x10d esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x00000000401870d5 0x3 + .text.periph_ll_reset + 0x00000000401870d8 0x103 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x00000000401871db 0x1 + .text.periph_ll_wifi_module_enable_clk_clear_rst + 0x00000000401871dc 0x2b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x0000000040187207 0x1 + .text.periph_ll_wifi_module_disable_clk_set_rst + 0x0000000040187208 0x2b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x0000000040187233 0x1 + .text.periph_module_enable + 0x0000000040187234 0x83 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x87 (size before relaxing) + 0x0000000040187234 periph_module_enable + *fill* 0x00000000401872b7 0x1 + .text.periph_module_disable + 0x00000000401872b8 0x7b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x7f (size before relaxing) + 0x00000000401872b8 periph_module_disable + *fill* 0x0000000040187333 0x0 + *fill* 0x0000000040187333 0x0 + *fill* 0x0000000040187333 0x0 + *fill* 0x0000000040187333 0x0 + *fill* 0x0000000040187333 0x0 + *fill* 0x0000000040187333 0x0 + *fill* 0x0000000040187333 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* 0x0000000040187333 0x1 + .text.s_sar_power_acquire + 0x0000000040187334 0x67 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + *fill* 0x000000004018739b 0x1 + .text.s_sar_power_release + 0x000000004018739c 0x93 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + *fill* 0x000000004018742f 0x1 + .text.sar_periph_ctrl_init + 0x0000000040187430 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x0000000040187430 sar_periph_ctrl_init + .text.sar_periph_ctrl_pwdet_power_acquire + 0x0000000040187448 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0xb (size before relaxing) + 0x0000000040187448 sar_periph_ctrl_pwdet_power_acquire + *fill* 0x0000000040187450 0x0 + .text.sar_periph_ctrl_pwdet_power_release + 0x0000000040187450 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0xb (size before relaxing) + 0x0000000040187450 sar_periph_ctrl_pwdet_power_release + *fill* 0x0000000040187458 0x0 + *fill* 0x0000000040187458 0x0 + *fill* 0x0000000040187458 0x0 + *fill* 0x0000000040187458 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* 0x0000000040187458 0x0 + .text.esp_get_free_heap_size + 0x0000000040187458 0x10 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x0000000040187458 esp_get_free_heap_size + .text.esp_get_free_internal_heap_size + 0x0000000040187468 0x10 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x0000000040187468 esp_get_free_internal_heap_size + *fill* 0x0000000040187478 0x0 + *libfreertos.a:app_startup.*(.literal .literal.* .text .text.*) + .text.other_cpu_startup_idle_hook_cb + 0x0000000040187478 0x12 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x000000004018748a 0x2 + .text.main_task + 0x000000004018748c 0xd7 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x0000000040187563 0x1 + .text.esp_startup_start_app + 0x0000000040187564 0x70 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x0000000040187564 esp_startup_start_app + .text.esp_startup_start_app_other_cores + 0x00000000401875d4 0x58 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x00000000401875d4 esp_startup_start_app_other_cores + *fill* 0x000000004018762c 0x0 + *fill* 0x000000004018762c 0x0 + *libfreertos.a:idf_additions.*(.literal .literal.* .text .text.*) + *libheap.a:multi_heap.*(.literal.multi_heap_check .literal.multi_heap_dump .literal.multi_heap_dump_tlsf .literal.multi_heap_get_info_impl .literal.multi_heap_register_impl .text .text.multi_heap_check .text.multi_heap_dump .text.multi_heap_dump_tlsf .text.multi_heap_free_size_impl .text.multi_heap_get_block_owner .text.multi_heap_get_info_impl .text.multi_heap_get_info_tlsf .text.multi_heap_minimum_free_size_impl .text.multi_heap_register_impl) + .text.multi_heap_register_impl + 0x000000004018762c 0x4c esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x50 (size before relaxing) + 0x000000004018762c multi_heap_register_impl + 0x000000004018762c multi_heap_register + .text.multi_heap_get_info_impl + 0x0000000040187678 0x68 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x70 (size before relaxing) + 0x0000000040187678 multi_heap_get_info + 0x0000000040187678 multi_heap_get_info_impl + .text.multi_heap_get_info_tlsf + 0x00000000401876e0 0x24 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_free_size_impl + 0x0000000040187704 0xe esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x0000000040187704 multi_heap_free_size_impl + 0x0000000040187704 multi_heap_free_size + *fill* 0x0000000040187712 0x0 + *libheap.a:tlsf.*(.literal.control_construct .literal.default_walker .literal.tlsf_add_pool .literal.tlsf_check .literal.tlsf_check_pool .literal.tlsf_create .literal.tlsf_create_with_pool .literal.tlsf_fit_size .literal.tlsf_remove_pool .literal.tlsf_walk_pool .text .text.control_construct .text.default_walker .text.integrity_walker .text.tlsf_add_pool .text.tlsf_check .text.tlsf_check_pool .text.tlsf_create .text.tlsf_create_with_pool .text.tlsf_destroy .text.tlsf_fit_size .text.tlsf_pool_overhead .text.tlsf_remove_pool .text.tlsf_walk_pool) + *fill* 0x0000000040187712 0x2 + .text.control_construct + 0x0000000040187714 0x176 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000004018788a 0x2 + .text.default_walker + 0x000000004018788c 0x1f esp-idf/heap/libheap.a(tlsf.c.obj) + 0x22 (size before relaxing) + *fill* 0x00000000401878ab 0x1 + .text.tlsf_walk_pool + 0x00000000401878ac 0x52 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x00000000401878ac tlsf_walk_pool + *fill* 0x00000000401878fe 0x2 + .text.tlsf_fit_size + 0x0000000040187900 0x34 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x0000000040187900 tlsf_fit_size + .text.tlsf_add_pool + 0x0000000040187934 0x196 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x19e (size before relaxing) + 0x0000000040187934 tlsf_add_pool + *fill* 0x0000000040187aca 0x2 + .text.tlsf_create + 0x0000000040187acc 0x28 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x0000000040187acc tlsf_create + .text.tlsf_create_with_pool + 0x0000000040187af4 0x2b esp-idf/heap/libheap.a(tlsf.c.obj) + 0x2f (size before relaxing) + 0x0000000040187af4 tlsf_create_with_pool + *fill* 0x0000000040187b1f 0x0 + *fill* 0x0000000040187b1f 0x0 + *fill* 0x0000000040187b1f 0x1 + .text.tlsf_pool_overhead + 0x0000000040187b20 0x7 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x0000000040187b20 tlsf_pool_overhead + *fill* 0x0000000040187b27 0x0 + *fill* 0x0000000040187b27 0x0 + *liblog.a:log.*(.literal.add_to_cache .literal.clear_log_level_list .literal.esp_log_level_get .literal.esp_log_level_set .literal.esp_log_set_vprintf .literal.esp_log_writev .literal.get_cached_log_level .literal.get_uncached_log_level .literal.heap_bubble_down .literal.heap_swap .literal.s_log_level_get_and_unlock .text .text.add_to_cache .text.clear_log_level_list .text.esp_log_level_get .text.esp_log_level_set .text.esp_log_set_vprintf .text.esp_log_writev .text.get_cached_log_level .text.get_uncached_log_level .text.heap_bubble_down .text.heap_swap .text.s_log_level_get_and_unlock) + *fill* 0x0000000040187b27 0x1 + .text.heap_swap + 0x0000000040187b28 0x22 esp-idf/log/liblog.a(log.c.obj) + *fill* 0x0000000040187b4a 0x2 + .text.heap_bubble_down + 0x0000000040187b4c 0x3b esp-idf/log/liblog.a(log.c.obj) + *fill* 0x0000000040187b87 0x1 + .text.add_to_cache + 0x0000000040187b88 0x6e esp-idf/log/liblog.a(log.c.obj) + *fill* 0x0000000040187bf6 0x2 + .text.get_uncached_log_level + 0x0000000040187bf8 0x2b esp-idf/log/liblog.a(log.c.obj) + *fill* 0x0000000040187c23 0x1 + .text.get_cached_log_level + 0x0000000040187c24 0xad esp-idf/log/liblog.a(log.c.obj) + *fill* 0x0000000040187cd1 0x3 + .text.s_log_level_get_and_unlock + 0x0000000040187cd4 0x3b esp-idf/log/liblog.a(log.c.obj) + 0x3f (size before relaxing) + *fill* 0x0000000040187d0f 0x1 + .text.clear_log_level_list + 0x0000000040187d10 0x2f esp-idf/log/liblog.a(log.c.obj) + *fill* 0x0000000040187d3f 0x1 + .text.esp_log_level_set + 0x0000000040187d40 0x10c esp-idf/log/liblog.a(log.c.obj) + 0x0000000040187d40 esp_log_level_set + .text.esp_log_writev + 0x0000000040187e4c 0x2e esp-idf/log/liblog.a(log.c.obj) + 0x32 (size before relaxing) + 0x0000000040187e4c esp_log_writev + *fill* 0x0000000040187e7a 0x0 + *fill* 0x0000000040187e7a 0x0 + *fill* 0x0000000040187e7a 0x0 + *fill* 0x0000000040187e7a 0x0 + *fill* 0x0000000040187e7a 0x0 + *fill* 0x0000000040187e7a 0x0 + *fill* 0x0000000040187e7a 0x0 + *fill* 0x0000000040187e7a 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_system_timestamp .text .text.esp_log_system_timestamp) + *libxtensa.a:xt_trax.*(.literal .literal.* .text .text.*) + *libxtensa.a:xtensa_intr.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040187e7a 0x2 + .text.xt_int_has_handler + 0x0000000040187e7c 0x1d esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x0000000040187e7c xt_int_has_handler + *fill* 0x0000000040187e99 0x3 + .text.xt_set_interrupt_handler + 0x0000000040187e9c 0x4e esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x0000000040187e9c xt_set_interrupt_handler + *fill* 0x0000000040187eea 0x0 + *fill* 0x0000000040187eea 0x0 + *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.irom0.text) + *(.fini.literal) + *(.fini) + *fill* 0x0000000040187eea 0x2 + .fini 0x0000000040187eec 0x3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crti.o + 0x0000000040187eec _fini + *(.gnu.version) + 0x0000000040187eff . = (. + _esp_flash_mmap_prefetch_pad_size) + *fill* 0x0000000040187eef 0x10 + 0x0000000040187eff _text_end = ABSOLUTE (.) + 0x0000000040187eff _instruction_reserved_end = ABSOLUTE (.) + 0x0000000040187eff _etext = . + 0x0000000000000000 _flash_cache_start = ABSOLUTE (0x0) + +.phyiram.20 0x0000000040187f00 0x61 + .phyiram.20 0x0000000040187f00 0x61 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x0000000040187f50 i2c_bbpll_init + +.phyiram.18 0x0000000040187f64 0x10e + .phyiram.18 0x0000000040187f64 0x10e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x0000000040187f6c bb_bss_cbw40_ana + +.phyiram.19 0x0000000040188074 0x90 + .phyiram.19 0x0000000040188074 0x90 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x0000000040188078 i2c_bt_filter_set + +.phyiram.17 0x0000000040188104 0x2d7 + .phyiram.17 0x0000000040188104 0x2d7 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x307 (size before relaxing) + 0x0000000040188118 phy_i2c_init + +.phyiram.0 0x00000000401883dc 0x2b + .phyiram.0 0x00000000401883dc 0x2b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x00000000401883e4 ram_bb_bss_cbw40_dig + +.phyiram.1 0x0000000040188408 0x7d + .phyiram.1 0x0000000040188408 0x7d /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x89 (size before relaxing) + 0x000000004018841c ram_cbw2040_cfg + +.phyiram.2 0x0000000040188488 0x21e + .phyiram.2 0x0000000040188488 0x21e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x23a (size before relaxing) + 0x00000000401884c0 ram_spur_coef_cfg + +.phyiram.3 0x00000000401886a8 0xab + .phyiram.3 0x00000000401886a8 0xab /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xb3 (size before relaxing) + 0x00000000401886c8 set_chan_rxcomp + +.phyiram.4 0x0000000040188754 0xff + .phyiram.4 0x0000000040188754 0xff /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x11b (size before relaxing) + 0x0000000040188774 bb_bss_cbw40 + +.phyiram.6 0x0000000040188854 0x83 + .phyiram.6 0x0000000040188854 0x83 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x8b (size before relaxing) + 0x000000004018887c tx_paon_set + +.phyiram.7 0x00000000401888d8 0x1ff + .phyiram.7 0x00000000401888d8 0x1ff /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x22b (size before relaxing) + 0x0000000040188950 agc_reg_init + +.phyiram.8 0x0000000040188ad8 0x177 + .phyiram.8 0x0000000040188ad8 0x177 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x183 (size before relaxing) + 0x0000000040188b40 bb_reg_init + +.phyiram.9 0x0000000040188c50 0x8e + .phyiram.9 0x0000000040188c50 0x8e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xa6 (size before relaxing) + 0x0000000040188c5c mac_enable_bb + +.phyiram.13 0x0000000040188ce0 0xba + .phyiram.13 0x0000000040188ce0 0xba /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xca (size before relaxing) + 0x0000000040188d10 opt_11b_resart + +.phyiram.12 0x0000000040188d9c 0xeb + .phyiram.12 0x0000000040188d9c 0xeb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x117 (size before relaxing) + 0x0000000040188dd8 phy_reg_init + +.phyiram.14 0x0000000040188e88 0x1cb + .phyiram.14 0x0000000040188e88 0x1cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x21b (size before relaxing) + 0x0000000040188eb8 set_chan_reg + +.phyiram.16 0x0000000040189054 0x72 + .phyiram.16 0x0000000040189054 0x72 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x76 (size before relaxing) + 0x000000004018906c i2c_master_reset + +.phyiram.11 0x00000000401890c8 0x78 + .phyiram.11 0x00000000401890c8 0x78 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x7c (size before relaxing) + 0x00000000401890e4 reg_init_begin + +.phyiram.15 0x0000000040189140 0xba + .phyiram.15 0x0000000040189140 0xba /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xde (size before relaxing) + 0x000000004018916c phy_wakeup_init + +.phyiram.21 0x00000000401891fc 0x4a + .phyiram.21 0x00000000401891fc 0x4a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x4e (size before relaxing) + 0x0000000040189210 phy_set_bbfreq_init + +.phyiram.22 0x0000000040189248 0x31 + .phyiram.22 0x0000000040189248 0x31 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x0000000040189254 ram_tx_pwctrl_bg_init + +.phyiram.23 0x000000004018927c 0x103 + .phyiram.23 0x000000004018927c 0x103 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x123 (size before relaxing) + 0x00000000401892ac pwdet_sar2_init + +.phyiram.24 0x0000000040189380 0x87 + .phyiram.24 0x0000000040189380 0x87 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x9f (size before relaxing) + 0x0000000040189398 ram_en_pwdet + +.iram0.text_end + 0x000000004009f6c3 0x1 + 0x000000004009f6c4 . = ALIGN (0x4) + *fill* 0x000000004009f6c3 0x1 + 0x000000004009f6c4 _iram_text_end = ABSOLUTE (.) + +.iram0.data 0x000000004009f6c4 0x0 + 0x000000004009f6c4 . = ALIGN (0x4) + 0x000000004009f6c4 _iram_data_start = ABSOLUTE (.) + *(.iram.data .iram.data.*) + 0x000000004009f6c4 _coredump_iram_start = ABSOLUTE (.) + *(.iram2.coredump .iram2.coredump.*) + 0x000000004009f6c4 _coredump_iram_end = ABSOLUTE (.) + 0x000000004009f6c4 _iram_data_end = ABSOLUTE (.) + +.iram0.bss 0x000000004009f6c4 0x0 + 0x000000004009f6c4 . = ALIGN (0x4) + 0x000000004009f6c4 _iram_bss_start = ABSOLUTE (.) + *(.iram.bss .iram.bss.*) + 0x000000004009f6c4 _iram_bss_end = ABSOLUTE (.) + 0x000000004009f6c4 . = ALIGN (0x4) + 0x000000004009f6c4 _iram_end = ABSOLUTE (.) + +.dram0.heap_start + 0x000000003ffc9550 0x0 + 0x000000003ffc9550 . = ALIGN (0x8) + 0x000000003ffc9550 _heap_low_start = ABSOLUTE (.) + +.xt.prop 0x0000000000000000 0xb664c + *(.xt.prop .gnu.linkonce.prop.*) + .xt.prop 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + 0x24 (size before relaxing) + .xt.prop 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crti.o + .xt.prop 0x0000000000000030 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtbegin.o + 0x150 (size before relaxing) + .xt.prop 0x000000000000003c 0x12c esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .xt.prop 0x0000000000000168 0x480 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0xf90 (size before relaxing) + .xt.prop 0x00000000000005e8 0x324 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x378 (size before relaxing) + .xt.prop 0x000000000000090c 0x24 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + 0x414 (size before relaxing) + .xt.prop 0x0000000000000930 0x24 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + 0x348 (size before relaxing) + .xt.prop 0x0000000000000954 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + 0x384 (size before relaxing) + .xt.prop 0x0000000000000954 0x24 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + 0x3c0 (size before relaxing) + .xt.prop 0x0000000000000978 0x2e8 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .xt.prop 0x0000000000000c60 0xcc esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x138 (size before relaxing) + .xt.prop 0x0000000000000d2c 0x9c esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .xt.prop 0x0000000000000dc8 0x168 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x198 (size before relaxing) + .xt.prop 0x0000000000000f30 0xa8 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .xt.prop 0x0000000000000fd8 0x21c esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x3a8 (size before relaxing) + .xt.prop 0x00000000000011f4 0x48 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .xt.prop 0x000000000000123c 0x24 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .xt.prop 0x0000000000001260 0xc0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .xt.prop 0x0000000000001320 0x354 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x384 (size before relaxing) + .xt.prop 0x0000000000001674 0x114 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x12c (size before relaxing) + .xt.prop 0x0000000000001788 0x2b8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x2f4 (size before relaxing) + .xt.prop 0x0000000000001a40 0x2b8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x2e8 (size before relaxing) + .xt.prop 0x0000000000001cf8 0x78 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x0000000000001d70 0x84 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x0000000000001df4 0x2d0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x2dc (size before relaxing) + .xt.prop 0x00000000000020c4 0x2f4 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x30c (size before relaxing) + .xt.prop 0x00000000000023b8 0x24 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0x30 (size before relaxing) + .xt.prop 0x00000000000023dc 0x21c esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x378 (size before relaxing) + .xt.prop 0x00000000000025f8 0xfc esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .xt.prop 0x00000000000026f4 0x90 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0xfc (size before relaxing) + .xt.prop 0x0000000000002784 0x9c esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x36c (size before relaxing) + .xt.prop 0x0000000000002820 0x3c0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x444 (size before relaxing) + .xt.prop 0x0000000000002be0 0x144 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x2ac (size before relaxing) + .xt.prop 0x0000000000002d24 0x30 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .xt.prop 0x0000000000002d54 0x3f0 esp-idf/log/liblog.a(log.c.obj) + 0x468 (size before relaxing) + .xt.prop 0x0000000000003144 0x168 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x264 (size before relaxing) + .xt.prop 0x00000000000032ac 0x6a8 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xd8c (size before relaxing) + .xt.prop 0x0000000000003954 0x3f0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x3fc (size before relaxing) + .xt.prop 0x0000000000003d44 0x330 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x690 (size before relaxing) + .xt.prop 0x0000000000004074 0xa20 esp-idf/heap/libheap.a(tlsf.c.obj) + 0xfa8 (size before relaxing) + .xt.prop 0x0000000000004a94 0x1ec esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x204 (size before relaxing) + .xt.prop 0x0000000000004c80 0x30 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x0000000000004cb0 0x48 esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x60 (size before relaxing) + .xt.prop 0x0000000000004cf8 0x1bc esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x330 (size before relaxing) + .xt.prop 0x0000000000004eb4 0x1e0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x288 (size before relaxing) + .xt.prop 0x0000000000005094 0xb40 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x102c (size before relaxing) + .xt.prop 0x0000000000005bd4 0x1074 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x10c8 (size before relaxing) + .xt.prop 0x0000000000006c48 0x21c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x2d0 (size before relaxing) + .xt.prop 0x0000000000006e64 0xa8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x354 (size before relaxing) + .xt.prop 0x0000000000006f0c 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + 0x174 (size before relaxing) + .xt.prop 0x0000000000006f30 0x8ac esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xcf0 (size before relaxing) + .xt.prop 0x00000000000077dc 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x0000000000007830 0x2ac esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x33c (size before relaxing) + .xt.prop 0x0000000000007adc 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .xt.prop 0x0000000000007b48 0x150 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x2f4 (size before relaxing) + .xt.prop 0x0000000000007c98 0xcc esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x2a0 (size before relaxing) + .xt.prop 0x0000000000007d64 0x114 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .xt.prop 0x0000000000007e78 0xc9c esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x11ac (size before relaxing) + .xt.prop 0x0000000000008b14 0x1a4c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28a4 (size before relaxing) + .xt.prop 0x000000000000a560 0x384 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4e0 (size before relaxing) + .xt.prop 0x000000000000a8e4 0x180 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xt.prop 0x000000000000aa64 0x3c esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x6c (size before relaxing) + .xt.prop 0x000000000000aaa0 0x144 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x1c8 (size before relaxing) + .xt.prop 0x000000000000abe4 0x54 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x000000000000ac38 0x6c esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x84 (size before relaxing) + .xt.prop 0x000000000000aca4 0xe4 esp-idf/freertos/libfreertos.a(list.c.obj) + .xt.prop 0x000000000000ad88 0x48 esp-idf/newlib/libnewlib.a(abort.c.obj) + .xt.prop 0x000000000000add0 0xcc esp-idf/newlib/libnewlib.a(assert.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x000000000000ae9c 0x174 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x30c (size before relaxing) + .xt.prop 0x000000000000b010 0x45c esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x60c (size before relaxing) + .xt.prop 0x000000000000b46c 0x48 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0xd8 (size before relaxing) + .xt.prop 0x000000000000b4b4 0x30 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x12c (size before relaxing) + .xt.prop 0x000000000000b4e4 0x78 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x84 (size before relaxing) + .xt.prop 0x000000000000b55c 0x60 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x264 (size before relaxing) + .xt.prop 0x000000000000b5bc 0x264 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x4e0 (size before relaxing) + .xt.prop 0x000000000000b820 0x150 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x1a4 (size before relaxing) + .xt.prop 0x000000000000b970 0x24 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x240 (size before relaxing) + .xt.prop 0x000000000000b994 0x7c8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xb94 (size before relaxing) + .xt.prop 0x000000000000c15c 0x9c esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0xc0 (size before relaxing) + .xt.prop 0x000000000000c1f8 0x3c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0xcc (size before relaxing) + .xt.prop 0x000000000000c234 0x2b8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x3e4 (size before relaxing) + .xt.prop 0x000000000000c4ec 0x78 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x1b0 (size before relaxing) + .xt.prop 0x000000000000c564 0xac8 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1fe0 (size before relaxing) + .xt.prop 0x000000000000d02c 0x2f4 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x390 (size before relaxing) + .xt.prop 0x000000000000d320 0x1584 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1818 (size before relaxing) + .xt.prop 0x000000000000e8a4 0x39c esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x474 (size before relaxing) + .xt.prop 0x000000000000ec40 0x60 esp-idf/bt/libbt.a(hli_vectors.S.obj) + .xt.prop 0x000000000000eca0 0x48c esp-idf/bt/libbt.a(hli_api.c.obj) + 0x51c (size before relaxing) + .xt.prop 0x000000000000f12c 0x24 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + 0x78 (size before relaxing) + .xt.prop 0x000000000000f150 0x3e4 esp-idf/main/libmain.a(app_main.c.obj) + 0x3f0 (size before relaxing) + .xt.prop 0x000000000000f534 0x1728 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x1a1c (size before relaxing) + .xt.prop 0x0000000000010c5c 0x324 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + 0x378 (size before relaxing) + .xt.prop 0x0000000000010f80 0x330 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + 0x444 (size before relaxing) + .xt.prop 0x00000000000112b0 0x414 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + 0x420 (size before relaxing) + .xt.prop 0x00000000000116c4 0x3f0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + 0x408 (size before relaxing) + .xt.prop 0x0000000000011ab4 0x2ac esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + 0x2b8 (size before relaxing) + .xt.prop 0x0000000000011d60 0x390 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0xc0c (size before relaxing) + .xt.prop 0x00000000000120f0 0x3f0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0xdc8 (size before relaxing) + .xt.prop 0x00000000000124e0 0x288 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + 0x84c (size before relaxing) + .xt.prop 0x0000000000012768 0xfc esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + 0x258 (size before relaxing) + .xt.prop 0x0000000000012864 0x5f4 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + 0x7e0 (size before relaxing) + .xt.prop 0x0000000000012e58 0x30 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) + .xt.prop 0x0000000000012e88 0x114 esp-idf/protocomm/libprotocomm.a(security0.c.obj) + 0x120 (size before relaxing) + .xt.prop 0x0000000000012f9c 0x66c esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0x684 (size before relaxing) + .xt.prop 0x0000000000013608 0x690 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x6a8 (size before relaxing) + .xt.prop 0x0000000000013c98 0x504 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x618 (size before relaxing) + .xt.prop 0x000000000001419c 0x288 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x30c (size before relaxing) + .xt.prop 0x0000000000014424 0xcb4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0xcd8 (size before relaxing) + .xt.prop 0x00000000000150d8 0x12c esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + 0x540 (size before relaxing) + .xt.prop 0x0000000000015204 0x210 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + 0x8dc (size before relaxing) + .xt.prop 0x0000000000015414 0x210 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + 0x8dc (size before relaxing) + .xt.prop 0x0000000000015624 0x198 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + 0x1ec (size before relaxing) + .xt.prop 0x00000000000157bc 0x138c esp-idf/bt/libbt.a(bt.c.obj) + 0x1848 (size before relaxing) + .xt.prop 0x0000000000016b48 0xb4 esp-idf/bt/libbt.a(addr.c.obj) + 0xc0 (size before relaxing) + .xt.prop 0x0000000000016bfc 0x78 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + 0x348 (size before relaxing) + .xt.prop 0x0000000000016c74 0x228 esp-idf/bt/libbt.a(ble_store_util.c.obj) + 0x2a0 (size before relaxing) + .xt.prop 0x0000000000016e9c 0x474 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0x4e0 (size before relaxing) + .xt.prop 0x0000000000017310 0x96c esp-idf/bt/libbt.a(ble_hs.c.obj) + 0xaf8 (size before relaxing) + .xt.prop 0x0000000000017c7c 0x7a4 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x864 (size before relaxing) + .xt.prop 0x0000000000018420 0xcc esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + 0xfc (size before relaxing) + .xt.prop 0x00000000000184ec 0x2dc esp-idf/bt/libbt.a(ble_att.c.obj) + 0x3d8 (size before relaxing) + .xt.prop 0x00000000000187c8 0x222c esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x3108 (size before relaxing) + .xt.prop 0x000000000001a9f4 0x3cc esp-idf/bt/libbt.a(ble_store.c.obj) + 0x5d0 (size before relaxing) + .xt.prop 0x000000000001adc0 0xc esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) + .xt.prop 0x000000000001adcc 0x7f8 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0xae0 (size before relaxing) + .xt.prop 0x000000000001b5c4 0x18c esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + 0x210 (size before relaxing) + .xt.prop 0x000000000001b750 0xb4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + 0x984 (size before relaxing) + .xt.prop 0x000000000001b804 0x78 esp-idf/bt/libbt.a(ble_hs_log.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x000000000001b87c 0x2dc esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + 0x2e8 (size before relaxing) + .xt.prop 0x000000000001bb58 0x798 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x804 (size before relaxing) + .xt.prop 0x000000000001c2f0 0x1ea8 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x303c (size before relaxing) + .xt.prop 0x000000000001e198 0x294 esp-idf/bt/libbt.a(ble_uuid.c.obj) + 0x42c (size before relaxing) + .xt.prop 0x000000000001e42c 0x1d4 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + 0x2d0 (size before relaxing) + .xt.prop 0x000000000001e600 0x270 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + 0x2d0 (size before relaxing) + .xt.prop 0x000000000001e870 0x408 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x600 (size before relaxing) + .xt.prop 0x000000000001ec78 0x1b0 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + 0x1c8 (size before relaxing) + .xt.prop 0x000000000001ee28 0x156c esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x1a64 (size before relaxing) + .xt.prop 0x0000000000020394 0x54c esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + 0xb70 (size before relaxing) + .xt.prop 0x00000000000208e0 0x6e4 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x7d4 (size before relaxing) + .xt.prop 0x0000000000020fc4 0x120 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + 0x330 (size before relaxing) + .xt.prop 0x00000000000210e4 0x888 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0xa14 (size before relaxing) + .xt.prop 0x000000000002196c 0x5d0 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x684 (size before relaxing) + .xt.prop 0x0000000000021f3c 0x2b8 esp-idf/bt/libbt.a(nimble_port.c.obj) + 0x2d0 (size before relaxing) + .xt.prop 0x00000000000221f4 0xb4 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + 0xd8 (size before relaxing) + .xt.prop 0x00000000000222a8 0x12c esp-idf/bt/libbt.a(endian.c.obj) + 0x2b8 (size before relaxing) + .xt.prop 0x00000000000223d4 0x2e8 esp-idf/bt/libbt.a(os_mempool.c.obj) + 0x48c (size before relaxing) + .xt.prop 0x00000000000226bc 0x90 esp-idf/bt/libbt.a(mem.c.obj) + 0x27c (size before relaxing) + .xt.prop 0x000000000002274c 0xb7c esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0xf9c (size before relaxing) + .xt.prop 0x00000000000232c8 0x150 esp-idf/bt/libbt.a(os_msys_init.c.obj) + 0x15c (size before relaxing) + .xt.prop 0x0000000000023418 0xe10 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0xedc (size before relaxing) + .xt.prop 0x0000000000024228 0x2dc esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + 0x3b4 (size before relaxing) + .xt.prop 0x0000000000024504 0x78 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x000000000002457c 0x39c esp-idf/bt/libbt.a(transport.c.obj) + 0x3e4 (size before relaxing) + .xt.prop 0x0000000000024918 0x648 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x774 (size before relaxing) + .xt.prop 0x0000000000024f60 0x19c8 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x1e54 (size before relaxing) + .xt.prop 0x0000000000026928 0x108 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + 0x138 (size before relaxing) + .xt.prop 0x0000000000026a30 0xf0 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + 0x114 (size before relaxing) + .xt.prop 0x0000000000026b20 0x17b8 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x1c68 (size before relaxing) + .xt.prop 0x00000000000282d8 0xcc esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + 0x180 (size before relaxing) + .xt.prop 0x00000000000283a4 0x468 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x4e0 (size before relaxing) + .xt.prop 0x000000000002880c 0x2ac esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + 0x2c4 (size before relaxing) + .xt.prop 0x0000000000028ab8 0x288 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + 0x2b8 (size before relaxing) + .xt.prop 0x0000000000028d40 0x84 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x0000000000028dc4 0x8c4 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0xa08 (size before relaxing) + .xt.prop 0x0000000000029688 0xd08 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + 0xeac (size before relaxing) + .xt.prop 0x000000000002a390 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(btdm_log.o) + 0x9c (size before relaxing) + .xt.prop 0x000000000002a39c 0x39c /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + 0x3cc (size before relaxing) + .xt.prop 0x000000000002a738 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) + .xt.prop 0x000000000002a774 0x6c /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(co_utils.o) + .xt.prop 0x000000000002a7e0 0x60 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg.o) + .xt.prop 0x000000000002a840 0x288 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg_task.o) + 0x2b8 (size before relaxing) + .xt.prop 0x000000000002aac8 0x4f8 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) + 0x510 (size before relaxing) + .xt.prop 0x000000000002afc0 0x198 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) + 0x1f8 (size before relaxing) + .xt.prop 0x000000000002b158 0x114 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_msg.o) + 0x120 (size before relaxing) + .xt.prop 0x000000000002b26c 0x2b8 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) + 0x2f4 (size before relaxing) + .xt.prop 0x000000000002b524 0x5f4 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) + 0x60c (size before relaxing) + .xt.prop 0x000000000002bb18 0x534 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + 0x594 (size before relaxing) + .xt.prop 0x000000000002c04c 0xa8 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_msg.o) + .xt.prop 0x000000000002c0f4 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke.o) + .xt.prop 0x000000000002c118 0x288 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) + 0x294 (size before relaxing) + .xt.prop 0x000000000002c3a0 0x120 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_lmppdu.o) + 0x150 (size before relaxing) + .xt.prop 0x000000000002c4c0 0x498 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) + 0x4b0 (size before relaxing) + .xt.prop 0x000000000002c958 0xf0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sco.o) + 0x114 (size before relaxing) + .xt.prop 0x000000000002ca48 0x198 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sniff.o) + 0x1a4 (size before relaxing) + .xt.prop 0x000000000002cbe0 0x1a1c /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) + 0x1aac (size before relaxing) + .xt.prop 0x000000000002e5fc 0x9fc /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + 0xa38 (size before relaxing) + .xt.prop 0x000000000002eff8 0x8d0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + 0x924 (size before relaxing) + .xt.prop 0x000000000002f8c8 0x150 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_inq.o) + .xt.prop 0x000000000002fa18 0xf0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld.o) + .xt.prop 0x000000000002fb08 0x120 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_pscan.o) + .xt.prop 0x000000000002fc28 0xc0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sched.o) + .xt.prop 0x000000000002fce8 0x6c /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sscan.o) + .xt.prop 0x000000000002fd54 0x4c8 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) + 0x4e0 (size before relaxing) + .xt.prop 0x000000000003021c 0x4c8 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) + .xt.prop 0x00000000000306e4 0x1c8 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) + 0x1ec (size before relaxing) + .xt.prop 0x00000000000308ac 0x138 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_task.o) + .xt.prop 0x00000000000309e4 0x1a4 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_util.o) + 0x1b0 (size before relaxing) + .xt.prop 0x0000000000030b88 0x13c8 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + 0x1488 (size before relaxing) + .xt.prop 0x0000000000031f50 0x78c /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + 0x7d4 (size before relaxing) + .xt.prop 0x00000000000326dc 0x7e0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + 0x810 (size before relaxing) + .xt.prop 0x0000000000032ebc 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_util.o) + .xt.prop 0x0000000000032f04 0x960 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_hci.o) + 0x990 (size before relaxing) + .xt.prop 0x0000000000033864 0xf78 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + 0x1020 (size before relaxing) + .xt.prop 0x00000000000347dc 0x150 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_task.o) + .xt.prop 0x000000000003492c 0x174 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) + 0x180 (size before relaxing) + .xt.prop 0x0000000000034aa0 0x180 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) + 0x198 (size before relaxing) + .xt.prop 0x0000000000034c20 0x9e4 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + 0xa2c (size before relaxing) + .xt.prop 0x0000000000035604 0x90 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) + .xt.prop 0x0000000000035694 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(osi.o) + 0x54 (size before relaxing) + .xt.prop 0x00000000000356dc 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) + .xt.prop 0x00000000000356e8 0x63c /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + 0x678 (size before relaxing) + .xt.prop 0x0000000000035d24 0x654 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) + 0x684 (size before relaxing) + .xt.prop 0x0000000000036378 0x630 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) + 0x654 (size before relaxing) + .xt.prop 0x00000000000369a8 0x39c /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + 0x3cc (size before relaxing) + .xt.prop 0x0000000000036d44 0x180 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(sdk_config.o) + 0x1d4 (size before relaxing) + .xt.prop 0x0000000000036ec4 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(syscntl.o) + .xt.prop 0x0000000000036ee8 0xfc /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + 0x108 (size before relaxing) + .xt.prop 0x0000000000036fe4 0xe4 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vflash.o) + 0x120 (size before relaxing) + .xt.prop 0x00000000000370c8 0x498 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + 0x4f8 (size before relaxing) + .xt.prop 0x0000000000037560 0x2b8 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) + 0x2d0 (size before relaxing) + .xt.prop 0x0000000000037818 0x90 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_sp.o) + .xt.prop 0x00000000000378a8 0xcc /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ecc_p256.o) + .xt.prop 0x0000000000037974 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(emi.o) + .xt.prop 0x0000000000037998 0x1bc /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(intc.o) + 0x1e0 (size before relaxing) + .xt.prop 0x0000000000037b54 0x3c /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(led.o) + .xt.prop 0x0000000000037b90 0xb4 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ll.o) + .xt.prop 0x0000000000037c44 0x3024 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x4128 (size before relaxing) + .xt.prop 0x000000000003ac68 0xe70 esp-idf/json/libjson.a(cJSON.c.obj) + 0x3228 (size before relaxing) + .xt.prop 0x000000000003bad8 0x180 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + .xt.prop 0x000000000003bc58 0x16a4 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x186c (size before relaxing) + .xt.prop 0x000000000003d2fc 0xfc esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .xt.prop 0x000000000003d3f8 0x54 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .xt.prop 0x000000000003d44c 0xfc esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x180 (size before relaxing) + .xt.prop 0x000000000003d548 0x4a4 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x558 (size before relaxing) + .xt.prop 0x000000000003d9ec 0xfc esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x5f4 (size before relaxing) + .xt.prop 0x000000000003dae8 0x3e4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x9c0 (size before relaxing) + .xt.prop 0x000000000003decc 0x60 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + 0x5dc (size before relaxing) + .xt.prop 0x000000000003df2c 0x78 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x9d8 (size before relaxing) + .xt.prop 0x000000000003dfa4 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x48c (size before relaxing) + .xt.prop 0x000000000003dfd4 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x1c44 (size before relaxing) + .xt.prop 0x000000000003dfd4 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0xad4 (size before relaxing) + .xt.prop 0x000000000003dfd4 0x69c esp-idf/driver/libdriver.a(uart.c.obj) + 0x2304 (size before relaxing) + .xt.prop 0x000000000003e670 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x000000000003e694 0x168 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x6fc (size before relaxing) + .xt.prop 0x000000000003e7fc 0x300 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x654 (size before relaxing) + .xt.prop 0x000000000003eafc 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x60 (size before relaxing) + .xt.prop 0x000000000003eb20 0x24 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x24c (size before relaxing) + .xt.prop 0x000000000003eb44 0xbf4 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xf9c (size before relaxing) + .xt.prop 0x000000000003f738 0xc esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .xt.prop 0x000000000003f744 0x6c esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x000000000003f7b0 0xc0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0xcc (size before relaxing) + .xt.prop 0x000000000003f870 0x3a8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x42c (size before relaxing) + .xt.prop 0x000000000003fc18 0x24c esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x534 (size before relaxing) + .xt.prop 0x000000000003fe64 0x15c esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x1bc (size before relaxing) + .xt.prop 0x000000000003ffc0 0xa80 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x1188 (size before relaxing) + .xt.prop 0x0000000000040a40 0xcc esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x390 (size before relaxing) + .xt.prop 0x0000000000040b0c 0x2f4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x588 (size before relaxing) + .xt.prop 0x0000000000040e00 0x84 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x0000000000040e84 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .xt.prop 0x0000000000040e9c 0xad4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xb58 (size before relaxing) + .xt.prop 0x0000000000041970 0xfc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x108 (size before relaxing) + .xt.prop 0x0000000000041a6c 0x90 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .xt.prop 0x0000000000041afc 0x18c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x1a4 (size before relaxing) + .xt.prop 0x0000000000041c88 0x2ac esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x2f4 (size before relaxing) + .xt.prop 0x0000000000041f34 0x1f8 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x384 (size before relaxing) + .xt.prop 0x000000000004212c 0x60 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x000000000004218c 0x18c esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x210 (size before relaxing) + .xt.prop 0x0000000000042318 0x1f8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x210 (size before relaxing) + .xt.prop 0x0000000000042510 0x6fc esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xc84 (size before relaxing) + .xt.prop 0x0000000000042c0c 0x120 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x1ec (size before relaxing) + .xt.prop 0x0000000000042d2c 0x24 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0x30 (size before relaxing) + .xt.prop 0x0000000000042d50 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x0000000000042d80 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0xc48 (size before relaxing) + .xt.prop 0x0000000000042d80 0x5e8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x924 (size before relaxing) + .xt.prop 0x0000000000043368 0x1a4 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x1bc (size before relaxing) + .xt.prop 0x000000000004350c 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + 0x504 (size before relaxing) + .xt.prop 0x000000000004350c 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x000000000004350c 0x1bc esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x69c (size before relaxing) + .xt.prop 0x00000000000436c8 0x1c8 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x1ec (size before relaxing) + .xt.prop 0x0000000000043890 0x468 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4ec (size before relaxing) + .xt.prop 0x0000000000043cf8 0x1bc esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x1e0 (size before relaxing) + .xt.prop 0x0000000000043eb4 0xc esp-idf/soc/libsoc.a(interrupts.c.obj) + .xt.prop 0x0000000000043ec0 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x24 (size before relaxing) + .xt.prop 0x0000000000043ec0 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) + 0xc (size before relaxing) + .xt.prop 0x0000000000043ec0 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + 0xc (size before relaxing) + .xt.prop 0x0000000000043ec0 0x18 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .xt.prop 0x0000000000043ed8 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x78 (size before relaxing) + .xt.prop 0x0000000000043f08 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .xt.prop 0x0000000000043f5c 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .xt.prop 0x0000000000043fec 0x354 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x540 (size before relaxing) + .xt.prop 0x0000000000044340 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + 0x84 (size before relaxing) + .xt.prop 0x000000000004437c 0x228 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .xt.prop 0x00000000000445a4 0x2ac esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .xt.prop 0x0000000000044850 0x318 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x51c (size before relaxing) + .xt.prop 0x0000000000044b68 0x78 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0xe4 (size before relaxing) + .xt.prop 0x0000000000044be0 0x168 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x1c8 (size before relaxing) + .xt.prop 0x0000000000044d48 0x120 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x264 (size before relaxing) + .xt.prop 0x0000000000044e68 0xad4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0xe64 (size before relaxing) + .xt.prop 0x000000000004593c 0x7ec esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x141c (size before relaxing) + .xt.prop 0x0000000000046128 0xca8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xf18 (size before relaxing) + .xt.prop 0x0000000000046dd0 0x39c esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x510 (size before relaxing) + .xt.prop 0x000000000004716c 0x174 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x1bc (size before relaxing) + .xt.prop 0x00000000000472e0 0x3b4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x498 (size before relaxing) + .xt.prop 0x0000000000047694 0x234 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x24c (size before relaxing) + .xt.prop 0x00000000000478c8 0x1260 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x1560 (size before relaxing) + .xt.prop 0x0000000000048b28 0x3a8 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x42c (size before relaxing) + .xt.prop 0x0000000000048ed0 0x78 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + 0x108 (size before relaxing) + .xt.prop 0x0000000000048f48 0x6c esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x90 (size before relaxing) + .xt.prop 0x0000000000048fb4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + 0x198 (size before relaxing) + .xt.prop 0x0000000000048fb4 0x5a0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x66c (size before relaxing) + .xt.prop 0x0000000000049554 0x360 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x3c0 (size before relaxing) + .xt.prop 0x00000000000498b4 0x1470 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x2b68 (size before relaxing) + .xt.prop 0x000000000004ad24 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x12c (size before relaxing) + .xt.prop 0x000000000004ae14 0xcc esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0xd8 (size before relaxing) + .xt.prop 0x000000000004aee0 0x9c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x000000000004af7c 0x5ac esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0xc3c (size before relaxing) + .xt.prop 0x000000000004b528 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .xt.prop 0x000000000004b5ac 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + 0x78 (size before relaxing) + .xt.prop 0x000000000004b618 0x9c esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x000000000004b6b4 0x9c esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x108 (size before relaxing) + .xt.prop 0x000000000004b750 0x1a4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x39c (size before relaxing) + .xt.prop 0x000000000004b8f4 0x66c esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0xc48 (size before relaxing) + .xt.prop 0x000000000004bf60 0x2f4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x330 (size before relaxing) + .xt.prop 0x000000000004c254 0x24 esp-idf/esp_coex/libesp_coex.a(coexist.c.obj) + 0x60 (size before relaxing) + .xt.prop 0x000000000004c278 0x228 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x258 (size before relaxing) + .xt.prop 0x000000000004c4a0 0x39c esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x690 (size before relaxing) + .xt.prop 0x000000000004c83c 0x228 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x2a0 (size before relaxing) + .xt.prop 0x000000000004ca64 0xaf8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xcc0 (size before relaxing) + .xt.prop 0x000000000004d55c 0x138c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x1cc8 (size before relaxing) + .xt.prop 0x000000000004e8e8 0x78c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0xb4c (size before relaxing) + .xt.prop 0x000000000004f074 0x81c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0xff0 (size before relaxing) + .xt.prop 0x000000000004f890 0x72c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8a0 (size before relaxing) + .xt.prop 0x000000000004ffbc 0x354 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x5ac (size before relaxing) + .xt.prop 0x0000000000050310 0x3d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x8f4 (size before relaxing) + .xt.prop 0x00000000000506e8 0x420 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x8a0 (size before relaxing) + .xt.prop 0x0000000000050b08 0x2c4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x690 (size before relaxing) + .xt.prop 0x0000000000050dcc 0x1bb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x25c8 (size before relaxing) + .xt.prop 0x0000000000052980 0x2afc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x2b74 (size before relaxing) + .xt.prop 0x000000000005547c 0x228 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x5d0 (size before relaxing) + .xt.prop 0x00000000000556a4 0x9fc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0xe64 (size before relaxing) + .xt.prop 0x00000000000560a0 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0xfc (size before relaxing) + .xt.prop 0x00000000000560d0 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x33c (size before relaxing) + .xt.prop 0x00000000000561c0 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x0000000000056238 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x174 (size before relaxing) + .xt.prop 0x0000000000056280 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x138 (size before relaxing) + .xt.prop 0x00000000000562b0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x1f8 (size before relaxing) + .xt.prop 0x00000000000562f8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x1f8 (size before relaxing) + .xt.prop 0x0000000000056340 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x0000000000056364 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x60 (size before relaxing) + .xt.prop 0x00000000000563ac 0x24c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x27c (size before relaxing) + .xt.prop 0x00000000000565f8 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0xe4 (size before relaxing) + .xt.prop 0x00000000000566b8 0x594 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x798 (size before relaxing) + .xt.prop 0x0000000000056c4c 0x498 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x51c (size before relaxing) + .xt.prop 0x00000000000570e4 0xfc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x1f8 (size before relaxing) + .xt.prop 0x00000000000571e0 0x2a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x33c (size before relaxing) + .xt.prop 0x0000000000057480 0x33c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x3d8 (size before relaxing) + .xt.prop 0x00000000000577bc 0x708 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x7a4 (size before relaxing) + .xt.prop 0x0000000000057ec4 0x57c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x5f4 (size before relaxing) + .xt.prop 0x0000000000058440 0xe4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x15c (size before relaxing) + .xt.prop 0x0000000000058524 0x498 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x7c8 (size before relaxing) + .xt.prop 0x00000000000589bc 0x3a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x7e0 (size before relaxing) + .xt.prop 0x0000000000058d64 0x288 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x93c (size before relaxing) + .xt.prop 0x0000000000058fec 0x24c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0xcb4 (size before relaxing) + .xt.prop 0x0000000000059238 0x294 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x2e8 (size before relaxing) + .xt.prop 0x00000000000594cc 0x300 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + 0x624 (size before relaxing) + .xt.prop 0x00000000000597cc 0x798 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0x804 (size before relaxing) + .xt.prop 0x0000000000059f64 0x1ec /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) + 0x21c (size before relaxing) + .xt.prop 0x000000000005a150 0xe7c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x1104 (size before relaxing) + .xt.prop 0x000000000005afcc 0x228 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + 0x2a0 (size before relaxing) + .xt.prop 0x000000000005b1f4 0x45c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + 0x4d4 (size before relaxing) + .xt.prop 0x000000000005b650 0x1368 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x49bc (size before relaxing) + .xt.prop 0x000000000005c9b8 0x6e4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x93c (size before relaxing) + .xt.prop 0x000000000005d09c 0x30c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x390 (size before relaxing) + .xt.prop 0x000000000005d3a8 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + 0xc0 (size before relaxing) + .xt.prop 0x000000000005d3f0 0x90 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + 0x9c (size before relaxing) + .xt.prop 0x000000000005d480 0x1854 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x19b0 (size before relaxing) + .xt.prop 0x000000000005ecd4 0x198c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x1bf0 (size before relaxing) + .xt.prop 0x0000000000060660 0x60 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + 0x168 (size before relaxing) + .xt.prop 0x00000000000606c0 0x1554 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x1638 (size before relaxing) + .xt.prop 0x0000000000061c14 0x22c8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x48fc (size before relaxing) + .xt.prop 0x0000000000063edc 0x90 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x2b8 (size before relaxing) + .xt.prop 0x0000000000063f6c 0x15c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x984 (size before relaxing) + .xt.prop 0x00000000000640c8 0x39c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x1d28 (size before relaxing) + .xt.prop 0x0000000000064464 0x204 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x1440 (size before relaxing) + .xt.prop 0x0000000000064668 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + 0xd74 (size before relaxing) + .xt.prop 0x0000000000064668 0x924 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0xac8 (size before relaxing) + .xt.prop 0x0000000000064f8c 0x22bc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x2988 (size before relaxing) + .xt.prop 0x0000000000067248 0x2a0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x300 (size before relaxing) + .xt.prop 0x00000000000674e8 0x4b0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x5ac (size before relaxing) + .xt.prop 0x0000000000067998 0x168 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x258 (size before relaxing) + .xt.prop 0x0000000000067b00 0x114 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + 0x1e0 (size before relaxing) + .xt.prop 0x0000000000067c14 0x300 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x414 (size before relaxing) + .xt.prop 0x0000000000067f14 0x6c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + 0x138 (size before relaxing) + .xt.prop 0x0000000000067f80 0x1968 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x1b84 (size before relaxing) + .xt.prop 0x00000000000698e8 0x1cc8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x1e00 (size before relaxing) + .xt.prop 0x000000000006b5b0 0x129c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1c98 (size before relaxing) + .xt.prop 0x000000000006c84c 0x87c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x9fc (size before relaxing) + .xt.prop 0x000000000006d0c8 0x558 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x5dc (size before relaxing) + .xt.prop 0x000000000006d620 0x213c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x2574 (size before relaxing) + .xt.prop 0x000000000006f75c 0x9c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + 0x27c (size before relaxing) + .xt.prop 0x000000000006f7f8 0x474 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x4f8 (size before relaxing) + .xt.prop 0x000000000006fc6c 0x108 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + 0x42c (size before relaxing) + .xt.prop 0x000000000006fd74 0x27c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x2ac (size before relaxing) + .xt.prop 0x000000000006fff0 0xd8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + 0xf0 (size before relaxing) + .xt.prop 0x00000000000700c8 0xc0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + 0xcc (size before relaxing) + .xt.prop 0x0000000000070188 0x78 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .xt.prop 0x0000000000070200 0x528 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x5e8 (size before relaxing) + .xt.prop 0x0000000000070728 0xb04 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x147c (size before relaxing) + .xt.prop 0x000000000007122c 0x13c8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x1878 (size before relaxing) + .xt.prop 0x00000000000725f4 0x2760 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x2df0 (size before relaxing) + .xt.prop 0x0000000000074d54 0x24fc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x2da8 (size before relaxing) + .xt.prop 0x0000000000077250 0xb4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x3fc (size before relaxing) + .xt.prop 0x0000000000077304 0x2f4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x360 (size before relaxing) + .xt.prop 0x00000000000775f8 0x120 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x198 (size before relaxing) + .xt.prop 0x0000000000077718 0x1944 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x207c (size before relaxing) + .xt.prop 0x000000000007905c 0x18e4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x1d58 (size before relaxing) + .xt.prop 0x000000000007a940 0x108 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + 0x12c (size before relaxing) + .xt.prop 0x000000000007aa48 0x228 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0x270 (size before relaxing) + .xt.prop 0x000000000007ac70 0x8b8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0xb28 (size before relaxing) + .xt.prop 0x000000000007b528 0xf0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .xt.prop 0x000000000007b618 0x300 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x30c (size before relaxing) + .xt.prop 0x000000000007b918 0x114 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .xt.prop 0x000000000007ba2c 0x60 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + 0xc0 (size before relaxing) + .xt.prop 0x000000000007ba8c 0x444 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x189c (size before relaxing) + .xt.prop 0x000000000007bed0 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + 0x108 (size before relaxing) + .xt.prop 0x000000000007bed0 0xc esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + 0x8e8 (size before relaxing) + .xt.prop 0x000000000007bedc 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + 0xe34 (size before relaxing) + .xt.prop 0x000000000007bedc 0x3c0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x6fc (size before relaxing) + .xt.prop 0x000000000007c29c 0x450 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x504 (size before relaxing) + .xt.prop 0x000000000007c6ec 0x84 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0xe7c (size before relaxing) + .xt.prop 0x000000000007c770 0x9c esp-idf/hal/libhal.a(mpu_hal.c.obj) + .xt.prop 0x000000000007c80c 0x3a8 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x3b4 (size before relaxing) + .xt.prop 0x000000000007cbb4 0x324 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x3c0 (size before relaxing) + .xt.prop 0x000000000007ced8 0x234 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x240 (size before relaxing) + .xt.prop 0x000000000007d10c 0xfc esp-idf/hal/libhal.a(aes_hal.c.obj) + .xt.prop 0x000000000007d208 0x3c esp-idf/soc/libsoc.a(dport_access_common.c.obj) + 0x48 (size before relaxing) + .xt.prop 0x000000000007d244 0x18 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .xt.prop 0x000000000007d25c 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x1104 (size before relaxing) + .xt.prop 0x000000000007d2e0 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + 0x228 (size before relaxing) + .xt.prop 0x000000000007d2e0 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + 0x3b4 (size before relaxing) + .xt.prop 0x000000000007d2e0 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x6c (size before relaxing) + .xt.prop 0x000000000007d340 0xfc esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x2ac (size before relaxing) + .xt.prop 0x000000000007d43c 0x11d0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x38b8 (size before relaxing) + .xt.prop 0x000000000007e60c 0x3d8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x5d0 (size before relaxing) + .xt.prop 0x000000000007e9e4 0x54 esp-idf/lwip/liblwip.a(def.c.obj) + 0x27c (size before relaxing) + .xt.prop 0x000000000007ea38 0x84 esp-idf/lwip/liblwip.a(dns.c.obj) + 0xf90 (size before relaxing) + .xt.prop 0x000000000007eabc 0x24 esp-idf/lwip/liblwip.a(init.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x000000000007eae0 0x6c esp-idf/lwip/liblwip.a(ip.c.obj) + 0x1bc (size before relaxing) + .xt.prop 0x000000000007eb4c 0x120 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x12c (size before relaxing) + .xt.prop 0x000000000007ec6c 0x240 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x30c (size before relaxing) + .xt.prop 0x000000000007eeac 0xccc esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1128 (size before relaxing) + .xt.prop 0x000000000007fb78 0xc90 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x108c (size before relaxing) + .xt.prop 0x0000000000080808 0x7b0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0xb4c (size before relaxing) + .xt.prop 0x0000000000080fb8 0x14c4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x2088 (size before relaxing) + .xt.prop 0x000000000008247c 0x1404 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x1410 (size before relaxing) + .xt.prop 0x0000000000083880 0x105c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1068 (size before relaxing) + .xt.prop 0x00000000000848dc 0x360 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x42c (size before relaxing) + .xt.prop 0x0000000000084c3c 0x1188 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x123c (size before relaxing) + .xt.prop 0x0000000000085dc4 0x144c esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x1578 (size before relaxing) + .xt.prop 0x0000000000087210 0x8e8 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xa14 (size before relaxing) + .xt.prop 0x0000000000087af8 0x180 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x18c (size before relaxing) + .xt.prop 0x0000000000087c78 0x7c8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x858 (size before relaxing) + .xt.prop 0x0000000000088440 0x54c esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x618 (size before relaxing) + .xt.prop 0x000000000008898c 0x138 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x4f8 (size before relaxing) + .xt.prop 0x0000000000088ac4 0xe4 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .xt.prop 0x0000000000088ba8 0x210 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x324 (size before relaxing) + .xt.prop 0x0000000000088db8 0xc9c esp-idf/lwip/liblwip.a(ip6.c.obj) + 0xd44 (size before relaxing) + .xt.prop 0x0000000000089a54 0xc esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + 0x558 (size before relaxing) + .xt.prop 0x0000000000089a60 0xd8 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .xt.prop 0x0000000000089b38 0x6c0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x744 (size before relaxing) + .xt.prop 0x000000000008a1f8 0x1af4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1bcc (size before relaxing) + .xt.prop 0x000000000008bcec 0x138 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .xt.prop 0x000000000008be24 0x90 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .xt.prop 0x000000000008beb4 0x114 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x18c (size before relaxing) + .xt.prop 0x000000000008bfc8 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + 0x294 (size before relaxing) + .xt.prop 0x000000000008bfc8 0x72c esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x8dc (size before relaxing) + .xt.prop 0x000000000008c6f4 0x174 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x1bc (size before relaxing) + .xt.prop 0x000000000008c868 0xbf4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xeb8 (size before relaxing) + .xt.prop 0x000000000008d45c 0x804 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xf90 (size before relaxing) + .xt.prop 0x000000000008dc60 0xf30 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1a34 (size before relaxing) + .xt.prop 0x000000000008eb90 0x54 esp-idf/lwip/liblwip.a(err.c.obj) + .xt.prop 0x000000000008ebe4 0xf0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x30c (size before relaxing) + .xt.prop 0x000000000008ecd4 0x1c8 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x36c (size before relaxing) + .xt.prop 0x000000000008ee9c 0x12c esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x210 (size before relaxing) + .xt.prop 0x000000000008efc8 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x000000000008efd4 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + 0x60 (size before relaxing) + .xt.prop 0x000000000008efec 0x1bc esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x240 (size before relaxing) + .xt.prop 0x000000000008f1a8 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + 0x18c (size before relaxing) + .xt.prop 0x000000000008f1a8 0x78 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x84 (size before relaxing) + .xt.prop 0x000000000008f220 0x510 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x5e8 (size before relaxing) + .xt.prop 0x000000000008f730 0x204 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x2d0 (size before relaxing) + .xt.prop 0x000000000008f934 0x9f0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0xa8c (size before relaxing) + .xt.prop 0x0000000000090324 0x9c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x00000000000903c0 0x348 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x384 (size before relaxing) + .xt.prop 0x0000000000090708 0x9d8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x1404 (size before relaxing) + .xt.prop 0x00000000000910e0 0x384 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x648 (size before relaxing) + .xt.prop 0x0000000000091464 0x1f8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x4b0 (size before relaxing) + .xt.prop 0x000000000009165c 0x1c5c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x1f8c (size before relaxing) + .xt.prop 0x00000000000932b8 0x81c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x870 (size before relaxing) + .xt.prop 0x0000000000093ad4 0x42c esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x594 (size before relaxing) + .xt.prop 0x0000000000093f00 0x180 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x2dc (size before relaxing) + .xt.prop 0x0000000000094080 0xac8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0xb04 (size before relaxing) + .xt.prop 0x0000000000094b48 0x1a4 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x1d4 (size before relaxing) + .xt.prop 0x0000000000094cec 0x2118 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x23b8 (size before relaxing) + .xt.prop 0x0000000000096e04 0x390 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x438 (size before relaxing) + .xt.prop 0x0000000000097194 0xedc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x1260 (size before relaxing) + .xt.prop 0x0000000000098070 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .xt.prop 0x0000000000098118 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + 0x1b0 (size before relaxing) + .xt.prop 0x00000000000981a8 0x1fec esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x22bc (size before relaxing) + .xt.prop 0x000000000009a194 0x63c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x66c (size before relaxing) + .xt.prop 0x000000000009a7d0 0x120 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x360 (size before relaxing) + .xt.prop 0x000000000009a8f0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + 0x12c (size before relaxing) + .xt.prop 0x000000000009a8f0 0x888 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0xa14 (size before relaxing) + .xt.prop 0x000000000009b178 0x564 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x744 (size before relaxing) + .xt.prop 0x000000000009b6dc 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + 0xcc (size before relaxing) + .xt.prop 0x000000000009b70c 0xcc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + 0x360 (size before relaxing) + .xt.prop 0x000000000009b7d8 0x1e0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x264 (size before relaxing) + .xt.prop 0x000000000009b9b8 0x510 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x6cc (size before relaxing) + .xt.prop 0x000000000009bec8 0x240 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + 0x2f4 (size before relaxing) + .xt.prop 0x000000000009c108 0x1d4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + 0x558 (size before relaxing) + .xt.prop 0x000000000009c2dc 0x540 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x66c (size before relaxing) + .xt.prop 0x000000000009c81c 0x1c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x738 (size before relaxing) + .xt.prop 0x000000000009c9e4 0x870 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x9f0 (size before relaxing) + .xt.prop 0x000000000009d254 0x294 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x6c0 (size before relaxing) + .xt.prop 0x000000000009d4e8 0x1d4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0xa38 (size before relaxing) + .xt.prop 0x000000000009d6bc 0x5b8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x978 (size before relaxing) + .xt.prop 0x000000000009dc74 0x6e4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0xf90 (size before relaxing) + .xt.prop 0x000000000009e358 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x408 (size before relaxing) + .xt.prop 0x000000000009e358 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + 0x6f3c (size before relaxing) + .xt.prop 0x000000000009e358 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + 0xfc (size before relaxing) + .xt.prop 0x000000000009e358 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + 0x1044 (size before relaxing) + .xt.prop 0x000000000009e358 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + 0x6a8 (size before relaxing) + .xt.prop 0x000000000009e358 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + 0x6cc (size before relaxing) + .xt.prop 0x000000000009e358 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + 0xa20 (size before relaxing) + .xt.prop 0x000000000009e358 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + 0x69c (size before relaxing) + .xt.prop 0x000000000009e358 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + 0x5f4 (size before relaxing) + .xt.prop 0x000000000009e358 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + 0x468 (size before relaxing) + .xt.prop 0x000000000009e358 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + 0x324 (size before relaxing) + .xt.prop 0x000000000009e358 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + 0x264 (size before relaxing) + .xt.prop 0x000000000009e358 0x1248 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1ac4 (size before relaxing) + .xt.prop 0x000000000009f5a0 0x438 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x468 (size before relaxing) + .xt.prop 0x000000000009f9d8 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + 0x15c (size before relaxing) + .xt.prop 0x000000000009fa38 0x45c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x534 (size before relaxing) + .xt.prop 0x000000000009fe94 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x3fc (size before relaxing) + .xt.prop 0x000000000009fe94 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + 0x51c (size before relaxing) + .xt.prop 0x000000000009fe94 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + 0x600 (size before relaxing) + .xt.prop 0x000000000009fe94 0x1c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x384 (size before relaxing) + .xt.prop 0x00000000000a005c 0xe4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x144 (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x4c14 (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + 0x444 (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0xaf8 (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x375c (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + 0x378 (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + 0x744 (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + 0x13a4 (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + 0x4ec (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x6b04 (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x1860 (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x30e4 (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + 0x210 (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + 0x510 (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + 0x570 (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + 0x600 (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x354 (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x27c (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0xbd0 (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + 0x12c (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x96c (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0xd8 (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + 0x60 (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + 0x1f8 (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + 0x120 (size before relaxing) + .xt.prop 0x00000000000a0140 0x0 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + 0xc (size before relaxing) + .xt.prop 0x00000000000a0140 0x54 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .xt.prop 0x00000000000a0194 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + 0x3c (size before relaxing) + .xt.prop 0x00000000000a0194 0xe4 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + 0xf0 (size before relaxing) + .xt.prop 0x00000000000a0278 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .xt.prop 0x00000000000a029c 0xc /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .xt.prop 0x00000000000a02a8 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .xt.prop 0x00000000000a02cc 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .xt.prop 0x00000000000a02f0 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + 0x30 (size before relaxing) + .xt.prop 0x00000000000a0314 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opvs.o) + 0x30 (size before relaxing) + .xt.prop 0x00000000000a0338 0x3c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + 0x78 (size before relaxing) + .xt.prop 0x00000000000a0374 0x60 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + 0x6c (size before relaxing) + .xt.prop 0x00000000000a03d4 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + 0x30 (size before relaxing) + .xt.prop 0x00000000000a03f8 0x114 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + 0x1a4 (size before relaxing) + .xt.prop 0x00000000000a050c 0x12c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x168 (size before relaxing) + .xt.prop 0x00000000000a0638 0xc0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x18c (size before relaxing) + .xt.prop 0x00000000000a06f8 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + .xt.prop 0x00000000000a0704 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opv.o) + 0x30 (size before relaxing) + .xt.prop 0x00000000000a0728 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + .xt.prop 0x00000000000a0734 0x54 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + .xt.prop 0x00000000000a0788 0x168 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x198 (size before relaxing) + .xt.prop 0x00000000000a08f0 0x48 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + 0xcc (size before relaxing) + .xt.prop 0x00000000000a0938 0x78 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + 0x90 (size before relaxing) + .xt.prop 0x00000000000a09b0 0x174 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x1b0 (size before relaxing) + .xt.prop 0x00000000000a0b24 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + 0x30 (size before relaxing) + .xt.prop 0x00000000000a0b48 0x270 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x3c0 (size before relaxing) + .xt.prop 0x00000000000a0db8 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + 0x1f8 (size before relaxing) + .xt.prop 0x00000000000a0ddc 0x90 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + 0x108 (size before relaxing) + .xt.prop 0x00000000000a0e6c 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divsf3.o) + .xt.prop 0x00000000000a0e90 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdisf.o) + 0x90 (size before relaxing) + .xt.prop 0x00000000000a0e90 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_addsubdf3.o) + 0x420 (size before relaxing) + .xt.prop 0x00000000000a0e90 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_muldf3.o) + 0x228 (size before relaxing) + .xt.prop 0x00000000000a0e90 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdf3.o) + 0x264 (size before relaxing) + .xt.prop 0x00000000000a0e90 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_cmpdf2.o) + 0x288 (size before relaxing) + .xt.prop 0x00000000000a0e90 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfsi.o) + 0x6c (size before relaxing) + .xt.prop 0x00000000000a0e90 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + 0xa8 (size before relaxing) + .xt.prop 0x00000000000a0e90 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatsidf.o) + 0x54 (size before relaxing) + .xt.prop 0x00000000000a0e90 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + 0x6c (size before relaxing) + .xt.prop 0x00000000000a0e90 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_ffsdi2.o) + 0x48 (size before relaxing) + .xt.prop 0x00000000000a0e90 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_popcountsi2.o) + 0x30 (size before relaxing) + .xt.prop 0x00000000000a0e90 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdi3.o) + 0x198 (size before relaxing) + .xt.prop 0x00000000000a0e90 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_moddi3.o) + 0x144 (size before relaxing) + .xt.prop 0x00000000000a0e90 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_udivdi3.o) + 0x180 (size before relaxing) + .xt.prop 0x00000000000a0e90 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_umoddi3.o) + 0x138 (size before relaxing) + .xt.prop 0x00000000000a0e90 0x78 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x384 (size before relaxing) + .xt.prop 0x00000000000a0f08 0x24 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + 0x90 (size before relaxing) + .xt.prop 0x00000000000a0f2c 0x15a8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x1a10 (size before relaxing) + .xt.prop 0x00000000000a24d4 0x207c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x30c0 (size before relaxing) + .xt.prop 0x00000000000a4550 0x192c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x1bf0 (size before relaxing) + .xt.prop 0x00000000000a5e7c 0x198 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + 0x3e4 (size before relaxing) + .xt.prop 0x00000000000a6014 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + 0x630 (size before relaxing) + .xt.prop 0x00000000000a6044 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + 0xc6c (size before relaxing) + .xt.prop 0x00000000000a6044 0xe4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_ceil.o) + .xt.prop 0x00000000000a6128 0xa8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_floor.o) + 0xb4 (size before relaxing) + .xt.prop 0x00000000000a61d0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + 0x48 (size before relaxing) + .xt.prop 0x00000000000a61d0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + 0x30 (size before relaxing) + .xt.prop 0x00000000000a61d0 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .xt.prop 0x00000000000a6200 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + 0x108 (size before relaxing) + .xt.prop 0x00000000000a6200 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + 0x84 (size before relaxing) + .xt.prop 0x00000000000a6200 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + 0x1ec (size before relaxing) + .xt.prop 0x00000000000a6200 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + 0xfc (size before relaxing) + .xt.prop 0x00000000000a6200 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + 0x210 (size before relaxing) + .xt.prop 0x00000000000a6200 0x90 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .xt.prop 0x00000000000a6290 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + 0x48 (size before relaxing) + .xt.prop 0x00000000000a6290 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + 0x9c (size before relaxing) + .xt.prop 0x00000000000a6290 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + 0x9c (size before relaxing) + .xt.prop 0x00000000000a6290 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + 0xfc (size before relaxing) + .xt.prop 0x00000000000a6290 0x3c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + 0x48 (size before relaxing) + .xt.prop 0x00000000000a62cc 0x2c4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .xt.prop 0x00000000000a6590 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + 0x48 (size before relaxing) + .xt.prop 0x00000000000a6590 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + 0x144 (size before relaxing) + .xt.prop 0x00000000000a6590 0x210 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .xt.prop 0x00000000000a67a0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + 0x9c (size before relaxing) + .xt.prop 0x00000000000a67a0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + 0xc0 (size before relaxing) + .xt.prop 0x00000000000a67a0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime.o) + 0x30 (size before relaxing) + .xt.prop 0x00000000000a67a0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + 0xc0 (size before relaxing) + .xt.prop 0x00000000000a67a0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-itoa.o) + 0x78 (size before relaxing) + .xt.prop 0x00000000000a67a0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + 0x21c (size before relaxing) + .xt.prop 0x00000000000a67a0 0xe4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .xt.prop 0x00000000000a6884 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + 0x48 (size before relaxing) + .xt.prop 0x00000000000a6884 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + 0x90 (size before relaxing) + .xt.prop 0x00000000000a6884 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + 0x15c (size before relaxing) + .xt.prop 0x00000000000a6884 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + 0x78 (size before relaxing) + .xt.prop 0x00000000000a6884 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + 0xd8 (size before relaxing) + .xt.prop 0x00000000000a6884 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + 0x39c (size before relaxing) + .xt.prop 0x00000000000a6884 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + 0xc (size before relaxing) + .xt.prop 0x00000000000a6884 0x54 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + 0x60 (size before relaxing) + .xt.prop 0x00000000000a68d8 0xb4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .xt.prop 0x00000000000a698c 0x54 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + 0x60 (size before relaxing) + .xt.prop 0x00000000000a69e0 0xcc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .xt.prop 0x00000000000a6aac 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + 0x384 (size before relaxing) + .xt.prop 0x00000000000a6aac 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + 0x54 (size before relaxing) + .xt.prop 0x00000000000a6aac 0xfc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + 0x108 (size before relaxing) + .xt.prop 0x00000000000a6ba8 0x144 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .xt.prop 0x00000000000a6cec 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-remove.o) + 0x48 (size before relaxing) + .xt.prop 0x00000000000a6cec 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rename.o) + 0x30 (size before relaxing) + .xt.prop 0x00000000000a6cec 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setbuf.o) + 0x30 (size before relaxing) + .xt.prop 0x00000000000a6cec 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + 0x180 (size before relaxing) + .xt.prop 0x00000000000a6cec 0xb4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + 0xc0 (size before relaxing) + .xt.prop 0x00000000000a6da0 0x48 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .xt.prop 0x00000000000a6de8 0x48 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .xt.prop 0x00000000000a6e30 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + 0xcc (size before relaxing) + .xt.prop 0x00000000000a6e30 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcat.o) + 0x3c (size before relaxing) + .xt.prop 0x00000000000a6e30 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + 0x54 (size before relaxing) + .xt.prop 0x00000000000a6e30 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + 0x120 (size before relaxing) + .xt.prop 0x00000000000a6e30 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + 0x114 (size before relaxing) + .xt.prop 0x00000000000a6e30 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + 0x60 (size before relaxing) + .xt.prop 0x00000000000a6e30 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + 0x30 (size before relaxing) + .xt.prop 0x00000000000a6e30 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + 0x3c (size before relaxing) + .xt.prop 0x00000000000a6e30 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + 0x3c (size before relaxing) + .xt.prop 0x00000000000a6e30 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcat.o) + 0xa8 (size before relaxing) + .xt.prop 0x00000000000a6e30 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + 0x84 (size before relaxing) + .xt.prop 0x00000000000a6e30 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + 0xc0 (size before relaxing) + .xt.prop 0x00000000000a6e30 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + 0x54 (size before relaxing) + .xt.prop 0x00000000000a6e30 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + 0x1a4 (size before relaxing) + .xt.prop 0x00000000000a6e30 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + 0x30 (size before relaxing) + .xt.prop 0x00000000000a6e30 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + 0x78 (size before relaxing) + .xt.prop 0x00000000000a6e30 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + 0x48 (size before relaxing) + .xt.prop 0x00000000000a6e30 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + 0x6c (size before relaxing) + .xt.prop 0x00000000000a6e30 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + 0x78 (size before relaxing) + .xt.prop 0x00000000000a6e30 0xb7c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + 0xb94 (size before relaxing) + .xt.prop 0x00000000000a79ac 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + 0x30 (size before relaxing) + .xt.prop 0x00000000000a79ac 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok_r.o) + 0xf0 (size before relaxing) + .xt.prop 0x00000000000a79ac 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + 0x1b0 (size before relaxing) + .xt.prop 0x00000000000a79ac 0x2730 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + 0x2760 (size before relaxing) + .xt.prop 0x00000000000aa0dc 0x2130 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + 0x2148 (size before relaxing) + .xt.prop 0x00000000000ac20c 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .xt.prop 0x00000000000ac23c 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + 0xfc (size before relaxing) + .xt.prop 0x00000000000ac23c 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + 0x48 (size before relaxing) + .xt.prop 0x00000000000ac23c 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + 0x48 (size before relaxing) + .xt.prop 0x00000000000ac23c 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + 0x228 (size before relaxing) + .xt.prop 0x00000000000ac23c 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + 0xc (size before relaxing) + .xt.prop 0x00000000000ac23c 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-utoa.o) + 0x78 (size before relaxing) + .xt.prop 0x00000000000ac23c 0x282c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + 0x285c (size before relaxing) + .xt.prop 0x00000000000aea68 0x54 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + 0x60 (size before relaxing) + .xt.prop 0x00000000000aeabc 0x78 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + 0x84 (size before relaxing) + .xt.prop 0x00000000000aeb34 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + 0xcc (size before relaxing) + .xt.prop 0x00000000000aeb34 0xe4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + 0xf0 (size before relaxing) + .xt.prop 0x00000000000aec18 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + 0x24 (size before relaxing) + .xt.prop 0x00000000000aec18 0x90c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .xt.prop 0x00000000000af524 0xb4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .xt.prop 0x00000000000af5d8 0x4f8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .xt.prop 0x00000000000afad0 0x1bc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + 0x1c8 (size before relaxing) + .xt.prop 0x00000000000afc8c 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + 0xcc (size before relaxing) + .xt.prop 0x00000000000afc8c 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + 0x3c (size before relaxing) + .xt.prop 0x00000000000afc8c 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + 0x30 (size before relaxing) + .xt.prop 0x00000000000afcb0 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace_l.o) + 0x3c (size before relaxing) + .xt.prop 0x00000000000afce0 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lnumeric.o) + 0x30 (size before relaxing) + .xt.prop 0x00000000000afcec 0x84 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .xt.prop 0x00000000000afd70 0x54 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + 0x60 (size before relaxing) + .xt.prop 0x00000000000afdc4 0x6c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .xt.prop 0x00000000000afe30 0x54 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + 0x60 (size before relaxing) + .xt.prop 0x00000000000afe84 0x7ec /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + 0x7f8 (size before relaxing) + .xt.prop 0x00000000000b0670 0x48 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .xt.prop 0x00000000000b06b8 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_nan.o) + .xt.prop 0x00000000000b06e8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + 0xd8 (size before relaxing) + .xt.prop 0x00000000000b06e8 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .xt.prop 0x00000000000b0718 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + 0x48 (size before relaxing) + .xt.prop 0x00000000000b0718 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + 0x81c (size before relaxing) + .xt.prop 0x00000000000b0718 0x1b0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + 0x1bc (size before relaxing) + .xt.prop 0x00000000000b08c8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + 0x198 (size before relaxing) + .xt.prop 0x00000000000b08c8 0x1a4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + 0x1b0 (size before relaxing) + .xt.prop 0x00000000000b0a6c 0x1f44 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + 0x1f74 (size before relaxing) + .xt.prop 0x00000000000b29b0 0x1cec /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + 0x1cf8 (size before relaxing) + .xt.prop 0x00000000000b469c 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + 0x24 (size before relaxing) + .xt.prop 0x00000000000b469c 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + 0x1bc (size before relaxing) + .xt.prop 0x00000000000b469c 0x1fa4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + 0x1fd4 (size before relaxing) + .xt.prop 0x00000000000b6640 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + 0x6c (size before relaxing) + .xt.prop 0x00000000000b6640 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + 0x48 (size before relaxing) + .xt.prop 0x00000000000b6640 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfdi.o) + 0xa8 (size before relaxing) + .xt.prop 0x00000000000b6640 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdidf.o) + 0x9c (size before relaxing) + .xt.prop 0x00000000000b6640 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + 0xb4 (size before relaxing) + .xt.prop 0x00000000000b6640 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtend.o + 0x84 (size before relaxing) + .xt.prop 0x00000000000b664c 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtn.o + 0x30 (size before relaxing) + +.xt.lit 0x0000000000000000 0x5878 + *(.xt.lit .gnu.linkonce.p.*) + .xt.lit 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + 0x8 (size before relaxing) + .xt.lit 0x0000000000000000 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtbegin.o + 0x18 (size before relaxing) + .xt.lit 0x0000000000000000 0x18 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .xt.lit 0x0000000000000018 0x28 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0xe8 (size before relaxing) + .xt.lit 0x0000000000000040 0x20 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000000060 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000000060 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000000060 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000000060 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + 0x98 (size before relaxing) + .xt.lit 0x0000000000000060 0x30 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .xt.lit 0x0000000000000090 0x18 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000000000000a8 0x8 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .xt.lit 0x00000000000000b0 0x18 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000000000000c8 0x10 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .xt.lit 0x00000000000000d8 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000000000000f8 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .xt.lit 0x0000000000000100 0x18 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .xt.lit 0x0000000000000118 0x38 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x0000000000000150 0x8 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000000158 0x30 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000000188 0x20 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000000000001a8 0x10 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000000000001b8 0x10 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .xt.lit 0x00000000000001c8 0x28 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000000000001f0 0x18 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000000208 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000000208 0x20 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x0000000000000228 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .xt.lit 0x0000000000000238 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000000238 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000000240 0x18 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000000258 0x10 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000000268 0x8 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .xt.lit 0x0000000000000270 0x40 esp-idf/log/liblog.a(log.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x00000000000002b0 0x10 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000000000002c0 0x68 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x100 (size before relaxing) + .xt.lit 0x0000000000000328 0x20 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000000348 0x20 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x0000000000000368 0x40 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x00000000000003a8 0x10 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000000000003b8 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000000000003b8 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000000000003d0 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000000000003f8 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xb8 (size before relaxing) + .xt.lit 0x0000000000000448 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x0000000000000490 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000000000004b8 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000000000004c8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000000000004c8 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x118 (size before relaxing) + .xt.lit 0x0000000000000530 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000000538 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000000558 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .xt.lit 0x0000000000000560 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x0000000000000570 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000000580 0x20 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .xt.lit 0x00000000000005a0 0x88 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x128 (size before relaxing) + .xt.lit 0x0000000000000628 0x118 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2a0 (size before relaxing) + .xt.lit 0x0000000000000740 0x38 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x0000000000000778 0x8 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xt.lit 0x0000000000000780 0x8 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000000788 0x8 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000000790 0x8 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000000798 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000000798 0x8 esp-idf/newlib/libnewlib.a(abort.c.obj) + .xt.lit 0x00000000000007a0 0x10 esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000000000007b0 0x8 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000000000007b8 0x30 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0xc0 (size before relaxing) + .xt.lit 0x00000000000007e8 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000000000007e8 0x8 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000000000007f0 0x8 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000000000007f8 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00000000000007f8 0x20 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x0000000000000818 0x18 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000000830 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000000830 0x48 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xd0 (size before relaxing) + .xt.lit 0x0000000000000878 0x10 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .xt.lit 0x0000000000000888 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000000888 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00000000000008b8 0x8 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000000000008c0 0x28 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1a8 (size before relaxing) + .xt.lit 0x00000000000008e8 0x18 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x0000000000000900 0x80 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0xf8 (size before relaxing) + .xt.lit 0x0000000000000980 0x8 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x98 (size before relaxing) + .xt.lit 0x0000000000000988 0x8 esp-idf/bt/libbt.a(hli_vectors.S.obj) + .xt.lit 0x0000000000000990 0x30 esp-idf/bt/libbt.a(hli_api.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x00000000000009c0 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000000000009c0 0x40 esp-idf/main/libmain.a(app_main.c.obj) + .xt.lit 0x0000000000000a00 0xd0 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x108 (size before relaxing) + .xt.lit 0x0000000000000ad0 0x30 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x0000000000000b00 0x30 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x0000000000000b30 0x30 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000000b60 0x28 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000000b88 0x28 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000000bb0 0x50 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x150 (size before relaxing) + .xt.lit 0x0000000000000c00 0x58 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x180 (size before relaxing) + .xt.lit 0x0000000000000c58 0x40 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + 0xf0 (size before relaxing) + .xt.lit 0x0000000000000c98 0x8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000000ca0 0x30 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x0000000000000cd0 0x10 esp-idf/protocomm/libprotocomm.a(security0.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000000ce0 0x40 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x0000000000000d20 0x48 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x0000000000000d68 0x18 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x0000000000000d80 0x30 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x0000000000000db0 0xb0 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0xc8 (size before relaxing) + .xt.lit 0x0000000000000e60 0x18 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + 0x90 (size before relaxing) + .xt.lit 0x0000000000000e78 0x28 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + 0xf0 (size before relaxing) + .xt.lit 0x0000000000000ea0 0x28 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + 0xf0 (size before relaxing) + .xt.lit 0x0000000000000ec8 0x20 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000000ee8 0xe8 esp-idf/bt/libbt.a(bt.c.obj) + 0x288 (size before relaxing) + .xt.lit 0x0000000000000fd0 0x8 esp-idf/bt/libbt.a(addr.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000000fd8 0x8 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x0000000000000fe0 0x10 esp-idf/bt/libbt.a(ble_store_util.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000000ff0 0x30 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x0000000000001020 0x80 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x138 (size before relaxing) + .xt.lit 0x00000000000010a0 0x18 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x98 (size before relaxing) + .xt.lit 0x00000000000010b8 0x0 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000000000010b8 0x20 esp-idf/bt/libbt.a(ble_att.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00000000000010d8 0xd8 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x570 (size before relaxing) + .xt.lit 0x00000000000011b0 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) + 0xa0 (size before relaxing) + .xt.lit 0x00000000000011b0 0x10 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0xf0 (size before relaxing) + .xt.lit 0x00000000000011c0 0x0 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000000000011c0 0x8 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + 0x168 (size before relaxing) + .xt.lit 0x00000000000011c8 0x0 esp-idf/bt/libbt.a(ble_hs_log.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000000000011c8 0x50 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x0000000000001218 0x50 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x98 (size before relaxing) + .xt.lit 0x0000000000001268 0xe0 esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x3f8 (size before relaxing) + .xt.lit 0x0000000000001348 0x8 esp-idf/bt/libbt.a(ble_uuid.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000001350 0x18 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x0000000000001368 0x28 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x0000000000001390 0x20 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00000000000013b0 0x10 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000000000013c0 0xa8 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x188 (size before relaxing) + .xt.lit 0x0000000000001468 0x8 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x0000000000001470 0x60 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0xb8 (size before relaxing) + .xt.lit 0x00000000000014d0 0x18 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000000000014e8 0x68 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0xf8 (size before relaxing) + .xt.lit 0x0000000000001550 0x28 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0xa0 (size before relaxing) + .xt.lit 0x0000000000001578 0x38 esp-idf/bt/libbt.a(nimble_port.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000000000015b0 0x8 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000000000015b8 0x10 esp-idf/bt/libbt.a(os_mempool.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00000000000015c8 0x8 esp-idf/bt/libbt.a(mem.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000000000015d0 0x18 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0xf0 (size before relaxing) + .xt.lit 0x00000000000015e8 0x18 esp-idf/bt/libbt.a(os_msys_init.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000001600 0xd0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x128 (size before relaxing) + .xt.lit 0x00000000000016d0 0x28 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000000000016f8 0x8 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000001700 0x48 esp-idf/bt/libbt.a(transport.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x0000000000001748 0x28 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x0000000000001770 0x88 esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x238 (size before relaxing) + .xt.lit 0x00000000000017f8 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000000000017f8 0x0 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000000000017f8 0x58 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x200 (size before relaxing) + .xt.lit 0x0000000000001850 0x0 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000001850 0x30 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x0000000000001880 0x38 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000000000018b8 0x8 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000000000018c0 0x0 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000000000018c0 0x38 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x00000000000018f8 0xa8 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + 0x148 (size before relaxing) + .xt.lit 0x00000000000019a0 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(btdm_log.o) + 0x10 (size before relaxing) + .xt.lit 0x00000000000019a0 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + 0x60 (size before relaxing) + .xt.lit 0x00000000000019d0 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) + .xt.lit 0x00000000000019d8 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(co_utils.o) + .xt.lit 0x00000000000019e8 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg.o) + .xt.lit 0x00000000000019f8 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg_task.o) + .xt.lit 0x0000000000001a30 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) + 0x30 (size before relaxing) + .xt.lit 0x0000000000001a58 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) + 0x40 (size before relaxing) + .xt.lit 0x0000000000001a58 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_msg.o) + .xt.lit 0x0000000000001a78 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) + 0x38 (size before relaxing) + .xt.lit 0x0000000000001a98 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) + 0x38 (size before relaxing) + .xt.lit 0x0000000000001ab8 0x40 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + 0x50 (size before relaxing) + .xt.lit 0x0000000000001af8 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_msg.o) + .xt.lit 0x0000000000001b10 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) + .xt.lit 0x0000000000001b30 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_lmppdu.o) + 0x28 (size before relaxing) + .xt.lit 0x0000000000001b40 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) + 0x70 (size before relaxing) + .xt.lit 0x0000000000001b88 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sco.o) + 0x20 (size before relaxing) + .xt.lit 0x0000000000001ba0 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sniff.o) + .xt.lit 0x0000000000001bb0 0x88 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) + 0xe8 (size before relaxing) + .xt.lit 0x0000000000001c38 0x80 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + 0x98 (size before relaxing) + .xt.lit 0x0000000000001cb8 0x40 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + 0x58 (size before relaxing) + .xt.lit 0x0000000000001cf8 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_inq.o) + .xt.lit 0x0000000000001d00 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld.o) + .xt.lit 0x0000000000001d20 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_pscan.o) + .xt.lit 0x0000000000001d38 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sched.o) + 0x20 (size before relaxing) + .xt.lit 0x0000000000001d50 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sscan.o) + .xt.lit 0x0000000000001d60 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) + 0x40 (size before relaxing) + .xt.lit 0x0000000000001d88 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) + .xt.lit 0x0000000000001dd0 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) + 0x48 (size before relaxing) + .xt.lit 0x0000000000001e00 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_task.o) + 0x18 (size before relaxing) + .xt.lit 0x0000000000001e08 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_util.o) + 0x30 (size before relaxing) + .xt.lit 0x0000000000001e18 0xb0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + 0x110 (size before relaxing) + .xt.lit 0x0000000000001ec8 0x60 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + 0x78 (size before relaxing) + .xt.lit 0x0000000000001f28 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + 0x78 (size before relaxing) + .xt.lit 0x0000000000001f70 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_util.o) + .xt.lit 0x0000000000001f78 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_hci.o) + 0xa0 (size before relaxing) + .xt.lit 0x0000000000001fb0 0x50 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + 0x98 (size before relaxing) + .xt.lit 0x0000000000002000 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_task.o) + 0x18 (size before relaxing) + .xt.lit 0x0000000000002008 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) + .xt.lit 0x0000000000002020 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) + 0x28 (size before relaxing) + .xt.lit 0x0000000000002040 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + 0x68 (size before relaxing) + .xt.lit 0x0000000000002078 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) + .xt.lit 0x0000000000002088 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(osi.o) + .xt.lit 0x0000000000002090 0x88 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + 0xb0 (size before relaxing) + .xt.lit 0x0000000000002118 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) + 0x28 (size before relaxing) + .xt.lit 0x0000000000002138 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) + .xt.lit 0x0000000000002160 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + 0x48 (size before relaxing) + .xt.lit 0x0000000000002190 0x50 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(sdk_config.o) + .xt.lit 0x00000000000021e0 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + 0x18 (size before relaxing) + .xt.lit 0x00000000000021f0 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vflash.o) + 0x28 (size before relaxing) + .xt.lit 0x00000000000021f8 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + 0x68 (size before relaxing) + .xt.lit 0x0000000000002218 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) + 0x60 (size before relaxing) + .xt.lit 0x0000000000002260 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_sp.o) + .xt.lit 0x0000000000002270 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ecc_p256.o) + .xt.lit 0x0000000000002278 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(intc.o) + 0x28 (size before relaxing) + .xt.lit 0x0000000000002288 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ll.o) + 0x10 (size before relaxing) + .xt.lit 0x0000000000002288 0xb0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x1f8 (size before relaxing) + .xt.lit 0x0000000000002338 0x40 esp-idf/json/libjson.a(cJSON.c.obj) + 0x2d8 (size before relaxing) + .xt.lit 0x0000000000002378 0x10 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + .xt.lit 0x0000000000002388 0xc0 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0x120 (size before relaxing) + .xt.lit 0x0000000000002448 0x8 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .xt.lit 0x0000000000002450 0x18 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000002468 0x8 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000002470 0x10 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x0000000000002480 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x98 (size before relaxing) + .xt.lit 0x0000000000002498 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x00000000000024a0 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00000000000024a0 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x210 (size before relaxing) + .xt.lit 0x00000000000024a0 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x100 (size before relaxing) + .xt.lit 0x00000000000024a0 0x70 esp-idf/driver/libdriver.a(uart.c.obj) + 0x220 (size before relaxing) + .xt.lit 0x0000000000002510 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000002510 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x0000000000002528 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x0000000000002558 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000002558 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000002558 0x40 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x0000000000002598 0x8 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000000000025a0 0x10 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000000000025b0 0x38 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x00000000000025e8 0x18 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x0000000000002600 0x18 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000002618 0x58 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xe0 (size before relaxing) + .xt.lit 0x0000000000002670 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000002680 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x98 (size before relaxing) + .xt.lit 0x00000000000026a8 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000000000026b0 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x00000000000026e0 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000000000026f0 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000002700 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000002708 0x10 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000002718 0x10 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000002728 0x18 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000002740 0x18 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000002758 0x48 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xb8 (size before relaxing) + .xt.lit 0x00000000000027a0 0x20 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00000000000027c0 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000000000027c0 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000000000027c8 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0xb0 (size before relaxing) + .xt.lit 0x00000000000027c8 0x38 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x0000000000002800 0x8 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000002808 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x0000000000002808 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000002808 0x8 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x0000000000002810 0x18 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000002828 0x18 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x0000000000002840 0x20 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000002860 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .xt.lit 0x0000000000002868 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .xt.lit 0x0000000000002870 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .xt.lit 0x0000000000002880 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00000000000028b0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000000000028b8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .xt.lit 0x00000000000028c0 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .xt.lit 0x00000000000028f0 0x28 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x0000000000002918 0x8 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000002920 0x20 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000002940 0x10 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000002950 0x48 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0xa8 (size before relaxing) + .xt.lit 0x0000000000002998 0x88 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x248 (size before relaxing) + .xt.lit 0x0000000000002a20 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xe0 (size before relaxing) + .xt.lit 0x0000000000002a58 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x90 (size before relaxing) + .xt.lit 0x0000000000002a68 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000002a68 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x58 (size before relaxing) + .xt.lit 0x0000000000002aa0 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000002ab8 0x68 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0xd8 (size before relaxing) + .xt.lit 0x0000000000002b20 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000002b30 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000002b38 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000002b38 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000002b38 0x60 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x0000000000002b98 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000002bc8 0xe8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x320 (size before relaxing) + .xt.lit 0x0000000000002cb0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000002cb8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000002cc0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000002cc0 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x128 (size before relaxing) + .xt.lit 0x0000000000002ce0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000002ce0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000002ce0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000002ce8 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000002cf8 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x0000000000002d18 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000002d30 0x0 esp-idf/esp_coex/libesp_coex.a(coexist.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000002d30 0x20 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000002d50 0x30 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0xc0 (size before relaxing) + .xt.lit 0x0000000000002d80 0x20 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x0000000000002da0 0xa8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x1d0 (size before relaxing) + .xt.lit 0x0000000000002e48 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x170 (size before relaxing) + .xt.lit 0x0000000000002e88 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0xb0 (size before relaxing) + .xt.lit 0x0000000000002ea8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0xd0 (size before relaxing) + .xt.lit 0x0000000000002ed0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0xf0 (size before relaxing) + .xt.lit 0x0000000000002ed0 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x0000000000002ef8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x0000000000002f00 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x0000000000002f08 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0xb0 (size before relaxing) + .xt.lit 0x0000000000002f28 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2a8 (size before relaxing) + .xt.lit 0x0000000000002f88 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x0000000000002fc0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x0000000000002fc8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x0000000000002fd8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000002fd8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000002fe0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000002ff0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000002ff8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000002ff8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000002ff8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000002ff8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000002ff8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000002ff8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000003000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000003000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x0000000000003028 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x0000000000003048 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000003048 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000003060 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000003078 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000003090 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x00000000000030b0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00000000000030c8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x00000000000030e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x00000000000030e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x90 (size before relaxing) + .xt.lit 0x00000000000030e0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0xe0 (size before relaxing) + .xt.lit 0x00000000000030f8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000003120 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + 0xc0 (size before relaxing) + .xt.lit 0x0000000000003148 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + 0x90 (size before relaxing) + .xt.lit 0x0000000000003190 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) + 0x20 (size before relaxing) + .xt.lit 0x00000000000031a8 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + 0xb0 (size before relaxing) + .xt.lit 0x00000000000031d0 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + 0x60 (size before relaxing) + .xt.lit 0x00000000000031f8 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + 0x50 (size before relaxing) + .xt.lit 0x0000000000003220 0x140 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x658 (size before relaxing) + .xt.lit 0x0000000000003360 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0xe0 (size before relaxing) + .xt.lit 0x00000000000033a8 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .xt.lit 0x00000000000033d0 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + 0x18 (size before relaxing) + .xt.lit 0x00000000000033d8 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .xt.lit 0x00000000000033e8 0x88 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0xd8 (size before relaxing) + .xt.lit 0x0000000000003470 0x118 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x178 (size before relaxing) + .xt.lit 0x0000000000003588 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + 0x38 (size before relaxing) + .xt.lit 0x0000000000003590 0x58 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x88 (size before relaxing) + .xt.lit 0x00000000000035e8 0x158 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x4e8 (size before relaxing) + .xt.lit 0x0000000000003740 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x38 (size before relaxing) + .xt.lit 0x0000000000003748 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0xd8 (size before relaxing) + .xt.lit 0x0000000000003760 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x1e8 (size before relaxing) + .xt.lit 0x0000000000003790 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x170 (size before relaxing) + .xt.lit 0x0000000000003790 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + 0xd8 (size before relaxing) + .xt.lit 0x0000000000003790 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0xc0 (size before relaxing) + .xt.lit 0x00000000000037c8 0x110 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x230 (size before relaxing) + .xt.lit 0x00000000000038d8 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x30 (size before relaxing) + .xt.lit 0x00000000000038f0 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x70 (size before relaxing) + .xt.lit 0x00000000000038f8 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x20 (size before relaxing) + .xt.lit 0x0000000000003910 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + 0x18 (size before relaxing) + .xt.lit 0x0000000000003920 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x78 (size before relaxing) + .xt.lit 0x0000000000003930 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + 0x28 (size before relaxing) + .xt.lit 0x0000000000003930 0xb8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x168 (size before relaxing) + .xt.lit 0x00000000000039e8 0x88 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xe8 (size before relaxing) + .xt.lit 0x0000000000003a70 0x98 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x338 (size before relaxing) + .xt.lit 0x0000000000003b08 0xa0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x108 (size before relaxing) + .xt.lit 0x0000000000003ba8 0x40 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x98 (size before relaxing) + .xt.lit 0x0000000000003be8 0x158 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x240 (size before relaxing) + .xt.lit 0x0000000000003d40 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + 0x38 (size before relaxing) + .xt.lit 0x0000000000003d48 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x30 (size before relaxing) + .xt.lit 0x0000000000003d68 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + 0x50 (size before relaxing) + .xt.lit 0x0000000000003d80 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x28 (size before relaxing) + .xt.lit 0x0000000000003d90 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .xt.lit 0x0000000000003da0 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + 0x10 (size before relaxing) + .xt.lit 0x0000000000003da8 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003da8 0x40 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x60 (size before relaxing) + .xt.lit 0x0000000000003de8 0x38 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x2f0 (size before relaxing) + .xt.lit 0x0000000000003e20 0xd8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x198 (size before relaxing) + .xt.lit 0x0000000000003ef8 0x148 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x368 (size before relaxing) + .xt.lit 0x0000000000004040 0x138 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x2e0 (size before relaxing) + .xt.lit 0x0000000000004178 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x48 (size before relaxing) + .xt.lit 0x0000000000004180 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x70 (size before relaxing) + .xt.lit 0x00000000000041a8 0x8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x30 (size before relaxing) + .xt.lit 0x00000000000041b0 0xd0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x1b8 (size before relaxing) + .xt.lit 0x0000000000004280 0x100 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x288 (size before relaxing) + .xt.lit 0x0000000000004380 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + 0x28 (size before relaxing) + .xt.lit 0x0000000000004398 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0x48 (size before relaxing) + .xt.lit 0x00000000000043c0 0xf8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x178 (size before relaxing) + .xt.lit 0x00000000000044b8 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + 0x28 (size before relaxing) + .xt.lit 0x00000000000044d0 0x48 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .xt.lit 0x0000000000004518 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .xt.lit 0x0000000000004538 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + 0x20 (size before relaxing) + .xt.lit 0x0000000000004548 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x148 (size before relaxing) + .xt.lit 0x0000000000004570 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000004570 0x0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + 0xa0 (size before relaxing) + .xt.lit 0x0000000000004570 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + 0xf8 (size before relaxing) + .xt.lit 0x0000000000004570 0x20 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x0000000000004590 0x38 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000000000045c8 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0xd8 (size before relaxing) + .xt.lit 0x00000000000045d0 0x30 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000004600 0x40 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x0000000000004640 0x20 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000004660 0x20 esp-idf/hal/libhal.a(aes_hal.c.obj) + .xt.lit 0x0000000000004680 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000004680 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x120 (size before relaxing) + .xt.lit 0x0000000000004688 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000004688 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000004688 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000004690 0x20 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00000000000046b0 0xa8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x230 (size before relaxing) + .xt.lit 0x0000000000004758 0x40 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x0000000000004798 0x8 esp-idf/lwip/liblwip.a(def.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000000000047a0 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) + 0xb0 (size before relaxing) + .xt.lit 0x00000000000047a8 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000000000047a8 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000000000047a8 0x10 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000000000047b8 0x18 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000000000047d0 0x90 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x128 (size before relaxing) + .xt.lit 0x0000000000004860 0x70 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x118 (size before relaxing) + .xt.lit 0x00000000000048d0 0x18 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x00000000000048e8 0xd0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x198 (size before relaxing) + .xt.lit 0x00000000000049b8 0x50 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x0000000000004a08 0xb8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xc0 (size before relaxing) + .xt.lit 0x0000000000004ac0 0x30 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x0000000000004af0 0x48 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x0000000000004b38 0x80 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x128 (size before relaxing) + .xt.lit 0x0000000000004bb8 0x50 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x0000000000004c08 0x10 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000004c18 0x28 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x0000000000004c40 0x18 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x0000000000004c58 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000004c58 0x8 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .xt.lit 0x0000000000004c60 0x10 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000004c70 0x18 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000004c88 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000004c88 0x8 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .xt.lit 0x0000000000004c90 0x8 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x0000000000004c98 0x60 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xf0 (size before relaxing) + .xt.lit 0x0000000000004cf8 0x10 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .xt.lit 0x0000000000004d08 0x10 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .xt.lit 0x0000000000004d18 0x8 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000004d20 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000004d20 0x90 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xe0 (size before relaxing) + .xt.lit 0x0000000000004db0 0x8 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000004db8 0x28 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x0000000000004de0 0x48 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x108 (size before relaxing) + .xt.lit 0x0000000000004e28 0x70 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x128 (size before relaxing) + .xt.lit 0x0000000000004e98 0x8 esp-idf/lwip/liblwip.a(err.c.obj) + .xt.lit 0x0000000000004ea0 0x8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000004ea8 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x0000000000004ea8 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000004eb8 0x8 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000004ec0 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000004ec0 0x8 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000004ec8 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xa0 (size before relaxing) + .xt.lit 0x0000000000004ef0 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000004f08 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x90 (size before relaxing) + .xt.lit 0x0000000000004f48 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000004f58 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000004f60 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x1b0 (size before relaxing) + .xt.lit 0x0000000000004f68 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x0000000000004f98 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x0000000000004f98 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x1d0 (size before relaxing) + .xt.lit 0x0000000000005028 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000005030 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x0000000000005040 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000005040 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000005060 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000005060 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x190 (size before relaxing) + .xt.lit 0x0000000000005098 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00000000000050a8 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0xa8 (size before relaxing) + .xt.lit 0x00000000000050d8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .xt.lit 0x00000000000050e0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000000000050e8 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1f0 (size before relaxing) + .xt.lit 0x0000000000005148 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000005158 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x0000000000005158 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000005158 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x0000000000005168 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x0000000000005190 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000005190 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000005190 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000005190 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0xc8 (size before relaxing) + .xt.lit 0x0000000000005198 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000000000051a0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00000000000051a8 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00000000000051b8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x98 (size before relaxing) + .xt.lit 0x00000000000051b8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xc0 (size before relaxing) + .xt.lit 0x00000000000051e0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00000000000051e8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x00000000000051f8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xf8 (size before relaxing) + .xt.lit 0x0000000000005228 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x98 (size before relaxing) + .xt.lit 0x0000000000005250 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000005250 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + 0x540 (size before relaxing) + .xt.lit 0x0000000000005250 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000005250 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + 0x198 (size before relaxing) + .xt.lit 0x0000000000005250 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000005250 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000005250 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x0000000000005250 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x0000000000005250 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x0000000000005250 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x0000000000005250 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000005250 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005250 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x138 (size before relaxing) + .xt.lit 0x0000000000005280 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000005288 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000005290 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000000000052a0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000000000052a0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00000000000052a0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00000000000052a0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000000000052a0 0x10 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x20 (size before relaxing) + .xt.lit 0x00000000000052b0 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x3d8 (size before relaxing) + .xt.lit 0x00000000000052b0 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + 0x40 (size before relaxing) + .xt.lit 0x00000000000052b0 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0xc0 (size before relaxing) + .xt.lit 0x00000000000052b0 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x338 (size before relaxing) + .xt.lit 0x00000000000052b0 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + 0x30 (size before relaxing) + .xt.lit 0x00000000000052b0 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + 0x58 (size before relaxing) + .xt.lit 0x00000000000052b0 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + 0x90 (size before relaxing) + .xt.lit 0x00000000000052b0 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + 0x28 (size before relaxing) + .xt.lit 0x00000000000052b0 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x488 (size before relaxing) + .xt.lit 0x00000000000052b0 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x120 (size before relaxing) + .xt.lit 0x00000000000052b0 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x190 (size before relaxing) + .xt.lit 0x00000000000052b0 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + 0x40 (size before relaxing) + .xt.lit 0x00000000000052b0 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + 0x38 (size before relaxing) + .xt.lit 0x00000000000052b0 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + 0x40 (size before relaxing) + .xt.lit 0x00000000000052b0 0x0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + 0x98 (size before relaxing) + .xt.lit 0x00000000000052b0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000000000052b0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000000000052b0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x00000000000052b0 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000000000052b0 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x00000000000052b0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000000000052b0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000000000052b0 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000000000052b0 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000000000052b0 0x8 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .xt.lit 0x00000000000052b8 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000000000052b8 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000052b8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000052b8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opvs.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000052b8 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + 0x10 (size before relaxing) + .xt.lit 0x00000000000052c0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000052c0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000052c0 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + 0x20 (size before relaxing) + .xt.lit 0x00000000000052c8 0x18 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x28 (size before relaxing) + .xt.lit 0x00000000000052e0 0x18 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x40 (size before relaxing) + .xt.lit 0x00000000000052f8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opv.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000052f8 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + .xt.lit 0x0000000000005300 0x10 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x30 (size before relaxing) + .xt.lit 0x0000000000005310 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + 0x10 (size before relaxing) + .xt.lit 0x0000000000005310 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + 0x18 (size before relaxing) + .xt.lit 0x0000000000005318 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x30 (size before relaxing) + .xt.lit 0x0000000000005320 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005320 0x10 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x48 (size before relaxing) + .xt.lit 0x0000000000005330 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + 0x30 (size before relaxing) + .xt.lit 0x0000000000005330 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + 0x20 (size before relaxing) + .xt.lit 0x0000000000005338 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_addsubdf3.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005338 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_muldf3.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005338 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdf3.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005338 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_cmpdf2.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005338 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfsi.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005338 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005338 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005338 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_popcountsi2.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005338 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0xc8 (size before relaxing) + .xt.lit 0x0000000000005338 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + 0x18 (size before relaxing) + .xt.lit 0x0000000000005338 0x158 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x200 (size before relaxing) + .xt.lit 0x0000000000005490 0x1f0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3b8 (size before relaxing) + .xt.lit 0x0000000000005680 0xf8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x180 (size before relaxing) + .xt.lit 0x0000000000005778 0x28 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + 0x90 (size before relaxing) + .xt.lit 0x00000000000057a0 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + 0xa8 (size before relaxing) + .xt.lit 0x00000000000057a0 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + 0xc0 (size before relaxing) + .xt.lit 0x00000000000057a0 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_ceil.o) + .xt.lit 0x00000000000057a8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_floor.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057a8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057a8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057a8 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .xt.lit 0x00000000000057b0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057b0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057b0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057b0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057b0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057b0 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .xt.lit 0x00000000000057b8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057b8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057b8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057b8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057b8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057b8 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .xt.lit 0x00000000000057c0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057c0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057c0 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .xt.lit 0x00000000000057c8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057c8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057c8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057c8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-itoa.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057c8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057c8 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .xt.lit 0x00000000000057d0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057d0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057d0 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .xt.lit 0x00000000000057d8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057d8 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .xt.lit 0x00000000000057e0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057e0 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057e0 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .xt.lit 0x00000000000057e8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-remove.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057e8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rename.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057e8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setbuf.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057e8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057e8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057e8 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .xt.lit 0x00000000000057f0 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .xt.lit 0x00000000000057f8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057f8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057f8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057f8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057f8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057f8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057f8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcat.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057f8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057f8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057f8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057f8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057f8 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000057f8 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .xt.lit 0x0000000000005800 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005800 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005800 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .xt.lit 0x0000000000005808 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .xt.lit 0x0000000000005810 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .xt.lit 0x0000000000005818 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005818 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005818 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005818 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005818 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-utoa.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005818 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .xt.lit 0x0000000000005820 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005820 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005820 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005820 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005820 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .xt.lit 0x0000000000005828 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .xt.lit 0x0000000000005830 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005830 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005830 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005830 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005830 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace_l.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005830 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .xt.lit 0x0000000000005838 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005838 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .xt.lit 0x0000000000005840 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005840 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .xt.lit 0x0000000000005848 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .xt.lit 0x0000000000005850 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_nan.o) + .xt.lit 0x0000000000005858 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .xt.lit 0x0000000000005860 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005860 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005860 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005860 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005860 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005860 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .xt.lit 0x0000000000005868 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .xt.lit 0x0000000000005870 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005870 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .xt.lit 0x0000000000005878 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005878 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005878 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfdi.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005878 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000005878 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtend.o + 0x10 (size before relaxing) + 0x0000000000000001 ASSERT (((_iram_end - ORIGIN (iram0_0_seg)) <= LENGTH (iram0_0_seg)), IRAM0 segment data does not fit.) + 0x0000000000000001 ASSERT (((_heap_low_start - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) +OUTPUT(wifi_prov_mgr.elf elf32-xtensa-le) + +.xtensa.info 0x0000000000000000 0x38 + .xtensa.info 0x0000000000000000 0x38 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crti.o + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtbegin.o + .xtensa.info 0x0000000000000038 0x0 CMakeFiles/wifi_prov_mgr.elf.dir/project_elf_src_esp32.c.obj + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/log/liblog.a(log.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(hli_vectors.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(hli_api.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/main/libmain.a(app_main.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/protocomm/libprotocomm.a(security0.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(bt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(addr.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_store_util.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_att.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_hs_log.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_uuid.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_store_config.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(nimble_port.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(endian.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(os_mempool.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(mem.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(os_msys_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(transport.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(btdm_log.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(co_utils.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg_task.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_msg.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_msg.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_lmppdu.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sco.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sniff.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_inq.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_pscan.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sched.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sscan.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_task.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_util.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_util.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_hci.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_task.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(osi.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(sdk_config.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(syscntl.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vflash.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_sp.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ecc_p256.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(emi.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(intc.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(led.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ll.o) + .xtensa.info 0x0000000000000038 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_coex/libesp_coex.a(coexist.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(err.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opvs.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opv.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divsf3.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdisf.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_muldf3.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdf3.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatsidf.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_ffsdi2.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdi3.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_moddi3.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_udivdi3.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_umoddi3.o) + .xtensa.info 0x0000000000000038 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_ceil.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_floor.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-itoa.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-remove.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rename.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setbuf.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcat.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcat.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-utoa.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace_l.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lnumeric.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_nan.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfdi.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdidf.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtend.o + .xtensa.info 0x0000000000000038 0x0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtn.o + +.comment 0x0000000000000000 0x11d + .comment 0x0000000000000000 0x2f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtbegin.o + 0x30 (size before relaxing) + .comment 0x000000000000002f 0x30 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/pthread/libpthread.a(pthread.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/log/liblog.a(log.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/log/liblog.a(log_freertos.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/heap/libheap.a(heap_caps.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/heap/libheap.a(multi_heap.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/heap/libheap.a(tlsf.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/heap/libheap.a(memory_layout.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/soc/libsoc.a(dport_access.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/freertos/libfreertos.a(queue.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/freertos/libfreertos.a(port.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/freertos/libfreertos.a(list.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/newlib/libnewlib.a(abort.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/newlib/libnewlib.a(assert.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/newlib/libnewlib.a(heap.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/newlib/libnewlib.a(locks.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/newlib/libnewlib.a(time.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/vfs/libvfs.a(vfs.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(hli_api.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/main/libmain.a(app_main.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/protocomm/libprotocomm.a(security0.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(bt.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(addr.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_store_util.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_hs.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_att.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_store.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_hs_log.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_gap.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_uuid.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_store_config.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(nimble_port.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(endian.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(os_mempool.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(mem.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(os_mbuf.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(os_msys_init.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(transport.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_sm.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + .comment 0x000000000000002f 0x30 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + .comment 0x000000000000002f 0x3a /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + 0x3b (size before relaxing) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(btdm_log.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(co_utils.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg_task.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_msg.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_msg.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_lmppdu.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sco.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sniff.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_inq.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_pscan.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sched.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sscan.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_task.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_util.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_util.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_hci.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_task.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(osi.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(sdk_config.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(syscntl.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vflash.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_sp.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ecc_p256.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(emi.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(intc.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(led.o) + .comment 0x0000000000000069 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ll.o) + .comment 0x0000000000000069 0x30 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/json/libjson.a(cJSON.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/hal/libhal.a(uart_hal.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/soc/libsoc.a(interrupts.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .comment 0x0000000000000069 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .comment 0x0000000000000069 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .comment 0x0000000000000069 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .comment 0x0000000000000069 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .comment 0x0000000000000069 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .comment 0x0000000000000069 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .comment 0x0000000000000069 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .comment 0x0000000000000069 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .comment 0x0000000000000069 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_coex/libesp_coex.a(coexist.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .comment 0x0000000000000069 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .comment 0x0000000000000069 0x3a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + 0x3b (size before relaxing) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .comment 0x00000000000000a3 0x30 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/hal/libhal.a(sha_hal.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/hal/libhal.a(aes_hal.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(def.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(dns.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(init.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(ip.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(mem.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(memp.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(netif.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(raw.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(tcp.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(udp.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(etharp.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(icmp.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(igmp.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(ip4.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(ip6.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(mld6.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(nd6.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(err.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .comment 0x00000000000000a3 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .comment 0x00000000000000a3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .comment 0x00000000000000a3 0x30 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .comment 0x00000000000000a3 0x40 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + 0x41 (size before relaxing) + .comment 0x00000000000000e3 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .comment 0x00000000000000e3 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opvs.o) + .comment 0x00000000000000e3 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .comment 0x00000000000000e3 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .comment 0x00000000000000e3 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .comment 0x00000000000000e3 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + .comment 0x00000000000000e3 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .comment 0x00000000000000e3 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .comment 0x00000000000000e3 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + .comment 0x00000000000000e3 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opv.o) + .comment 0x00000000000000e3 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + .comment 0x00000000000000e3 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + .comment 0x00000000000000e3 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .comment 0x00000000000000e3 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .comment 0x00000000000000e3 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + .comment 0x00000000000000e3 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .comment 0x00000000000000e3 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .comment 0x00000000000000e3 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .comment 0x00000000000000e3 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .comment 0x00000000000000e3 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + .comment 0x00000000000000e3 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdi3.o) + .comment 0x00000000000000e3 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_moddi3.o) + .comment 0x00000000000000e3 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_udivdi3.o) + .comment 0x00000000000000e3 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_umoddi3.o) + .comment 0x00000000000000e3 0x30 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .comment 0x00000000000000e3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .comment 0x00000000000000e3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .comment 0x00000000000000e3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .comment 0x00000000000000e3 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .comment 0x00000000000000e3 0x3a /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + 0x3b (size before relaxing) + .comment 0x000000000000011d 0x3b /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_ceil.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_floor.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace_l.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lnumeric.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_nan.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .comment 0x000000000000011d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtend.o + +.xt.lit._ZN3nvs4LockC5Ev + 0x0000000000000000 0x8 + .xt.lit._ZN3nvs4LockC5Ev + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.lit._ZN3nvs4LockD5Ev + 0x0000000000000000 0x0 + .xt.lit._ZN3nvs4LockD5Ev + 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + +.xt.lit._ZN3nvs4Lock4initEv + 0x0000000000000000 0x0 + .xt.lit._ZN3nvs4Lock4initEv + 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + +.xt.prop._ZN3nvs4LockC5Ev + 0x0000000000000000 0xc + .xt.prop._ZN3nvs4LockC5Ev + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs4LockD5Ev + 0x0000000000000000 0x0 + .xt.prop._ZN3nvs4LockD5Ev + 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + +.xt.prop._ZN3nvs4Lock4initEv + 0x0000000000000000 0x54 + .xt.prop._ZN3nvs4Lock4initEv + 0x0000000000000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x60 (size before relaxing) + +.xt.prop._ZN3nvs4LockC2Ev + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs4LockC2Ev + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs4LockD2Ev + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs4LockD2Ev + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN14NVSHandleEntryD2Ev + 0x0000000000000000 0x24 + .xt.prop._ZN14NVSHandleEntryD2Ev + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN14intrusive_listI14NVSHandleEntryE5eraseENS1_8iteratorE + 0x0000000000000000 0x54 + .xt.prop._ZN14intrusive_listI14NVSHandleEntryE5eraseENS1_8iteratorE + 0x0000000000000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN14intrusive_listI14NVSHandleEntryE9push_backEPS0_ + 0x0000000000000000 0x3c + .xt.prop._ZN14intrusive_listI14NVSHandleEntryE9push_backEPS0_ + 0x0000000000000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8set_itemIaEEiPKcT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8set_itemIaEEiPKcT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8set_itemIhEEiPKcT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8set_itemIhEEiPKcT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8set_itemItEEiPKcT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8set_itemItEEiPKcT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8set_itemImEEiPKcT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8set_itemImEEiPKcT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8get_itemIaEEiPKcRT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8get_itemIaEEiPKcRT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8get_itemIhEEiPKcRT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8get_itemIhEEiPKcRT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8get_itemItEEiPKcRT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8get_itemItEEiPKcRT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8get_itemImEEiPKcRT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8get_itemImEEiPKcRT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.lit._ZN3nvs4Item6getKeyEPcj + 0x0000000000000000 0x8 + .xt.lit._ZN3nvs4Item6getKeyEPcj + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + +.xt.lit._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x0000000000000000 0x0 + .xt.lit._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + +.xt.lit._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED5Ev + 0x0000000000000000 0x0 + .xt.lit._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED5Ev + 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + +.xt.lit._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + 0x0000000000000000 0x8 + .xt.lit._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + +.xt.lit._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE17clearAndFreeNodesEv + 0x0000000000000000 0x8 + .xt.lit._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE17clearAndFreeNodesEv + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + +.xt.lit._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE17clearAndFreeNodesEv + 0x0000000000000000 0x8 + .xt.lit._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE17clearAndFreeNodesEv + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + +.xt.prop._ZN3nvs4Item6getKeyEPcj + 0x0000000000000000 0x48 + .xt.prop._ZN3nvs4Item6getKeyEPcj + 0x0000000000000000 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + +.xt.prop._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x0000000000000000 0x48 + .xt.prop._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x0000000000000000 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x54 (size before relaxing) + +.xt.prop._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED5Ev + 0x0000000000000000 0x0 + .xt.prop._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED5Ev + 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + +.xt.prop._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + 0x0000000000000000 0x48 + .xt.prop._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + 0x0000000000000000 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + +.xt.prop._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE17clearAndFreeNodesEv + 0x0000000000000000 0x48 + .xt.prop._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE17clearAndFreeNodesEv + 0x0000000000000000 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + +.xt.prop._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE17clearAndFreeNodesEv + 0x0000000000000000 0x48 + .xt.prop._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE17clearAndFreeNodesEv + 0x0000000000000000 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + +.xt.prop._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE9push_backEPS2_ + 0x0000000000000000 0x3c + .xt.prop._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE9push_backEPS2_ + 0x0000000000000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + +.xt.prop._ZN19CompressedEnumTableIbLj1ELj256EE3setEjb + 0x0000000000000000 0x3c + .xt.prop._ZN19CompressedEnumTableIbLj1ELj256EE3setEjb + 0x0000000000000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + +.xt.prop._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE9push_backEPS2_ + 0x0000000000000000 0x3c + .xt.prop._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE9push_backEPS2_ + 0x0000000000000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + +.xt.prop._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE9push_backEPS2_ + 0x0000000000000000 0x3c + .xt.prop._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE9push_backEPS2_ + 0x0000000000000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + +.xt.prop._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED2Ev + 0x0000000000000000 0x30 + .xt.prop._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED2Ev + 0x0000000000000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + +.xt.prop._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE5eraseENS3_8iteratorE + 0x0000000000000000 0x54 + .xt.prop._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE5eraseENS3_8iteratorE + 0x0000000000000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + +.xt.prop._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE5eraseENS3_8iteratorE + 0x0000000000000000 0x54 + .xt.prop._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE5eraseENS3_8iteratorE + 0x0000000000000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + +.xt.prop._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE5eraseENS3_8iteratorE + 0x0000000000000000 0x54 + .xt.prop._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE5eraseENS3_8iteratorE + 0x0000000000000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + +.xt.prop._ZTVN3nvs9NVSHandleE + 0x0000000000000000 0xc + .xt.prop._ZTVN3nvs9NVSHandleE + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + +.xt.prop._ZTVN3nvs15NVSHandleSimpleE + 0x0000000000000000 0xc + .xt.prop._ZTVN3nvs15NVSHandleSimpleE + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + +.xt.lit._ZN3nvs12NVSPartitionD5Ev + 0x0000000000000000 0x8 + .xt.lit._ZN3nvs12NVSPartitionD5Ev + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + +.xt.prop._ZN3nvs12NVSPartitionD5Ev + 0x0000000000000000 0xc + .xt.prop._ZN3nvs12NVSPartitionD5Ev + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + +.xt.prop._ZN3nvs12NVSPartitionD2Ev + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs12NVSPartitionD2Ev + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + +.xt.prop._ZN3nvs12NVSPartitionD0Ev + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs12NVSPartitionD0Ev + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + +.xt.prop._ZTVN3nvs9PartitionE + 0x0000000000000000 0xc + .xt.prop._ZTVN3nvs9PartitionE + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + +.xt.prop._ZTVN3nvs12NVSPartitionE + 0x0000000000000000 0xc + .xt.prop._ZTVN3nvs12NVSPartitionE + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + +.xt.lit._ZN3nvs19NVSPartitionManagerD5Ev + 0x0000000000000000 0x8 + .xt.lit._ZN3nvs19NVSPartitionManagerD5Ev + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + +.xt.lit._ZN3nvs7StorageC5EPNS_9PartitionE + 0x0000000000000000 0x0 + .xt.lit._ZN3nvs7StorageC5EPNS_9PartitionE + 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x8 (size before relaxing) + +.xt.prop._ZN3nvs19NVSPartitionManagerD5Ev + 0x0000000000000000 0xc + .xt.prop._ZN3nvs19NVSPartitionManagerD5Ev + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + +.xt.prop._ZN3nvs7StorageC5EPNS_9PartitionE + 0x0000000000000000 0x0 + .xt.prop._ZN3nvs7StorageC5EPNS_9PartitionE + 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xc (size before relaxing) + +.xt.prop._ZN3nvs19NVSPartitionManagerD2Ev + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs19NVSPartitionManagerD2Ev + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + +.xt.prop._ZN3nvs19NVSPartitionManagerD0Ev + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs19NVSPartitionManagerD0Ev + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + +.xt.prop._ZN3nvs7StorageC2EPNS_9PartitionE + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs7StorageC2EPNS_9PartitionE + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + +.xt.prop._ZN14intrusive_listIN3nvs12NVSPartitionEE9push_backEPS1_ + 0x0000000000000000 0x3c + .xt.prop._ZN14intrusive_listIN3nvs12NVSPartitionEE9push_backEPS1_ + 0x0000000000000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + +.xt.prop._ZN14intrusive_listIN3nvs12NVSPartitionEE5eraseENS2_8iteratorE + 0x0000000000000000 0x54 + .xt.prop._ZN14intrusive_listIN3nvs12NVSPartitionEE5eraseENS2_8iteratorE + 0x0000000000000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + +.xt.prop._ZN14intrusive_listIN3nvs7StorageEE9push_backEPS1_ + 0x0000000000000000 0x3c + .xt.prop._ZN14intrusive_listIN3nvs7StorageEE9push_backEPS1_ + 0x0000000000000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + +.xt.prop._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE5eraseENS2_8iteratorE + 0x0000000000000000 0x54 + .xt.prop._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE5eraseENS2_8iteratorE + 0x0000000000000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + +.xt.prop._ZN14intrusive_listIN3nvs7StorageEE5eraseENS2_8iteratorE + 0x0000000000000000 0x54 + .xt.prop._ZN14intrusive_listIN3nvs7StorageEE5eraseENS2_8iteratorE + 0x0000000000000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + +.xt.prop._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE9push_backEPS1_ + 0x0000000000000000 0x3c + .xt.prop._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE9push_backEPS1_ + 0x0000000000000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + +.xt.prop._ZTVN3nvs19NVSPartitionManagerE + 0x0000000000000000 0xc + .xt.prop._ZTVN3nvs19NVSPartitionManagerE + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + +.xt.prop._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE5eraseENS3_8iteratorE + 0x0000000000000000 0x54 + .xt.prop._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE5eraseENS3_8iteratorE + 0x0000000000000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + +.xt.prop._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE9push_backEPS2_ + 0x0000000000000000 0x3c + .xt.prop._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE9push_backEPS2_ + 0x0000000000000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + +.xt.lit._ZN3nvs4ItemC5EhNS_8ItemTypeEhPKch + 0x0000000000000000 0x0 + .xt.lit._ZN3nvs4ItemC5EhNS_8ItemTypeEhPKch + 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + +.xt.prop._ZN3nvs4ItemC5EhNS_8ItemTypeEhPKch + 0x0000000000000000 0x0 + .xt.prop._ZN3nvs4ItemC5EhNS_8ItemTypeEhPKch + 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0xc (size before relaxing) + +.xt.prop._ZN3nvs4ItemC2EhNS_8ItemTypeEhPKch + 0x0000000000000000 0x6c + .xt.prop._ZN3nvs4ItemC2EhNS_8ItemTypeEhPKch + 0x0000000000000000 0x6c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + +.xt.prop._ZN19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3setEjS2_ + 0x0000000000000000 0x3c + .xt.prop._ZN19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3setEjS2_ + 0x0000000000000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + +.xt.lit._ZN14intrusive_listIN3nvs4PageEE5clearEv + 0x0000000000000000 0x8 + .xt.lit._ZN14intrusive_listIN3nvs4PageEE5clearEv + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + +.xt.lit._ZN14intrusive_listIN3nvs4PageEE6insertENS2_8iteratorEPS1_ + 0x0000000000000000 0x8 + .xt.lit._ZN14intrusive_listIN3nvs4PageEE6insertENS2_8iteratorEPS1_ + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + +.xt.prop._ZN14intrusive_listIN3nvs4PageEE5clearEv + 0x0000000000000000 0x48 + .xt.prop._ZN14intrusive_listIN3nvs4PageEE5clearEv + 0x0000000000000000 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + +.xt.prop._ZN14intrusive_listIN3nvs4PageEE6insertENS2_8iteratorEPS1_ + 0x0000000000000000 0x60 + .xt.prop._ZN14intrusive_listIN3nvs4PageEE6insertENS2_8iteratorEPS1_ + 0x0000000000000000 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + +.xt.prop._ZN14intrusive_listIN3nvs4PageEE9push_backEPS1_ + 0x0000000000000000 0x3c + .xt.prop._ZN14intrusive_listIN3nvs4PageEE9push_backEPS1_ + 0x0000000000000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + +.xt.prop._ZN14intrusive_listIN3nvs4PageEE5eraseENS2_8iteratorE + 0x0000000000000000 0x54 + .xt.prop._ZN14intrusive_listIN3nvs4PageEE5eraseENS2_8iteratorE + 0x0000000000000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + +.xt.prop._ZN14intrusive_listIN3nvs4PageEE10push_frontEPS1_ + 0x0000000000000000 0x3c + .xt.prop._ZN14intrusive_listIN3nvs4PageEE10push_frontEPS1_ + 0x0000000000000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + +.xt.prop._ZTISt9exception + 0x0000000000000000 0xc + .xt.prop._ZTISt9exception + 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + +.xt.prop._ZTISt9bad_alloc + 0x0000000000000000 0xc + .xt.prop._ZTISt9bad_alloc + 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + +.xt.prop._ZTVN10__cxxabiv120__si_class_type_infoE + 0x0000000000000000 0xc + .xt.prop._ZTVN10__cxxabiv120__si_class_type_infoE + 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + +.xt.prop._ZTVSt9bad_alloc + 0x0000000000000000 0xc + .xt.prop._ZTVSt9bad_alloc + 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + +.xt.prop._ZTVN10__cxxabiv117__class_type_infoE + 0x0000000000000000 0xc + .xt.prop._ZTVN10__cxxabiv117__class_type_infoE + 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + +.xt.lit._ZNK9__gnu_cxx24__concurrence_lock_error4whatEv + 0x0000000000000000 0x8 + .xt.lit._ZNK9__gnu_cxx24__concurrence_lock_error4whatEv + 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + +.xt.lit._ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv + 0x0000000000000000 0x8 + .xt.lit._ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv + 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + +.xt.lit._ZN9__gnu_cxx24__concurrence_lock_errorD5Ev + 0x0000000000000000 0x8 + .xt.lit._ZN9__gnu_cxx24__concurrence_lock_errorD5Ev + 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + +.xt.lit._ZN9__gnu_cxx26__concurrence_unlock_errorD5Ev + 0x0000000000000000 0x8 + .xt.lit._ZN9__gnu_cxx26__concurrence_unlock_errorD5Ev + 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + +.xt.lit._ZN9__gnu_cxx7__mutex4lockEv + 0x0000000000000000 0x8 + .xt.lit._ZN9__gnu_cxx7__mutex4lockEv + 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + +.xt.lit._ZN9__gnu_cxx7__mutex6unlockEv + 0x0000000000000000 0x8 + .xt.lit._ZN9__gnu_cxx7__mutex6unlockEv + 0x0000000000000000 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + +.xt.prop._ZNK9__gnu_cxx24__concurrence_lock_error4whatEv + 0x0000000000000000 0x30 + .xt.prop._ZNK9__gnu_cxx24__concurrence_lock_error4whatEv + 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + +.xt.prop._ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv + 0x0000000000000000 0x30 + .xt.prop._ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv + 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + +.xt.prop._ZN9__gnu_cxx24__concurrence_lock_errorD5Ev + 0x0000000000000000 0xc + .xt.prop._ZN9__gnu_cxx24__concurrence_lock_errorD5Ev + 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + +.xt.prop._ZN9__gnu_cxx26__concurrence_unlock_errorD5Ev + 0x0000000000000000 0xc + .xt.prop._ZN9__gnu_cxx26__concurrence_unlock_errorD5Ev + 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + +.xt.prop._ZN9__gnu_cxx7__mutex4lockEv + 0x0000000000000000 0x30 + .xt.prop._ZN9__gnu_cxx7__mutex4lockEv + 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + +.xt.prop._ZN9__gnu_cxx7__mutex6unlockEv + 0x0000000000000000 0x30 + .xt.prop._ZN9__gnu_cxx7__mutex6unlockEv + 0x0000000000000000 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + +.xt.prop._ZN9__gnu_cxx24__concurrence_lock_errorD2Ev + 0x0000000000000000 0x24 + .xt.prop._ZN9__gnu_cxx24__concurrence_lock_errorD2Ev + 0x0000000000000000 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + +.xt.prop._ZN9__gnu_cxx26__concurrence_unlock_errorD2Ev + 0x0000000000000000 0x24 + .xt.prop._ZN9__gnu_cxx26__concurrence_unlock_errorD2Ev + 0x0000000000000000 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + +.xt.prop._ZN9__gnu_cxx24__concurrence_lock_errorD0Ev + 0x0000000000000000 0x24 + .xt.prop._ZN9__gnu_cxx24__concurrence_lock_errorD0Ev + 0x0000000000000000 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + +.xt.prop._ZN9__gnu_cxx26__concurrence_unlock_errorD0Ev + 0x0000000000000000 0x24 + .xt.prop._ZN9__gnu_cxx26__concurrence_unlock_errorD0Ev + 0x0000000000000000 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + +.xt.prop._ZTIN9__gnu_cxx24__concurrence_lock_errorE + 0x0000000000000000 0xc + .xt.prop._ZTIN9__gnu_cxx24__concurrence_lock_errorE + 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + +.xt.prop._ZTIN9__gnu_cxx26__concurrence_unlock_errorE + 0x0000000000000000 0xc + .xt.prop._ZTIN9__gnu_cxx26__concurrence_unlock_errorE + 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + +.xt.prop._ZTVN9__gnu_cxx24__concurrence_lock_errorE + 0x0000000000000000 0xc + .xt.prop._ZTVN9__gnu_cxx24__concurrence_lock_errorE + 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + +.xt.prop._ZTVN9__gnu_cxx26__concurrence_unlock_errorE + 0x0000000000000000 0xc + .xt.prop._ZTVN9__gnu_cxx26__concurrence_unlock_errorE + 0x0000000000000000 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + +.debug_frame 0x0000000000000000 0x296f8 + .debug_frame 0x0000000000000000 0x58 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_frame 0x0000000000000058 0x3e8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_frame 0x0000000000000440 0xe8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_frame 0x0000000000000528 0x100 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_frame 0x0000000000000628 0xd0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_frame 0x00000000000006f8 0x1f0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_frame 0x00000000000008e8 0xa0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_frame 0x0000000000000988 0xa0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_frame 0x0000000000000a28 0x70 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_frame 0x0000000000000a98 0x40 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_frame 0x0000000000000ad8 0xe8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_frame 0x0000000000000bc0 0x58 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_frame 0x0000000000000c18 0x130 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_frame 0x0000000000000d48 0x58 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_frame 0x0000000000000da0 0xe8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_frame 0x0000000000000e88 0xd0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_frame 0x0000000000000f58 0x58 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_frame 0x0000000000000fb0 0x40 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_frame 0x0000000000000ff0 0xe8 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_frame 0x00000000000010d8 0x88 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_frame 0x0000000000001160 0x100 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_frame 0x0000000000001260 0x40 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_frame 0x00000000000012a0 0x88 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x0000000000001328 0xd0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x00000000000013f8 0x118 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_frame 0x0000000000001510 0x88 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_frame 0x0000000000001598 0x28 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_frame 0x00000000000015c0 0x130 esp-idf/log/liblog.a(log.c.obj) + .debug_frame 0x00000000000016f0 0xa0 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_frame 0x0000000000001790 0x328 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_frame 0x0000000000001ab8 0xa0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_frame 0x0000000000001b58 0x238 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_frame 0x0000000000001d90 0x268 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_frame 0x0000000000001ff8 0x88 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_frame 0x0000000000002080 0x40 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_frame 0x00000000000020c0 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_frame 0x00000000000021c0 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_frame 0x00000000000022c0 0x268 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_frame 0x0000000000002528 0x190 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_frame 0x00000000000026b8 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_frame 0x0000000000002788 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_frame 0x0000000000002810 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_frame 0x00000000000028f8 0x358 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_frame 0x0000000000002c50 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_frame 0x0000000000002ca8 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_frame 0x0000000000002d78 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_frame 0x0000000000002da0 0x118 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_frame 0x0000000000002eb8 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_frame 0x0000000000002f88 0x70 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_frame 0x0000000000002ff8 0x3a0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_frame 0x0000000000003398 0x838 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_frame 0x0000000000003bd0 0x190 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_frame 0x0000000000003d60 0x40 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_frame 0x0000000000003da0 0xa0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_frame 0x0000000000003e40 0x40 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_frame 0x0000000000003e80 0x40 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_frame 0x0000000000003ec0 0x88 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_frame 0x0000000000003f48 0x28 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_frame 0x0000000000003f70 0x70 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_frame 0x0000000000003fe0 0x190 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_frame 0x0000000000004170 0x250 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_frame 0x00000000000043c0 0x88 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_frame 0x0000000000004448 0x40 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_frame 0x0000000000004488 0x40 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_frame 0x00000000000044c8 0xe8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_frame 0x00000000000045b0 0x148 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_frame 0x00000000000046f8 0xb8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_frame 0x00000000000047b0 0xb8 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_frame 0x0000000000004868 0x298 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_frame 0x0000000000004b00 0x58 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_frame 0x0000000000004b58 0x70 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_frame 0x0000000000004bc8 0x118 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_frame 0x0000000000004ce0 0xb8 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_frame 0x0000000000004d98 0x538 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_frame 0x00000000000052d0 0x190 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_frame 0x0000000000005460 0x2f8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_frame 0x0000000000005758 0x208 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_frame 0x0000000000005960 0x1a8 esp-idf/bt/libbt.a(hli_api.c.obj) + .debug_frame 0x0000000000005b08 0x40 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_frame 0x0000000000005b48 0xd0 esp-idf/main/libmain.a(app_main.c.obj) + .debug_frame 0x0000000000005c18 0x328 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .debug_frame 0x0000000000005f40 0x160 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + .debug_frame 0x00000000000060a0 0x100 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + .debug_frame 0x00000000000061a0 0xb8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + .debug_frame 0x0000000000006258 0xb8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + .debug_frame 0x0000000000006310 0xa0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + .debug_frame 0x00000000000063b0 0x400 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .debug_frame 0x00000000000067b0 0x490 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .debug_frame 0x0000000000006c40 0x2e0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .debug_frame 0x0000000000006f20 0xa0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .debug_frame 0x0000000000006fc0 0x178 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + .debug_frame 0x0000000000007138 0x58 esp-idf/protocomm/libprotocomm.a(security0.c.obj) + .debug_frame 0x0000000000007190 0x118 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + .debug_frame 0x00000000000072a8 0x118 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + .debug_frame 0x00000000000073c0 0x148 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + .debug_frame 0x0000000000007508 0x148 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + .debug_frame 0x0000000000007650 0x298 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .debug_frame 0x00000000000078e8 0x1c0 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .debug_frame 0x0000000000007aa8 0x2e0 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .debug_frame 0x0000000000007d88 0x2e0 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .debug_frame 0x0000000000008068 0xa0 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + .debug_frame 0x0000000000008108 0x850 esp-idf/bt/libbt.a(bt.c.obj) + .debug_frame 0x0000000000008958 0x58 esp-idf/bt/libbt.a(addr.c.obj) + .debug_frame 0x00000000000089b0 0x118 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .debug_frame 0x0000000000008ac8 0xe8 esp-idf/bt/libbt.a(ble_store_util.c.obj) + .debug_frame 0x0000000000008bb0 0x148 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + .debug_frame 0x0000000000008cf8 0x3b8 esp-idf/bt/libbt.a(ble_hs.c.obj) + .debug_frame 0x00000000000090b0 0x2b0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + .debug_frame 0x0000000000009360 0x70 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + .debug_frame 0x00000000000093d0 0x148 esp-idf/bt/libbt.a(ble_att.c.obj) + .debug_frame 0x0000000000009518 0x10c0 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .debug_frame 0x000000000000a5d8 0x220 esp-idf/bt/libbt.a(ble_store.c.obj) + .debug_frame 0x000000000000a7f8 0x2e0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + .debug_frame 0x000000000000aad8 0xd0 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + .debug_frame 0x000000000000aba8 0x4d8 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .debug_frame 0x000000000000b080 0x40 esp-idf/bt/libbt.a(ble_hs_log.c.obj) + .debug_frame 0x000000000000b0c0 0x118 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + .debug_frame 0x000000000000b1d8 0x220 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + .debug_frame 0x000000000000b3f8 0xd00 esp-idf/bt/libbt.a(ble_gap.c.obj) + .debug_frame 0x000000000000c0f8 0x118 esp-idf/bt/libbt.a(ble_uuid.c.obj) + .debug_frame 0x000000000000c210 0x100 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + .debug_frame 0x000000000000c310 0x100 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + .debug_frame 0x000000000000c410 0x208 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .debug_frame 0x000000000000c618 0xa0 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + .debug_frame 0x000000000000c6b8 0x580 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .debug_frame 0x000000000000cc38 0x1c0 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .debug_frame 0x000000000000cdf8 0x268 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .debug_frame 0x000000000000d060 0x118 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .debug_frame 0x000000000000d178 0x310 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .debug_frame 0x000000000000d488 0x1f0 esp-idf/bt/libbt.a(ble_store_config.c.obj) + .debug_frame 0x000000000000d678 0xe8 esp-idf/bt/libbt.a(nimble_port.c.obj) + .debug_frame 0x000000000000d760 0x70 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + .debug_frame 0x000000000000d7d0 0x1c0 esp-idf/bt/libbt.a(endian.c.obj) + .debug_frame 0x000000000000d990 0x148 esp-idf/bt/libbt.a(os_mempool.c.obj) + .debug_frame 0x000000000000dad8 0xd0 esp-idf/bt/libbt.a(mem.c.obj) + .debug_frame 0x000000000000dba8 0x340 esp-idf/bt/libbt.a(os_mbuf.c.obj) + .debug_frame 0x000000000000dee8 0x70 esp-idf/bt/libbt.a(os_msys_init.c.obj) + .debug_frame 0x000000000000df58 0x4c0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .debug_frame 0x000000000000e418 0x118 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .debug_frame 0x000000000000e530 0x88 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + .debug_frame 0x000000000000e5b8 0x118 esp-idf/bt/libbt.a(transport.c.obj) + .debug_frame 0x000000000000e6d0 0x208 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + .debug_frame 0x000000000000e8d8 0x778 esp-idf/bt/libbt.a(ble_sm.c.obj) + .debug_frame 0x000000000000f050 0x88 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + .debug_frame 0x000000000000f0d8 0x58 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + .debug_frame 0x000000000000f130 0x658 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .debug_frame 0x000000000000f788 0x88 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + .debug_frame 0x000000000000f810 0x178 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + .debug_frame 0x000000000000f988 0xe8 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + .debug_frame 0x000000000000fa70 0x88 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + .debug_frame 0x000000000000faf8 0x40 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + .debug_frame 0x000000000000fb38 0x208 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + .debug_frame 0x000000000000fd40 0x6e8 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .debug_frame 0x0000000000010428 0xa90 esp-idf/json/libjson.a(cJSON.c.obj) + .debug_frame 0x0000000000010eb8 0x40 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + .debug_frame 0x0000000000010ef8 0x3a0 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .debug_frame 0x0000000000011298 0x70 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_frame 0x0000000000011308 0x178 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_frame 0x0000000000011480 0x268 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x00000000000116e8 0x160 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_frame 0x0000000000011848 0xd0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x0000000000011918 0x688 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_frame 0x0000000000011fa0 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_frame 0x0000000000011fc8 0x1d8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_frame 0x00000000000121a0 0x130 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_frame 0x00000000000122d0 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_frame 0x0000000000012310 0xa0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_frame 0x00000000000123b0 0x208 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_frame 0x00000000000125b8 0x58 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_frame 0x0000000000012610 0x58 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_frame 0x0000000000012668 0x130 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_frame 0x0000000000012798 0x130 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_frame 0x00000000000128c8 0xa0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_frame 0x0000000000012968 0x2f8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_frame 0x0000000000012c60 0xb8 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_frame 0x0000000000012d18 0x208 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_frame 0x0000000000012f20 0x88 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_frame 0x0000000000012fa8 0x2f8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_frame 0x00000000000132a0 0x70 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_frame 0x0000000000013310 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_frame 0x0000000000013350 0xa0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_frame 0x00000000000133f0 0xe8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_frame 0x00000000000134d8 0x130 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_frame 0x0000000000013608 0x58 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_frame 0x0000000000013660 0xd0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_frame 0x0000000000013730 0x88 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_frame 0x00000000000137b8 0x238 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_frame 0x00000000000139f0 0xb8 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_frame 0x0000000000013aa8 0x40 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_frame 0x0000000000013ae8 0x160 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_frame 0x0000000000013c48 0x58 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_frame 0x0000000000013ca0 0x2b0 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_frame 0x0000000000013f50 0xa0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_frame 0x0000000000013ff0 0x1a8 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_frame 0x0000000000014198 0xe8 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_frame 0x0000000000014280 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_frame 0x00000000000142d8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_frame 0x0000000000014300 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_frame 0x0000000000014340 0x148 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_frame 0x0000000000014488 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_frame 0x00000000000144c8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_frame 0x00000000000144f0 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_frame 0x0000000000014590 0x130 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_frame 0x00000000000146c0 0x40 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_frame 0x0000000000014700 0xd0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_frame 0x00000000000147d0 0xd0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_frame 0x00000000000148a0 0x238 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_frame 0x0000000000014ad8 0x970 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_frame 0x0000000000015448 0x400 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_frame 0x0000000000015848 0x1d8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_frame 0x0000000000015a20 0x118 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_frame 0x0000000000015b38 0x208 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_frame 0x0000000000015d40 0xe8 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_frame 0x0000000000015e28 0x328 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_frame 0x0000000000016150 0x148 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_frame 0x0000000000016298 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_frame 0x00000000000162d8 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_frame 0x0000000000016330 0x208 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_frame 0x0000000000016538 0xe8 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_frame 0x0000000000016620 0xb80 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_frame 0x00000000000171a0 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_frame 0x0000000000017240 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_frame 0x0000000000017280 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_frame 0x00000000000172a8 0x3b8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_frame 0x0000000000017660 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_frame 0x0000000000017688 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_frame 0x00000000000176b0 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_frame 0x00000000000176d8 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_frame 0x0000000000017760 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_frame 0x0000000000017830 0x280 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_frame 0x0000000000017ab0 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_frame 0x0000000000017b98 0x40 esp-idf/esp_coex/libesp_coex.a(coexist.c.obj) + .debug_frame 0x0000000000017bd8 0x100 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_frame 0x0000000000017cd8 0x250 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_frame 0x0000000000017f28 0x118 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_frame 0x0000000000018040 0x628 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_frame 0x0000000000018668 0x4c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_frame 0x0000000000018b28 0x2e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_frame 0x0000000000018e08 0x2e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_frame 0x00000000000190e8 0x2e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_frame 0x00000000000193c8 0x250 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_frame 0x0000000000019618 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_frame 0x0000000000019760 0x1d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_frame 0x0000000000019938 0x268 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_frame 0x0000000000019ba0 0x868 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_frame 0x000000000001a408 0x1f0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_frame 0x000000000001a5f8 0x178 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_frame 0x000000000001a770 0x208 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_frame 0x000000000001a978 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_frame 0x000000000001a9b8 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_frame 0x000000000001aa40 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_frame 0x000000000001aac8 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_frame 0x000000000001ab98 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_frame 0x000000000001abd8 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_frame 0x000000000001ac48 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_frame 0x000000000001acb8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_frame 0x000000000001ace0 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_frame 0x000000000001ad20 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_frame 0x000000000001add8 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_frame 0x000000000001ae48 0x160 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_frame 0x000000000001afa8 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_frame 0x000000000001b0d8 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_frame 0x000000000001b1c0 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_frame 0x000000000001b2c0 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_frame 0x000000000001b3c0 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_frame 0x000000000001b4c0 0x190 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_frame 0x000000000001b650 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_frame 0x000000000001b708 0x160 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_frame 0x000000000001b868 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_frame 0x000000000001ba28 0x1d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_frame 0x000000000001bc00 0x2b0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_frame 0x000000000001beb0 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_frame 0x000000000001bf98 0x448 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_frame 0x000000000001c3e0 0x298 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_frame 0x000000000001c678 0x148 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_frame 0x000000000001c7c0 0x100 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_frame 0x000000000001c8c0 0x2c8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_frame 0x000000000001cb88 0x28 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_frame 0x000000000001cbb0 0xb8 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_frame 0x000000000001cc68 0x1a8 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_frame 0x000000000001ce10 0x88 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_frame 0x000000000001ce98 0x70 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_frame 0x000000000001cf08 0x28 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_frame 0x000000000001cf30 0x418 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_frame 0x000000000001d348 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_frame 0x000000000001d388 0x148 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_frame 0x000000000001d4d0 0x6b8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_frame 0x000000000001db88 0x1a8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_frame 0x000000000001dd30 0xa0 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_frame 0x000000000001ddd0 0x238 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_frame 0x000000000001e008 0x28 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_frame 0x000000000001e030 0x70 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_frame 0x000000000001e0a0 0x88 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_frame 0x000000000001e128 0xd0 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_frame 0x000000000001e1f8 0x3b8 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_frame 0x000000000001e5b0 0x3a0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_frame 0x000000000001e950 0x160 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_frame 0x000000000001eab0 0x538 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_frame 0x000000000001efe8 0x118 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_frame 0x000000000001f100 0x250 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_frame 0x000000000001f350 0x118 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_frame 0x000000000001f468 0x1a8 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_frame 0x000000000001f610 0x3b8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_frame 0x000000000001f9c8 0x178 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_frame 0x000000000001fb40 0x58 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_frame 0x000000000001fb98 0x1d8 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_frame 0x000000000001fd70 0x100 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_frame 0x000000000001fe70 0xa0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_frame 0x000000000001ff10 0x28 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_frame 0x000000000001ff38 0xe8 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_frame 0x0000000000020020 0xd0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_frame 0x00000000000200f0 0x58 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_frame 0x0000000000020148 0x28 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_frame 0x0000000000020170 0x160 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_frame 0x00000000000202d0 0x2f8 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_frame 0x00000000000205c8 0x40 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_frame 0x0000000000020608 0x40 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_frame 0x0000000000020648 0x70 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_frame 0x00000000000206b8 0x2c8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_frame 0x0000000000020980 0xb8 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_frame 0x0000000000020a38 0x298 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_frame 0x0000000000020cd0 0x328 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_frame 0x0000000000020ff8 0x388 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_frame 0x0000000000021380 0x28 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_frame 0x00000000000213a8 0xe8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_frame 0x0000000000021490 0x118 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_frame 0x00000000000215a8 0xe8 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_frame 0x0000000000021690 0xb8 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_frame 0x0000000000021748 0x40 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_frame 0x0000000000021788 0x208 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_frame 0x0000000000021990 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_frame 0x0000000000021ac0 0x1c0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_frame 0x0000000000021c80 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_frame 0x0000000000021cd8 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_frame 0x0000000000021d78 0x5b0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_frame 0x0000000000022328 0x148 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_frame 0x0000000000022470 0x148 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_frame 0x00000000000225b8 0x670 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_frame 0x0000000000022c28 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_frame 0x0000000000022d10 0x148 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_frame 0x0000000000022e58 0x118 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_frame 0x0000000000022f70 0x160 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_frame 0x00000000000230d0 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_frame 0x0000000000023140 0x580 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_frame 0x00000000000236c0 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_frame 0x0000000000023790 0x280 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_frame 0x0000000000023a10 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_frame 0x0000000000023a38 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_frame 0x0000000000023a90 0x628 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_frame 0x00000000000240b8 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_frame 0x0000000000024170 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_frame 0x00000000000242a0 0x1a8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_frame 0x0000000000024448 0x208 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + .debug_frame 0x0000000000024650 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + .debug_frame 0x00000000000246a8 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + .debug_frame 0x00000000000247a8 0x118 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_frame 0x00000000000248c0 0x268 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_frame 0x0000000000024b28 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_frame 0x0000000000024be0 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_frame 0x0000000000024d10 0x178 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_frame 0x0000000000024e88 0x1f0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_frame 0x0000000000025078 0x268 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_frame 0x00000000000252e0 0x190 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_frame 0x0000000000025470 0x238 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_frame 0x00000000000256a8 0x3a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_frame 0x0000000000025a48 0x1d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_frame 0x0000000000025c20 0x400 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_frame 0x0000000000026020 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_frame 0x00000000000260a8 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .debug_frame 0x0000000000026118 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_frame 0x00000000000261d0 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_frame 0x0000000000026228 0x28 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_frame 0x0000000000026250 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .debug_frame 0x0000000000026278 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opvs.o) + .debug_frame 0x00000000000262a0 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .debug_frame 0x00000000000262e0 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .debug_frame 0x0000000000026308 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .debug_frame 0x0000000000026330 0x88 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + .debug_frame 0x00000000000263b8 0x88 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .debug_frame 0x0000000000026440 0xd0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .debug_frame 0x0000000000026510 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opv.o) + .debug_frame 0x0000000000026538 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + .debug_frame 0x0000000000026560 0xa0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_frame 0x0000000000026600 0x88 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .debug_frame 0x0000000000026688 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + .debug_frame 0x00000000000266e0 0xd0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .debug_frame 0x00000000000267b0 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .debug_frame 0x00000000000267d8 0x1c0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .debug_frame 0x0000000000026998 0x130 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .debug_frame 0x0000000000026ac8 0x70 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + .debug_frame 0x0000000000026b38 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_frame 0x0000000000026b60 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_frame 0x0000000000026b88 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_frame 0x0000000000026bb0 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_frame 0x0000000000026bd8 0x268 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_frame 0x0000000000026e40 0x58 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .debug_frame 0x0000000000026e98 0x640 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_frame 0x00000000000274d8 0xbe0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_frame 0x00000000000280b8 0x4c0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_frame 0x0000000000028578 0x1c0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .debug_frame 0x0000000000028738 0x208 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .debug_frame 0x0000000000028940 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_ceil.o) + .debug_frame 0x0000000000028968 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_floor.o) + .debug_frame 0x0000000000028990 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .debug_frame 0x00000000000289b8 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_frame 0x00000000000289f8 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .debug_frame 0x0000000000028a38 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_frame 0x0000000000028a78 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .debug_frame 0x0000000000028aa0 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_frame 0x0000000000028ae0 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_frame 0x0000000000028b20 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_frame 0x0000000000028b60 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_frame 0x0000000000028ba0 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_frame 0x0000000000028be0 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .debug_frame 0x0000000000028c20 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .debug_frame 0x0000000000028c60 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .debug_frame 0x0000000000028ca0 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .debug_frame 0x0000000000028ce0 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .debug_frame 0x0000000000028d20 0xb8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .debug_frame 0x0000000000028dd8 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_frame 0x0000000000028e18 0x44 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .debug_frame 0x0000000000028e5c 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_frame 0x0000000000028e84 0x70 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_frame 0x0000000000028ef4 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_frame 0x0000000000028f34 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .debug_frame 0x0000000000028f74 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .debug_frame 0x0000000000028f9c 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_frame 0x0000000000028fdc 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_frame 0x0000000000029004 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .debug_frame 0x000000000002905c 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .debug_frame 0x00000000000290b4 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_frame 0x00000000000290dc 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace_l.o) + .debug_frame 0x0000000000029104 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lnumeric.o) + .debug_frame 0x000000000002912c 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .debug_frame 0x0000000000029184 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_frame 0x00000000000291dc 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_frame 0x000000000002921c 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .debug_frame 0x000000000002925c 0x1d8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_frame 0x0000000000029434 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_frame 0x000000000002945c 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_nan.o) + .debug_frame 0x0000000000029484 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .debug_frame 0x00000000000294ac 0x70 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_frame 0x000000000002951c 0x70 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_frame 0x000000000002958c 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .debug_frame 0x00000000000295e4 0x8c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .debug_frame 0x0000000000029670 0x88 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + +.debug_info 0x0000000000000000 0x30bebc + .debug_info 0x0000000000000000 0x367 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_info 0x0000000000000367 0x23ba esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_info 0x0000000000002721 0xb59 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_info 0x000000000000327a 0xaa2 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_info 0x0000000000003d1c 0x5f1 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_info 0x000000000000430d 0xe53 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_info 0x0000000000005160 0x355f esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_info 0x00000000000086bf 0x337 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_info 0x00000000000089f6 0x24 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_info 0x0000000000008a1a 0x3e6f esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_info 0x000000000000c889 0x3f4 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_info 0x000000000000cc7d 0xf0d esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_info 0x000000000000db8a 0x23 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_info 0x000000000000dbad 0x23 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_info 0x000000000000dbd0 0x36dd esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_info 0x00000000000112ad 0x50c9 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_info 0x0000000000016376 0x34a esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_info 0x00000000000166c0 0x48aa esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_info 0x000000000001af6a 0x3ae0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_info 0x000000000001ea4a 0x22a5 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_info 0x0000000000020cef 0x3514 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_info 0x0000000000024203 0xa71 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_info 0x0000000000024c74 0x872 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_info 0x00000000000254e6 0x23 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_info 0x0000000000025509 0xa5d esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_info 0x0000000000025f66 0x155c esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_info 0x00000000000274c2 0x22b1 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x0000000000029773 0x26ef esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x000000000002be62 0x43c2 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_info 0x0000000000030224 0x1ace esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_info 0x0000000000031cf2 0x20d8 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_info 0x0000000000033dca 0xa79 esp-idf/log/liblog.a(log.c.obj) + .debug_info 0x0000000000034843 0x8fd esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_info 0x0000000000035140 0x2010 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_info 0x0000000000037150 0xed3 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_info 0x0000000000038023 0x1539 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_info 0x000000000003955c 0x6f63 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_info 0x00000000000404bf 0x80d esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_info 0x0000000000040ccc 0x506 esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_info 0x00000000000411d2 0x102 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_info 0x00000000000412d4 0xa68 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_info 0x0000000000041d3c 0xa86 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_info 0x00000000000427c2 0x310e esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_info 0x00000000000458d0 0x1220 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_info 0x0000000000046af0 0x27d2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_info 0x00000000000492c2 0x1987 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_info 0x000000000004ac49 0x3d2 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_info 0x000000000004b01b 0x537c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_info 0x0000000000050397 0x24f4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_info 0x000000000005288b 0xd74 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_info 0x00000000000535ff 0x22c9 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_info 0x00000000000558c8 0x1932 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_info 0x00000000000571fa 0xc35 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_info 0x0000000000057e2f 0xa5b esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_info 0x000000000005888a 0x3611 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_info 0x000000000005be9b 0x8698 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_info 0x0000000000064533 0x233f esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_info 0x0000000000066872 0x24 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_info 0x0000000000066896 0xe0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_info 0x0000000000066976 0x313 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_info 0x0000000000066c89 0xd1e esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_info 0x00000000000679a7 0x1f5 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_info 0x0000000000067b9c 0x2ec esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_info 0x0000000000067e88 0x2b6 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_info 0x000000000006813e 0x4cb esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_info 0x0000000000068609 0xe33 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_info 0x000000000006943c 0x126e esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_info 0x000000000006a6aa 0x347 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_info 0x000000000006a9f1 0xac1 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_info 0x000000000006b4b2 0x147a esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_info 0x000000000006c92c 0xee9 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_info 0x000000000006d815 0x138b esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_info 0x000000000006eba0 0x7e9 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_info 0x000000000006f389 0x16a8 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_info 0x0000000000070a31 0x2243 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_info 0x0000000000072c74 0x27c esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_info 0x0000000000072ef0 0x403 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_info 0x00000000000732f3 0xeb3 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_info 0x00000000000741a6 0x3e0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_info 0x0000000000074586 0x5736 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_info 0x0000000000079cbc 0x1b77 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_info 0x000000000007b833 0x48db esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_info 0x000000000008010e 0xf16 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_info 0x0000000000081024 0x24 esp-idf/bt/libbt.a(hli_vectors.S.obj) + .debug_info 0x0000000000081048 0x114a esp-idf/bt/libbt.a(hli_api.c.obj) + .debug_info 0x0000000000082192 0x1fc esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_info 0x000000000008238e 0x384e esp-idf/main/libmain.a(app_main.c.obj) + .debug_info 0x0000000000085bdc 0x6a62 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .debug_info 0x000000000008c63e 0x18ac esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + .debug_info 0x000000000008deea 0x1439 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + .debug_info 0x000000000008f323 0x186a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + .debug_info 0x0000000000090b8d 0x1c6e esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + .debug_info 0x00000000000927fb 0xf8a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + .debug_info 0x0000000000093785 0x253a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .debug_info 0x0000000000095cbf 0x27e6 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .debug_info 0x00000000000984a5 0x1ab2 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .debug_info 0x0000000000099f57 0xe39 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .debug_info 0x000000000009ad90 0x159d esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + .debug_info 0x000000000009c32d 0x2f0 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) + .debug_info 0x000000000009c61d 0x1499 esp-idf/protocomm/libprotocomm.a(security0.c.obj) + .debug_info 0x000000000009dab6 0x3451 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + .debug_info 0x00000000000a0f07 0x2eab esp-idf/protocomm/libprotocomm.a(security2.c.obj) + .debug_info 0x00000000000a3db2 0x19d5 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + .debug_info 0x00000000000a5787 0xa32 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + .debug_info 0x00000000000a61b9 0x3d1a esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .debug_info 0x00000000000a9ed3 0x1467 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .debug_info 0x00000000000ab33a 0x1c2f esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .debug_info 0x00000000000acf69 0x1c9f esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .debug_info 0x00000000000aec08 0x133f esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + .debug_info 0x00000000000aff47 0x459b esp-idf/bt/libbt.a(bt.c.obj) + .debug_info 0x00000000000b44e2 0x2a7 esp-idf/bt/libbt.a(addr.c.obj) + .debug_info 0x00000000000b4789 0xd64 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .debug_info 0x00000000000b54ed 0xa9d esp-idf/bt/libbt.a(ble_store_util.c.obj) + .debug_info 0x00000000000b5f8a 0xae3 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + .debug_info 0x00000000000b6a6d 0x3ba6 esp-idf/bt/libbt.a(ble_hs.c.obj) + .debug_info 0x00000000000ba613 0x2c46 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + .debug_info 0x00000000000bd259 0xd18 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + .debug_info 0x00000000000bdf71 0x1a3a esp-idf/bt/libbt.a(ble_att.c.obj) + .debug_info 0x00000000000bf9ab 0x936b esp-idf/bt/libbt.a(ble_gattc.c.obj) + .debug_info 0x00000000000c8d16 0x1625 esp-idf/bt/libbt.a(ble_store.c.obj) + .debug_info 0x00000000000ca33b 0xc4c esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) + .debug_info 0x00000000000caf87 0x2e3c esp-idf/bt/libbt.a(ble_att_clt.c.obj) + .debug_info 0x00000000000cddc3 0x64e esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + .debug_info 0x00000000000ce411 0x2a1b esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .debug_info 0x00000000000d0e2c 0x5bd esp-idf/bt/libbt.a(ble_hs_log.c.obj) + .debug_info 0x00000000000d13e9 0x98d esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + .debug_info 0x00000000000d1d76 0x29de esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + .debug_info 0x00000000000d4754 0x82e8 esp-idf/bt/libbt.a(ble_gap.c.obj) + .debug_info 0x00000000000dca3c 0xc1e esp-idf/bt/libbt.a(ble_uuid.c.obj) + .debug_info 0x00000000000dd65a 0xbfd esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + .debug_info 0x00000000000de257 0x21f9 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + .debug_info 0x00000000000e0450 0x27fc esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .debug_info 0x00000000000e2c4c 0x14c7 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + .debug_info 0x00000000000e4113 0x46db esp-idf/bt/libbt.a(ble_gatts.c.obj) + .debug_info 0x00000000000e87ee 0x1aab esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .debug_info 0x00000000000ea299 0x27de esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .debug_info 0x00000000000eca77 0xd0b esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .debug_info 0x00000000000ed782 0x2e25 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .debug_info 0x00000000000f05a7 0x1905 esp-idf/bt/libbt.a(ble_store_config.c.obj) + .debug_info 0x00000000000f1eac 0x154f esp-idf/bt/libbt.a(nimble_port.c.obj) + .debug_info 0x00000000000f33fb 0x3fd esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + .debug_info 0x00000000000f37f8 0x6ac esp-idf/bt/libbt.a(endian.c.obj) + .debug_info 0x00000000000f3ea4 0x12c4 esp-idf/bt/libbt.a(os_mempool.c.obj) + .debug_info 0x00000000000f5168 0xb51 esp-idf/bt/libbt.a(mem.c.obj) + .debug_info 0x00000000000f5cb9 0x283e esp-idf/bt/libbt.a(os_mbuf.c.obj) + .debug_info 0x00000000000f84f7 0x5ba esp-idf/bt/libbt.a(os_msys_init.c.obj) + .debug_info 0x00000000000f8ab1 0x39bf esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .debug_info 0x00000000000fc470 0x183e esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .debug_info 0x00000000000fdcae 0x25a esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + .debug_info 0x00000000000fdf08 0xf67 esp-idf/bt/libbt.a(transport.c.obj) + .debug_info 0x00000000000fee6f 0x26f5 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + .debug_info 0x0000000000101564 0x6745 esp-idf/bt/libbt.a(ble_sm.c.obj) + .debug_info 0x0000000000107ca9 0x1283 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + .debug_info 0x0000000000108f2c 0x50c esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + .debug_info 0x0000000000109438 0x5e36 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .debug_info 0x000000000010f26e 0x1071 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + .debug_info 0x00000000001102df 0x2b81 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + .debug_info 0x0000000000112e60 0x2020 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + .debug_info 0x0000000000114e80 0xf20 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + .debug_info 0x0000000000115da0 0xfd3 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + .debug_info 0x0000000000116d73 0x2a20 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + .debug_info 0x0000000000119793 0x696d esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .debug_info 0x0000000000120100 0x400f esp-idf/json/libjson.a(cJSON.c.obj) + .debug_info 0x000000000012410f 0x660 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + .debug_info 0x000000000012476f 0x3c02 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .debug_info 0x0000000000128371 0x24 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_info 0x0000000000128395 0x38 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_info 0x00000000001283cd 0x590 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_info 0x000000000012895d 0x22 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_info 0x000000000012897f 0x10aa esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_info 0x0000000000129a29 0x1927 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x000000000012b350 0x2e97 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_info 0x000000000012e1e7 0x15e8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_info 0x000000000012f7cf 0xe54 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x0000000000130623 0x9f32 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_info 0x000000000013a555 0x9f esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_info 0x000000000013a5f4 0x4084 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_info 0x000000000013e678 0x12dd esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_info 0x000000000013f955 0x217b esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_info 0x0000000000141ad0 0xbbc esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_info 0x000000000014268c 0x361c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_info 0x0000000000145ca8 0x1c1 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_info 0x0000000000145e69 0x1ba esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_info 0x0000000000146023 0x16d esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_info 0x0000000000146190 0xe35 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_info 0x0000000000146fc5 0x15b8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_info 0x000000000014857d 0x3e4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_info 0x0000000000148961 0x5626 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_info 0x000000000014df87 0x4b0f esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_info 0x0000000000152a96 0x127b esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_info 0x0000000000153d11 0xad7 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_info 0x00000000001547e8 0xc61 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_info 0x0000000000155449 0x27e2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_info 0x0000000000157c2b 0x102e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_info 0x0000000000158c59 0x10da esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_info 0x0000000000159d33 0x1100 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_info 0x000000000015ae33 0x14c4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_info 0x000000000015c2f7 0x390e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_info 0x000000000015fc05 0x376 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_info 0x000000000015ff7b 0x950 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_info 0x00000000001608cb 0xd6c esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_info 0x0000000000161637 0x271b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_info 0x0000000000163d52 0x3a80 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_info 0x00000000001677d2 0x23 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_info 0x00000000001677f5 0x174 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_info 0x0000000000167969 0x1761 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_info 0x00000000001690ca 0x823 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_info 0x00000000001698ed 0x2c23 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_info 0x000000000016c510 0x33af esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_info 0x000000000016f8bf 0x4086 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_info 0x0000000000173945 0x429 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_info 0x0000000000173d6e 0x251 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_info 0x0000000000173fbf 0x364 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_info 0x0000000000174323 0x140 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_info 0x0000000000174463 0x17b esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_info 0x00000000001745de 0x33b esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_info 0x0000000000174919 0xe88 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_info 0x00000000001757a1 0x112 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_info 0x00000000001758b3 0x810 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_info 0x00000000001760c3 0x676 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_info 0x0000000000176739 0x14e6 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_info 0x0000000000177c1f 0x56b esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_info 0x000000000017818a 0x7d1 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_info 0x000000000017895b 0x866 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_info 0x00000000001791c1 0x2ff2 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_info 0x000000000017c1b3 0xcb33 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_info 0x0000000000188ce6 0xc5f9 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_info 0x00000000001952df 0x72a2 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_info 0x000000000019c581 0x158d esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_info 0x000000000019db0e 0x9419 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_info 0x00000000001a6f27 0x40b2 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_info 0x00000000001aafd9 0x7d8a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_info 0x00000000001b2d63 0x77f9 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_info 0x00000000001ba55c 0xeca esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_info 0x00000000001bb426 0x2e19 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_info 0x00000000001be23f 0x177f esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_info 0x00000000001bf9be 0xa25 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_info 0x00000000001c03e3 0x6a41 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_info 0x00000000001c6e24 0x1003 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_info 0x00000000001c7e27 0x538 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_info 0x00000000001c835f 0x370 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_info 0x00000000001c86cf 0x29e6 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_info 0x00000000001cb0b5 0x232 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_info 0x00000000001cb2e7 0x378 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_info 0x00000000001cb65f 0x330 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_info 0x00000000001cb98f 0x36e esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_info 0x00000000001cbcfd 0xfad esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_info 0x00000000001cccaa 0x128d esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_info 0x00000000001cdf37 0xcf7 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_info 0x00000000001cec2e 0x17f esp-idf/esp_coex/libesp_coex.a(coexist.c.obj) + .debug_info 0x00000000001cedad 0x1fd9 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_info 0x00000000001d0d86 0x1f41 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_info 0x00000000001d2cc7 0xb69 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_info 0x00000000001d3830 0x2f7b esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_info 0x00000000001d67ab 0x47f7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_info 0x00000000001dafa2 0x1d27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_info 0x00000000001dccc9 0x23ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_info 0x00000000001df076 0x2107 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_info 0x00000000001e117d 0x1681 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_info 0x00000000001e27fe 0x1cef esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_info 0x00000000001e44ed 0x2147 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_info 0x00000000001e6634 0x17d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_info 0x00000000001e7e0c 0x6d08 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_info 0x00000000001eeb14 0x6292 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_info 0x00000000001f4da6 0x1b90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_info 0x00000000001f6936 0x20ea esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_info 0x00000000001f8a20 0x4d2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_info 0x00000000001f8ef2 0x15c7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_info 0x00000000001fa4b9 0x245 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_info 0x00000000001fa6fe 0x387 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_info 0x00000000001faa85 0x616 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_info 0x00000000001fb09b 0x7a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_info 0x00000000001fb83b 0x7a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_info 0x00000000001fbfdb 0x11a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_info 0x00000000001fc0f5 0x15b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_info 0x00000000001fc250 0x77b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_info 0x00000000001fc9cb 0x28b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_info 0x00000000001fcc56 0x155d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_info 0x00000000001fe1b3 0x1591 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_info 0x00000000001ff744 0x9e5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_info 0x0000000000200129 0x879 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_info 0x00000000002009a2 0x899 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_info 0x000000000020123b 0xa4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_info 0x0000000000201c89 0x15bc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_info 0x0000000000203245 0x3e1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_info 0x0000000000203626 0x1c9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_info 0x00000000002052c0 0xd97 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_info 0x0000000000206057 0x1da2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_info 0x0000000000207df9 0x14b7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_info 0x00000000002092b0 0xd26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_info 0x0000000000209fd6 0x3ce4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_info 0x000000000020dcba 0x2329 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_info 0x000000000020ffe3 0x1cc9 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_info 0x0000000000211cac 0x12ff esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_info 0x0000000000212fab 0x2eeb esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_info 0x0000000000215e96 0x257 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_info 0x00000000002160ed 0xcd3 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_info 0x0000000000216dc0 0x8d4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_info 0x0000000000217694 0x682 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_info 0x0000000000217d16 0x49e esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_info 0x00000000002181b4 0x152 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_info 0x0000000000218306 0x294 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .debug_info 0x000000000021859a 0x6175 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_info 0x000000000021e70f 0x109 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_info 0x000000000021e818 0x78d esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_info 0x000000000021efa5 0x7da8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_info 0x0000000000226d4d 0x17fc esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_info 0x0000000000228549 0x445 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_info 0x000000000022898e 0x20aa esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_info 0x000000000022aa38 0x168 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_info 0x000000000022aba0 0xd41 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_info 0x000000000022b8e1 0x383 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_info 0x000000000022bc64 0x961 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_info 0x000000000022c5c5 0x2d82 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_info 0x000000000022f347 0x2a5b esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_info 0x0000000000231da2 0x1795 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_info 0x0000000000233537 0x3a25 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_info 0x0000000000236f5c 0x2de1 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_info 0x0000000000239d3d 0x348b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_info 0x000000000023d1c8 0x129a esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_info 0x000000000023e462 0x1d2f esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_info 0x0000000000240191 0x3b9e esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_info 0x0000000000243d2f 0x1eff esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_info 0x0000000000245c2e 0xff3 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_info 0x0000000000246c21 0x16b4 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_info 0x00000000002482d5 0x1927 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_info 0x0000000000249bfc 0xc34 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_info 0x000000000024a830 0xaf3 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_info 0x000000000024b323 0x142c esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_info 0x000000000024c74f 0x19fb esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_info 0x000000000024e14a 0x76e esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_info 0x000000000024e8b8 0xb5d esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_info 0x000000000024f415 0x16f3 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_info 0x0000000000250b08 0x332f esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_info 0x0000000000253e37 0xd82 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_info 0x0000000000254bb9 0x7e3 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_info 0x000000000025539c 0xb25 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_info 0x0000000000255ec1 0x1752 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_info 0x0000000000257613 0x16c3 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_info 0x0000000000258cd6 0x2757 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_info 0x000000000025b42d 0x2bb0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_info 0x000000000025dfdd 0x4821 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_info 0x00000000002627fe 0x2a8 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_info 0x0000000000262aa6 0x80f esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_info 0x00000000002632b5 0xb08 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_info 0x0000000000263dbd 0xe46 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_info 0x0000000000264c03 0x31e esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_info 0x0000000000264f21 0xa64 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_info 0x0000000000265985 0xb89 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_info 0x000000000026650e 0x40c esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_info 0x000000000026691a 0x4096 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_info 0x000000000026a9b0 0x18d6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_info 0x000000000026c286 0x4064 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_info 0x00000000002702ea 0xe0a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_info 0x00000000002710f4 0x31f2 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_info 0x00000000002742e6 0x47c3 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_info 0x0000000000278aa9 0x1f7e esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_info 0x000000000027aa27 0x10e6 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_info 0x000000000027bb0d 0x704a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_info 0x0000000000282b57 0x1c96 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_info 0x00000000002847ed 0x1068 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_info 0x0000000000285855 0x24b0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_info 0x0000000000287d05 0x27ab esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_info 0x000000000028a4b0 0xa1a esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_info 0x000000000028aeca 0x7559 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_info 0x0000000000292423 0xe12 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_info 0x0000000000293235 0x1aaa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_info 0x0000000000294cdf 0x3fa esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_info 0x00000000002950d9 0x8a1 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_info 0x000000000029597a 0x6d1b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_info 0x000000000029c695 0x1810 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_info 0x000000000029dea5 0xc56 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_info 0x000000000029eafb 0x1e1d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_info 0x00000000002a0918 0x1693 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + .debug_info 0x00000000002a1fab 0x828 esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + .debug_info 0x00000000002a27d3 0x1395 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + .debug_info 0x00000000002a3b68 0xfb7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_info 0x00000000002a4b1f 0x11cb esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_info 0x00000000002a5cea 0xc42 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_info 0x00000000002a692c 0xe7c esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_info 0x00000000002a77a8 0x17e2 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_info 0x00000000002a8f8a 0x10ed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_info 0x00000000002aa077 0x274e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_info 0x00000000002ac7c5 0x1e09 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_info 0x00000000002ae5ce 0x1833 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_info 0x00000000002afe01 0x294f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_info 0x00000000002b2750 0x466b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_info 0x00000000002b6dbb 0x5231 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_info 0x00000000002bbfec 0x1155 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_info 0x00000000002bd141 0x274 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .debug_info 0x00000000002bd3b5 0x139e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_info 0x00000000002be753 0x5a2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_info 0x00000000002becf5 0x846 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_info 0x00000000002bf53b 0x5d /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .debug_info 0x00000000002bf598 0x78 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .debug_info 0x00000000002bf610 0x55 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .debug_info 0x00000000002bf665 0x7a /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .debug_info 0x00000000002bf6df 0x7a /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .debug_info 0x00000000002bf759 0x84 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .debug_info 0x00000000002bf7dd 0x9d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opvs.o) + .debug_info 0x00000000002bf87a 0x142 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .debug_info 0x00000000002bf9bc 0x11d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .debug_info 0x00000000002bfad9 0x5a9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .debug_info 0x00000000002c0082 0xdef /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + .debug_info 0x00000000002c0e71 0x1134 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .debug_info 0x00000000002c1fa5 0xad3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .debug_info 0x00000000002c2a78 0x3a6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + .debug_info 0x00000000002c2e1e 0xa3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opv.o) + .debug_info 0x00000000002c2ec1 0x88e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + .debug_info 0x00000000002c374f 0x8b6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + .debug_info 0x00000000002c4005 0xa54 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_info 0x00000000002c4a59 0x5a7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .debug_info 0x00000000002c5000 0x276 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + .debug_info 0x00000000002c5276 0xa79 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .debug_info 0x00000000002c5cef 0x9d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .debug_info 0x00000000002c5d8c 0x2533 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .debug_info 0x00000000002c82bf 0x960 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .debug_info 0x00000000002c8c1f 0xa1d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + .debug_info 0x00000000002c963c 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divsf3.o) + .debug_info 0x00000000002c9660 0x6bf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_info 0x00000000002c9d1f 0x722 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_info 0x00000000002ca441 0x685 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_info 0x00000000002caac6 0x6ef /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_info 0x00000000002cb1b5 0x1a30 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_info 0x00000000002ccbe5 0x230 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .debug_info 0x00000000002cce15 0x5d93 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_info 0x00000000002d2ba8 0x9153 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_info 0x00000000002dbcfb 0x4de2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_info 0x00000000002e0add 0x1459 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .debug_info 0x00000000002e1f36 0x181c /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .debug_info 0x00000000002e3752 0x21a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_ceil.o) + .debug_info 0x00000000002e396c 0x21a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_floor.o) + .debug_info 0x00000000002e3b86 0x834 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .debug_info 0x00000000002e43ba 0xb93 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_info 0x00000000002e4f4d 0x98f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .debug_info 0x00000000002e58dc 0xf98 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_info 0x00000000002e6874 0xc8e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .debug_info 0x00000000002e7502 0xbea /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_info 0x00000000002e80ec 0x9ba /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_info 0x00000000002e8aa6 0xaf2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_info 0x00000000002e9598 0x923 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_info 0x00000000002e9ebb 0xb63 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_info 0x00000000002eaa1e 0x9fe /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .debug_info 0x00000000002eb41c 0xabc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .debug_info 0x00000000002ebed8 0x9ef /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .debug_info 0x00000000002ec8c7 0x9b6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .debug_info 0x00000000002ed27d 0xa22 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .debug_info 0x00000000002edc9f 0x1ec2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .debug_info 0x00000000002efb61 0x286b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_info 0x00000000002f23cc 0x23f8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .debug_info 0x00000000002f47c4 0x8e5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_info 0x00000000002f50a9 0x2c2b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_info 0x00000000002f7cd4 0x992 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_info 0x00000000002f8666 0x9b1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .debug_info 0x00000000002f9017 0x98f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .debug_info 0x00000000002f99a6 0x1963 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_info 0x00000000002fb309 0x882 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_info 0x00000000002fbb8b 0x1398 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .debug_info 0x00000000002fcf23 0x389 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .debug_info 0x00000000002fd2ac 0xea /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_info 0x00000000002fd396 0xacf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace_l.o) + .debug_info 0x00000000002fde65 0xb6a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lnumeric.o) + .debug_info 0x00000000002fe9cf 0xcb4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .debug_info 0x00000000002ff683 0xbef /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_info 0x0000000000300272 0xbee /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_info 0x0000000000300e60 0xbe9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .debug_info 0x0000000000301a49 0x1ebf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_info 0x0000000000303908 0x1e0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_info 0x0000000000303ae8 0xd3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_nan.o) + .debug_info 0x0000000000303bbb 0xcf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .debug_info 0x0000000000303c8a 0xe03 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_info 0x0000000000304a8d 0xdfb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_info 0x0000000000305888 0x2080 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .debug_info 0x0000000000307908 0x225f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .debug_info 0x0000000000309b67 0x2355 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + +.debug_abbrev 0x0000000000000000 0x5d0d9 + .debug_abbrev 0x0000000000000000 0x1c5 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_abbrev 0x00000000000001c5 0x508 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_abbrev 0x00000000000006cd 0x311 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_abbrev 0x00000000000009de 0x283 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_abbrev 0x0000000000000c61 0x1cb esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_abbrev 0x0000000000000e2c 0x2dd esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_abbrev 0x0000000000001109 0x4e2 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_abbrev 0x00000000000015eb 0x1e2 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_abbrev 0x00000000000017cd 0x14 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_abbrev 0x00000000000017e1 0x447 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_abbrev 0x0000000000001c28 0x196 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_abbrev 0x0000000000001dbe 0x359 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_abbrev 0x0000000000002117 0x14 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_abbrev 0x000000000000212b 0x14 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_abbrev 0x000000000000213f 0x2e7 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_abbrev 0x0000000000002426 0x525 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_abbrev 0x000000000000294b 0x158 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_abbrev 0x0000000000002aa3 0x4b8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_abbrev 0x0000000000002f5b 0x43e esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_abbrev 0x0000000000003399 0x34a esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_abbrev 0x00000000000036e3 0x367 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_abbrev 0x0000000000003a4a 0x28f esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_abbrev 0x0000000000003cd9 0x258 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_abbrev 0x0000000000003f31 0x14 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_abbrev 0x0000000000003f45 0x296 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_abbrev 0x00000000000041db 0x271 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_abbrev 0x000000000000444c 0x223 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x000000000000466f 0x331 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x00000000000049a0 0x3cf esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_abbrev 0x0000000000004d6f 0x380 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_abbrev 0x00000000000050ef 0x1f9 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_abbrev 0x00000000000052e8 0x3d4 esp-idf/log/liblog.a(log.c.obj) + .debug_abbrev 0x00000000000056bc 0x2d5 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_abbrev 0x0000000000005991 0x476 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_abbrev 0x0000000000005e07 0x36a esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_abbrev 0x0000000000006171 0x3c2 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_abbrev 0x0000000000006533 0x484 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_abbrev 0x00000000000069b7 0x2ad esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_abbrev 0x0000000000006c64 0xed esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_abbrev 0x0000000000006d51 0xa5 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_abbrev 0x0000000000006df6 0x299 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_abbrev 0x000000000000708f 0x2ed esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_abbrev 0x000000000000737c 0x628 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_abbrev 0x00000000000079a4 0x28d esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_abbrev 0x0000000000007c31 0x398 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_abbrev 0x0000000000007fc9 0x3cb esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_abbrev 0x0000000000008394 0x191 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_abbrev 0x0000000000008525 0x617 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_abbrev 0x0000000000008b3c 0x281 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_abbrev 0x0000000000008dbd 0x2bd esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_abbrev 0x000000000000907a 0x244 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_abbrev 0x00000000000092be 0x352 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_abbrev 0x0000000000009610 0x28a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_abbrev 0x000000000000989a 0x32b esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_abbrev 0x0000000000009bc5 0x404 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_abbrev 0x0000000000009fc9 0x5ab esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_abbrev 0x000000000000a574 0x62f esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_abbrev 0x000000000000aba3 0x14 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_abbrev 0x000000000000abb7 0xa4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_abbrev 0x000000000000ac5b 0x17b esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_abbrev 0x000000000000add6 0x228 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_abbrev 0x000000000000affe 0x165 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_abbrev 0x000000000000b163 0x106 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_abbrev 0x000000000000b269 0x1ab esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_abbrev 0x000000000000b414 0x229 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_abbrev 0x000000000000b63d 0x2be esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_abbrev 0x000000000000b8fb 0x3e2 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_abbrev 0x000000000000bcdd 0x1bd esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_abbrev 0x000000000000be9a 0x251 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_abbrev 0x000000000000c0eb 0x2c7 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_abbrev 0x000000000000c3b2 0x32a esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_abbrev 0x000000000000c6dc 0x38d esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_abbrev 0x000000000000ca69 0x1e2 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_abbrev 0x000000000000cc4b 0x4b8 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_abbrev 0x000000000000d103 0x53c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_abbrev 0x000000000000d63f 0x189 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_abbrev 0x000000000000d7c8 0x18d esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_abbrev 0x000000000000d955 0x414 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_abbrev 0x000000000000dd69 0x127 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_abbrev 0x000000000000de90 0x582 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_abbrev 0x000000000000e412 0x2e0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_abbrev 0x000000000000e6f2 0x666 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_abbrev 0x000000000000ed58 0x373 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_abbrev 0x000000000000f0cb 0x14 esp-idf/bt/libbt.a(hli_vectors.S.obj) + .debug_abbrev 0x000000000000f0df 0x43f esp-idf/bt/libbt.a(hli_api.c.obj) + .debug_abbrev 0x000000000000f51e 0x13c esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_abbrev 0x000000000000f65a 0x432 esp-idf/main/libmain.a(app_main.c.obj) + .debug_abbrev 0x000000000000fa8c 0x59c esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .debug_abbrev 0x0000000000010028 0x358 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + .debug_abbrev 0x0000000000010380 0x2ea esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + .debug_abbrev 0x000000000001066a 0x3cc esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + .debug_abbrev 0x0000000000010a36 0x3c2 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + .debug_abbrev 0x0000000000010df8 0x317 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + .debug_abbrev 0x000000000001110f 0x33e esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .debug_abbrev 0x000000000001144d 0x33e esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .debug_abbrev 0x000000000001178b 0x2bb esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .debug_abbrev 0x0000000000011a46 0x24e esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .debug_abbrev 0x0000000000011c94 0x335 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + .debug_abbrev 0x0000000000011fc9 0xc2 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) + .debug_abbrev 0x000000000001208b 0x2d0 esp-idf/protocomm/libprotocomm.a(security0.c.obj) + .debug_abbrev 0x000000000001235b 0x44e esp-idf/protocomm/libprotocomm.a(security1.c.obj) + .debug_abbrev 0x00000000000127a9 0x42d esp-idf/protocomm/libprotocomm.a(security2.c.obj) + .debug_abbrev 0x0000000000012bd6 0x328 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + .debug_abbrev 0x0000000000012efe 0x1c0 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + .debug_abbrev 0x00000000000130be 0x4fe esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .debug_abbrev 0x00000000000135bc 0x2cc esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .debug_abbrev 0x0000000000013888 0x2d0 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .debug_abbrev 0x0000000000013b58 0x2d0 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .debug_abbrev 0x0000000000013e28 0x2ce esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + .debug_abbrev 0x00000000000140f6 0x4b0 esp-idf/bt/libbt.a(bt.c.obj) + .debug_abbrev 0x00000000000145a6 0x186 esp-idf/bt/libbt.a(addr.c.obj) + .debug_abbrev 0x000000000001472c 0x339 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .debug_abbrev 0x0000000000014a65 0x316 esp-idf/bt/libbt.a(ble_store_util.c.obj) + .debug_abbrev 0x0000000000014d7b 0x2e2 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + .debug_abbrev 0x000000000001505d 0x728 esp-idf/bt/libbt.a(ble_hs.c.obj) + .debug_abbrev 0x0000000000015785 0x427 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + .debug_abbrev 0x0000000000015bac 0x2bb esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + .debug_abbrev 0x0000000000015e67 0x4a5 esp-idf/bt/libbt.a(ble_att.c.obj) + .debug_abbrev 0x000000000001630c 0x54e esp-idf/bt/libbt.a(ble_gattc.c.obj) + .debug_abbrev 0x000000000001685a 0x3fe esp-idf/bt/libbt.a(ble_store.c.obj) + .debug_abbrev 0x0000000000016c58 0x1ed esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) + .debug_abbrev 0x0000000000016e45 0x3f2 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + .debug_abbrev 0x0000000000017237 0x1a7 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + .debug_abbrev 0x00000000000173de 0x368 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .debug_abbrev 0x0000000000017746 0x1a5 esp-idf/bt/libbt.a(ble_hs_log.c.obj) + .debug_abbrev 0x00000000000178eb 0x24a esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + .debug_abbrev 0x0000000000017b35 0x553 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + .debug_abbrev 0x0000000000018088 0x614 esp-idf/bt/libbt.a(ble_gap.c.obj) + .debug_abbrev 0x000000000001869c 0x242 esp-idf/bt/libbt.a(ble_uuid.c.obj) + .debug_abbrev 0x00000000000188de 0x301 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + .debug_abbrev 0x0000000000018bdf 0x4e5 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + .debug_abbrev 0x00000000000190c4 0x574 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .debug_abbrev 0x0000000000019638 0x361 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + .debug_abbrev 0x0000000000019999 0x5ba esp-idf/bt/libbt.a(ble_gatts.c.obj) + .debug_abbrev 0x0000000000019f53 0x355 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .debug_abbrev 0x000000000001a2a8 0x60f esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .debug_abbrev 0x000000000001a8b7 0x274 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .debug_abbrev 0x000000000001ab2b 0x588 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .debug_abbrev 0x000000000001b0b3 0x42c esp-idf/bt/libbt.a(ble_store_config.c.obj) + .debug_abbrev 0x000000000001b4df 0x35c esp-idf/bt/libbt.a(nimble_port.c.obj) + .debug_abbrev 0x000000000001b83b 0x15f esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + .debug_abbrev 0x000000000001b99a 0x137 esp-idf/bt/libbt.a(endian.c.obj) + .debug_abbrev 0x000000000001bad1 0x382 esp-idf/bt/libbt.a(os_mempool.c.obj) + .debug_abbrev 0x000000000001be53 0x293 esp-idf/bt/libbt.a(mem.c.obj) + .debug_abbrev 0x000000000001c0e6 0x51f esp-idf/bt/libbt.a(os_mbuf.c.obj) + .debug_abbrev 0x000000000001c605 0x1e6 esp-idf/bt/libbt.a(os_msys_init.c.obj) + .debug_abbrev 0x000000000001c7eb 0x524 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .debug_abbrev 0x000000000001cd0f 0x48a esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .debug_abbrev 0x000000000001d199 0x12a esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + .debug_abbrev 0x000000000001d2c3 0x31d esp-idf/bt/libbt.a(transport.c.obj) + .debug_abbrev 0x000000000001d5e0 0x4e6 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + .debug_abbrev 0x000000000001dac6 0x5f9 esp-idf/bt/libbt.a(ble_sm.c.obj) + .debug_abbrev 0x000000000001e0bf 0x2df esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + .debug_abbrev 0x000000000001e39e 0x1fd esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + .debug_abbrev 0x000000000001e59b 0x559 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .debug_abbrev 0x000000000001eaf4 0x2b6 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + .debug_abbrev 0x000000000001edaa 0x38e esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + .debug_abbrev 0x000000000001f138 0x468 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + .debug_abbrev 0x000000000001f5a0 0x2dd esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + .debug_abbrev 0x000000000001f87d 0x278 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + .debug_abbrev 0x000000000001faf5 0x486 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + .debug_abbrev 0x000000000001ff7b 0x532 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .debug_abbrev 0x00000000000204ad 0x42a esp-idf/json/libjson.a(cJSON.c.obj) + .debug_abbrev 0x00000000000208d7 0x23a esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + .debug_abbrev 0x0000000000020b11 0x329 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .debug_abbrev 0x0000000000020e3a 0x14 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_abbrev 0x0000000000020e4e 0x21 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_abbrev 0x0000000000020e6f 0x25a esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_abbrev 0x00000000000210c9 0x12 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_abbrev 0x00000000000210db 0x2be esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_abbrev 0x0000000000021399 0x3a1 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x000000000002173a 0x391 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_abbrev 0x0000000000021acb 0x106 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_abbrev 0x0000000000021bd1 0x2c7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x0000000000021e98 0x650 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_abbrev 0x00000000000224e8 0x62 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_abbrev 0x000000000002254a 0x557 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_abbrev 0x0000000000022aa1 0x39f esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_abbrev 0x0000000000022e40 0x1bd esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_abbrev 0x0000000000022ffd 0x207 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_abbrev 0x0000000000023204 0x4f4 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_abbrev 0x00000000000236f8 0xbd esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_abbrev 0x00000000000237b5 0x140 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_abbrev 0x00000000000238f5 0xe0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_abbrev 0x00000000000239d5 0x355 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_abbrev 0x0000000000023d2a 0x41e esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_abbrev 0x0000000000024148 0x269 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_abbrev 0x00000000000243b1 0x5bf esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_abbrev 0x0000000000024970 0x53b esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_abbrev 0x0000000000024eab 0x3fc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_abbrev 0x00000000000252a7 0x281 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_abbrev 0x0000000000025528 0x142 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_abbrev 0x000000000002566a 0x493 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_abbrev 0x0000000000025afd 0x254 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_abbrev 0x0000000000025d51 0x1d5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_abbrev 0x0000000000025f26 0x271 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_abbrev 0x0000000000026197 0x2b6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_abbrev 0x000000000002644d 0x454 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_abbrev 0x00000000000268a1 0x183 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_abbrev 0x0000000000026a24 0x2c4 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_abbrev 0x0000000000026ce8 0x367 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_abbrev 0x000000000002704f 0x4a1 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_abbrev 0x00000000000274f0 0x32a esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_abbrev 0x000000000002781a 0x14 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_abbrev 0x000000000002782e 0xe5 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_abbrev 0x0000000000027913 0x36d esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_abbrev 0x0000000000027c80 0x1f4 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_abbrev 0x0000000000027e74 0x3b9 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_abbrev 0x000000000002822d 0x3ec esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_abbrev 0x0000000000028619 0x49a esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_abbrev 0x0000000000028ab3 0x23c esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_abbrev 0x0000000000028cef 0x86 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_abbrev 0x0000000000028d75 0xbd esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_abbrev 0x0000000000028e32 0xb8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_abbrev 0x0000000000028eea 0x10b esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_abbrev 0x0000000000028ff5 0x1ec esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_abbrev 0x00000000000291e1 0x310 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_abbrev 0x00000000000294f1 0x96 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_abbrev 0x0000000000029587 0x1b5 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_abbrev 0x000000000002973c 0x23d esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_abbrev 0x0000000000029979 0x3ff esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_abbrev 0x0000000000029d78 0x1d6 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_abbrev 0x0000000000029f4e 0x225 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_abbrev 0x000000000002a173 0x177 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_abbrev 0x000000000002a2ea 0x485 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_abbrev 0x000000000002a76f 0x102c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_abbrev 0x000000000002b79b 0xf84 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_abbrev 0x000000000002c71f 0xbe9 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_abbrev 0x000000000002d308 0x512 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_abbrev 0x000000000002d81a 0xe49 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_abbrev 0x000000000002e663 0x88c esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_abbrev 0x000000000002eeef 0xce3 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_abbrev 0x000000000002fbd2 0xd8e esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_abbrev 0x0000000000030960 0x422 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_abbrev 0x0000000000030d82 0x61a esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_abbrev 0x000000000003139c 0x471 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_abbrev 0x000000000003180d 0x2a1 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_abbrev 0x0000000000031aae 0x5c9 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_abbrev 0x0000000000032077 0x1c7 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_abbrev 0x000000000003223e 0x1e1 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_abbrev 0x000000000003241f 0x190 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_abbrev 0x00000000000325af 0x435 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_abbrev 0x00000000000329e4 0x10c esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_abbrev 0x0000000000032af0 0x16b esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_abbrev 0x0000000000032c5b 0x149 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_abbrev 0x0000000000032da4 0x1a6 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_abbrev 0x0000000000032f4a 0x2fe esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_abbrev 0x0000000000033248 0x32d esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_abbrev 0x0000000000033575 0x201 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_abbrev 0x0000000000033776 0x108 esp-idf/esp_coex/libesp_coex.a(coexist.c.obj) + .debug_abbrev 0x000000000003387e 0x37c esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_abbrev 0x0000000000033bfa 0x40a esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_abbrev 0x0000000000034004 0x284 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_abbrev 0x0000000000034288 0x4d5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_abbrev 0x000000000003475d 0x473 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_abbrev 0x0000000000034bd0 0x324 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_abbrev 0x0000000000034ef4 0x4b2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_abbrev 0x00000000000353a6 0x38a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_abbrev 0x0000000000035730 0x337 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_abbrev 0x0000000000035a67 0x43e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_abbrev 0x0000000000035ea5 0x44a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_abbrev 0x00000000000362ef 0x35f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_abbrev 0x000000000003664e 0x43b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_abbrev 0x0000000000036a89 0x33e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_abbrev 0x0000000000036dc7 0x3cc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_abbrev 0x0000000000037193 0x3b1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_abbrev 0x0000000000037544 0x188 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_abbrev 0x00000000000376cc 0x3dc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_abbrev 0x0000000000037aa8 0x1d2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_abbrev 0x0000000000037c7a 0x14b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_abbrev 0x0000000000037dc5 0x1b5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_abbrev 0x0000000000037f7a 0x1e2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_abbrev 0x000000000003815c 0x1e2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_abbrev 0x000000000003833e 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_abbrev 0x000000000003840e 0xf8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_abbrev 0x0000000000038506 0x21c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_abbrev 0x0000000000038722 0x16c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_abbrev 0x000000000003888e 0x362 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_abbrev 0x0000000000038bf0 0x385 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_abbrev 0x0000000000038f75 0x1df esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_abbrev 0x0000000000039154 0x2b1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_abbrev 0x0000000000039405 0x2c2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_abbrev 0x00000000000396c7 0x31c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_abbrev 0x00000000000399e3 0x38b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_abbrev 0x0000000000039d6e 0x14e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_abbrev 0x0000000000039ebc 0x2f6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_abbrev 0x000000000003a1b2 0x2d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_abbrev 0x000000000003a48a 0x404 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_abbrev 0x000000000003a88e 0x254 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_abbrev 0x000000000003aae2 0x2d4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_abbrev 0x000000000003adb6 0x425 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_abbrev 0x000000000003b1db 0x474 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_abbrev 0x000000000003b64f 0x369 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_abbrev 0x000000000003b9b8 0x2a4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_abbrev 0x000000000003bc5c 0x429 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_abbrev 0x000000000003c085 0x12b esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_abbrev 0x000000000003c1b0 0x256 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_abbrev 0x000000000003c406 0x2be esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_abbrev 0x000000000003c6c4 0x26f esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_abbrev 0x000000000003c933 0x27f esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_abbrev 0x000000000003cbb2 0xdb esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_abbrev 0x000000000003cc8d 0x8c esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .debug_abbrev 0x000000000003cd19 0x6ad esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_abbrev 0x000000000003d3c6 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_abbrev 0x000000000003d4b6 0x1bf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_abbrev 0x000000000003d675 0x3f7 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_abbrev 0x000000000003da6c 0x41d esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_abbrev 0x000000000003de89 0x17c esp-idf/lwip/liblwip.a(def.c.obj) + .debug_abbrev 0x000000000003e005 0x3b8 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_abbrev 0x000000000003e3bd 0xbb esp-idf/lwip/liblwip.a(init.c.obj) + .debug_abbrev 0x000000000003e478 0x247 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_abbrev 0x000000000003e6bf 0x213 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_abbrev 0x000000000003e8d2 0x2e1 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_abbrev 0x000000000003ebb3 0x43c esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_abbrev 0x000000000003efef 0x3cb esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_abbrev 0x000000000003f3ba 0x3c5 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_abbrev 0x000000000003f77f 0x441 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_abbrev 0x000000000003fbc0 0x3d1 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_abbrev 0x000000000003ff91 0x3fc esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_abbrev 0x000000000004038d 0x3b5 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_abbrev 0x0000000000040742 0x3fb esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_abbrev 0x0000000000040b3d 0x43c esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_abbrev 0x0000000000040f79 0x39a esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_abbrev 0x0000000000041313 0x320 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_abbrev 0x0000000000041633 0x402 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_abbrev 0x0000000000041a35 0x3a7 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_abbrev 0x0000000000041ddc 0x308 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_abbrev 0x00000000000420e4 0x26d esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_abbrev 0x0000000000042351 0x301 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_abbrev 0x0000000000042652 0x370 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_abbrev 0x00000000000429c2 0x23c esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_abbrev 0x0000000000042bfe 0x260 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_abbrev 0x0000000000042e5e 0x3cf esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_abbrev 0x000000000004322d 0x410 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_abbrev 0x000000000004363d 0x2fc esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_abbrev 0x0000000000043939 0x211 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_abbrev 0x0000000000043b4a 0x265 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_abbrev 0x0000000000043daf 0x37f esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_abbrev 0x000000000004412e 0x2b0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_abbrev 0x00000000000443de 0x43d esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_abbrev 0x000000000004481b 0x43e esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_abbrev 0x0000000000044c59 0x4be esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_abbrev 0x0000000000045117 0xaf esp-idf/lwip/liblwip.a(err.c.obj) + .debug_abbrev 0x00000000000451c6 0x242 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_abbrev 0x0000000000045408 0x25f esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_abbrev 0x0000000000045667 0x241 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_abbrev 0x00000000000458a8 0xec esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_abbrev 0x0000000000045994 0x1cd esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_abbrev 0x0000000000045b61 0x2be esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_abbrev 0x0000000000045e1f 0x1c0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_abbrev 0x0000000000045fdf 0x533 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_abbrev 0x0000000000046512 0x3b2 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_abbrev 0x00000000000468c4 0x604 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_abbrev 0x0000000000046ec8 0x276 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_abbrev 0x000000000004713e 0x564 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_abbrev 0x00000000000476a2 0x453 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_abbrev 0x0000000000047af5 0x4bf esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_abbrev 0x0000000000047fb4 0x3a5 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_abbrev 0x0000000000048359 0x67f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_abbrev 0x00000000000489d8 0x402 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_abbrev 0x0000000000048dda 0x3ee esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_abbrev 0x00000000000491c8 0x440 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_abbrev 0x0000000000049608 0x4c6 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_abbrev 0x0000000000049ace 0x26c esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_abbrev 0x0000000000049d3a 0x50d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_abbrev 0x000000000004a247 0x26f esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_abbrev 0x000000000004a4b6 0x33b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_abbrev 0x000000000004a7f1 0x17c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_abbrev 0x000000000004a96d 0x262 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_abbrev 0x000000000004abcf 0x61f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_abbrev 0x000000000004b1ee 0x405 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_abbrev 0x000000000004b5f3 0x345 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_abbrev 0x000000000004b938 0x45a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_abbrev 0x000000000004bd92 0x404 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + .debug_abbrev 0x000000000004c196 0x218 esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + .debug_abbrev 0x000000000004c3ae 0x3c7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + .debug_abbrev 0x000000000004c775 0x2b9 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_abbrev 0x000000000004ca2e 0x2d3 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_abbrev 0x000000000004cd01 0x21e esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_abbrev 0x000000000004cf1f 0x35b esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_abbrev 0x000000000004d27a 0x471 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_abbrev 0x000000000004d6eb 0x280 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_abbrev 0x000000000004d96b 0x3dd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_abbrev 0x000000000004dd48 0x42b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_abbrev 0x000000000004e173 0x436 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_abbrev 0x000000000004e5a9 0x401 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_abbrev 0x000000000004e9aa 0x46c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_abbrev 0x000000000004ee16 0x401 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_abbrev 0x000000000004f217 0x240 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_abbrev 0x000000000004f457 0x10a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .debug_abbrev 0x000000000004f561 0x36c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_abbrev 0x000000000004f8cd 0x153 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_abbrev 0x000000000004fa20 0x1ef esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_abbrev 0x000000000004fc0f 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .debug_abbrev 0x000000000004fc23 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .debug_abbrev 0x000000000004fc37 0x43 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .debug_abbrev 0x000000000004fc7a 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .debug_abbrev 0x000000000004fc8e 0x14 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .debug_abbrev 0x000000000004fca2 0x8b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .debug_abbrev 0x000000000004fd2d 0xa5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opvs.o) + .debug_abbrev 0x000000000004fdd2 0x157 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .debug_abbrev 0x000000000004ff29 0x124 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .debug_abbrev 0x000000000005004d 0x190 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .debug_abbrev 0x00000000000501dd 0x4d6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + .debug_abbrev 0x00000000000506b3 0x603 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .debug_abbrev 0x0000000000050cb6 0x42e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .debug_abbrev 0x00000000000510e4 0x267 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + .debug_abbrev 0x000000000005134b 0xa3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opv.o) + .debug_abbrev 0x00000000000513ee 0x323 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + .debug_abbrev 0x0000000000051711 0x30e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + .debug_abbrev 0x0000000000051a1f 0x4b5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_abbrev 0x0000000000051ed4 0x332 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .debug_abbrev 0x0000000000052206 0x1f6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + .debug_abbrev 0x00000000000523fc 0x488 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .debug_abbrev 0x0000000000052884 0xa5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .debug_abbrev 0x0000000000052929 0x9c5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .debug_abbrev 0x00000000000532ee 0x411 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .debug_abbrev 0x00000000000536ff 0x4cd /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + .debug_abbrev 0x0000000000053bcc 0x14 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divsf3.o) + .debug_abbrev 0x0000000000053be0 0x1ab /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_abbrev 0x0000000000053d8b 0x1a6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_abbrev 0x0000000000053f31 0x18f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_abbrev 0x00000000000540c0 0x19e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_abbrev 0x000000000005425e 0x42d esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_abbrev 0x000000000005468b 0xd4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .debug_abbrev 0x000000000005475f 0x4b5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_abbrev 0x0000000000054c14 0x533 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_abbrev 0x0000000000055147 0x4b2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_abbrev 0x00000000000555f9 0x306 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .debug_abbrev 0x00000000000558ff 0x2d4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .debug_abbrev 0x0000000000055bd3 0x135 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_ceil.o) + .debug_abbrev 0x0000000000055d08 0x135 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_floor.o) + .debug_abbrev 0x0000000000055e3d 0x196 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .debug_abbrev 0x0000000000055fd3 0x2b9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_abbrev 0x000000000005628c 0x258 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .debug_abbrev 0x00000000000564e4 0x31d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_abbrev 0x0000000000056801 0x243 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .debug_abbrev 0x0000000000056a44 0x299 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_abbrev 0x0000000000056cdd 0x274 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_abbrev 0x0000000000056f51 0x2ca /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_abbrev 0x000000000005721b 0x234 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_abbrev 0x000000000005744f 0x2aa /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_abbrev 0x00000000000576f9 0x23e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .debug_abbrev 0x0000000000057937 0x25a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .debug_abbrev 0x0000000000057b91 0x27a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .debug_abbrev 0x0000000000057e0b 0x256 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .debug_abbrev 0x0000000000058061 0x260 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .debug_abbrev 0x00000000000582c1 0x4d1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .debug_abbrev 0x0000000000058792 0x466 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_abbrev 0x0000000000058bf8 0x458 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .debug_abbrev 0x0000000000059050 0x1e1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_abbrev 0x0000000000059231 0x4da /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_abbrev 0x000000000005970b 0x25c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_abbrev 0x0000000000059967 0x260 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .debug_abbrev 0x0000000000059bc7 0x225 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .debug_abbrev 0x0000000000059dec 0x35b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_abbrev 0x000000000005a147 0x1d8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_abbrev 0x000000000005a31f 0x3eb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .debug_abbrev 0x000000000005a70a 0x16d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .debug_abbrev 0x000000000005a877 0xb9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_abbrev 0x000000000005a930 0x1b1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace_l.o) + .debug_abbrev 0x000000000005aae1 0x1ee /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lnumeric.o) + .debug_abbrev 0x000000000005accf 0x29a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .debug_abbrev 0x000000000005af69 0x28a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_abbrev 0x000000000005b1f3 0x25f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_abbrev 0x000000000005b452 0x25a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .debug_abbrev 0x000000000005b6ac 0x491 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_abbrev 0x000000000005bb3d 0x162 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_abbrev 0x000000000005bc9f 0x7a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_nan.o) + .debug_abbrev 0x000000000005bd19 0x7a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .debug_abbrev 0x000000000005bd93 0x314 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_abbrev 0x000000000005c0a7 0x31b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_abbrev 0x000000000005c3c2 0x3fd /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .debug_abbrev 0x000000000005c7bf 0x489 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .debug_abbrev 0x000000000005cc48 0x491 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + +.debug_loc 0x0000000000000000 0xf7f4a + .debug_loc 0x0000000000000000 0x135 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_loc 0x0000000000000135 0x117f esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_loc 0x00000000000012b4 0x504 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_loc 0x00000000000017b8 0x494 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_loc 0x0000000000001c4c 0x46a esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_loc 0x00000000000020b6 0x19d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_loc 0x0000000000002253 0x348 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_loc 0x000000000000259b 0x4d esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_loc 0x00000000000025e8 0x1ce esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_loc 0x00000000000027b6 0x5f esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_loc 0x0000000000002815 0x3d1 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_loc 0x0000000000002be6 0x3f esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_loc 0x0000000000002c25 0x299 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_loc 0x0000000000002ebe 0x122 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_loc 0x0000000000002fe0 0x131 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_loc 0x0000000000003111 0x287 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_loc 0x0000000000003398 0x6b esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_loc 0x0000000000003403 0xa2 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_loc 0x00000000000034a5 0x274 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_loc 0x0000000000003719 0x4eb esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_loc 0x0000000000003c04 0x3fb esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_loc 0x0000000000003fff 0x114 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_loc 0x0000000000004113 0x45 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x0000000000004158 0x268 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x00000000000043c0 0xff6 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_loc 0x00000000000053b6 0x40e esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_loc 0x00000000000057c4 0xdf esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_loc 0x00000000000058a3 0x529 esp-idf/log/liblog.a(log.c.obj) + .debug_loc 0x0000000000005dcc 0xdc esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_loc 0x0000000000005ea8 0xecf esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_loc 0x0000000000006d77 0x7e2 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_loc 0x0000000000007559 0x818 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_loc 0x0000000000007d71 0x7a55 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_loc 0x000000000000f7c6 0x343 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_loc 0x000000000000fb09 0x44 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_loc 0x000000000000fb4d 0x550 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_loc 0x000000000001009d 0x164 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_loc 0x0000000000010201 0x17ca esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_loc 0x00000000000119cb 0x1068 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_loc 0x0000000000012a33 0x3ba esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_loc 0x0000000000012ded 0x2c5 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_loc 0x00000000000130b2 0x67 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_loc 0x0000000000013119 0x1229 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_loc 0x0000000000014342 0x174 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_loc 0x00000000000144b6 0x3cb esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_loc 0x0000000000014881 0x33 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_loc 0x00000000000148b4 0xca esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_loc 0x000000000001497e 0x26d esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_loc 0x0000000000014beb 0xd2 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_loc 0x0000000000014cbd 0x1e9f esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_loc 0x0000000000016b5c 0x3ad1 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_loc 0x000000000001a62d 0x8ed esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_loc 0x000000000001af1a 0x136 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_loc 0x000000000001b050 0xd2 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_loc 0x000000000001b122 0x37 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_loc 0x000000000001b159 0xdd esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_loc 0x000000000001b236 0x8a esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_loc 0x000000000001b2c0 0x1d5 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_loc 0x000000000001b495 0x235 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_loc 0x000000000001b6ca 0x43a esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_loc 0x000000000001bb04 0x94 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_loc 0x000000000001bb98 0x1be esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_loc 0x000000000001bd56 0x2bb esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_loc 0x000000000001c011 0x576 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_loc 0x000000000001c587 0x94 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_loc 0x000000000001c61b 0x316 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_loc 0x000000000001c931 0xe99 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_loc 0x000000000001d7ca 0x15 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_loc 0x000000000001d7df 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_loc 0x000000000001d7f9 0x393 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_loc 0x000000000001db8c 0x39ac esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_loc 0x0000000000021538 0x310 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_loc 0x0000000000021848 0x137d esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_loc 0x0000000000022bc5 0x1fb esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_loc 0x0000000000022dc0 0x66a esp-idf/bt/libbt.a(hli_api.c.obj) + .debug_loc 0x000000000002342a 0x42 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_loc 0x000000000002346c 0x57f esp-idf/main/libmain.a(app_main.c.obj) + .debug_loc 0x00000000000239eb 0x1523 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .debug_loc 0x0000000000024f0e 0x2e5 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + .debug_loc 0x00000000000251f3 0x46a esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + .debug_loc 0x000000000002565d 0x3fe esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + .debug_loc 0x0000000000025a5b 0x57f esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + .debug_loc 0x0000000000025fda 0x3a2 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + .debug_loc 0x000000000002637c 0x40c esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .debug_loc 0x0000000000026788 0x4a0 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .debug_loc 0x0000000000026c28 0x2e4 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .debug_loc 0x0000000000026f0c 0x94 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .debug_loc 0x0000000000026fa0 0x98d esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + .debug_loc 0x000000000002792d 0x12d esp-idf/protocomm/libprotocomm.a(security0.c.obj) + .debug_loc 0x0000000000027a5a 0xcf4 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + .debug_loc 0x000000000002874e 0xbc7 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + .debug_loc 0x0000000000029315 0x882 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + .debug_loc 0x0000000000029b97 0x281 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + .debug_loc 0x0000000000029e18 0xc1d esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .debug_loc 0x000000000002aa35 0x1bc esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .debug_loc 0x000000000002abf1 0x2e4 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .debug_loc 0x000000000002aed5 0x2e4 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .debug_loc 0x000000000002b1b9 0x94 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + .debug_loc 0x000000000002b24d 0x12dc esp-idf/bt/libbt.a(bt.c.obj) + .debug_loc 0x000000000002c529 0xc2 esp-idf/bt/libbt.a(addr.c.obj) + .debug_loc 0x000000000002c5eb 0x1ee esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .debug_loc 0x000000000002c7d9 0x329 esp-idf/bt/libbt.a(ble_store_util.c.obj) + .debug_loc 0x000000000002cb02 0x511 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + .debug_loc 0x000000000002d013 0x95b esp-idf/bt/libbt.a(ble_hs.c.obj) + .debug_loc 0x000000000002d96e 0xb0b esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + .debug_loc 0x000000000002e479 0x2ac esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + .debug_loc 0x000000000002e725 0x398 esp-idf/bt/libbt.a(ble_att.c.obj) + .debug_loc 0x000000000002eabd 0x3593 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .debug_loc 0x0000000000032050 0x6ff esp-idf/bt/libbt.a(ble_store.c.obj) + .debug_loc 0x000000000003274f 0xe95 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + .debug_loc 0x00000000000335e4 0x141 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + .debug_loc 0x0000000000033725 0x651 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .debug_loc 0x0000000000033d76 0x5b esp-idf/bt/libbt.a(ble_hs_log.c.obj) + .debug_loc 0x0000000000033dd1 0x20b esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + .debug_loc 0x0000000000033fdc 0x9ad esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + .debug_loc 0x0000000000034989 0x2bbc esp-idf/bt/libbt.a(ble_gap.c.obj) + .debug_loc 0x0000000000037545 0x5d2 esp-idf/bt/libbt.a(ble_uuid.c.obj) + .debug_loc 0x0000000000037b17 0x265 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + .debug_loc 0x0000000000037d7c 0x572 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + .debug_loc 0x00000000000382ee 0x74f esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .debug_loc 0x0000000000038a3d 0x1b8 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + .debug_loc 0x0000000000038bf5 0x1dde esp-idf/bt/libbt.a(ble_gatts.c.obj) + .debug_loc 0x000000000003a9d3 0xeb7 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .debug_loc 0x000000000003b88a 0x8ce esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .debug_loc 0x000000000003c158 0x328 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .debug_loc 0x000000000003c480 0xc90 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .debug_loc 0x000000000003d110 0x8c2 esp-idf/bt/libbt.a(ble_store_config.c.obj) + .debug_loc 0x000000000003d9d2 0x28a esp-idf/bt/libbt.a(nimble_port.c.obj) + .debug_loc 0x000000000003dc5c 0x25 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + .debug_loc 0x000000000003dc81 0x61b esp-idf/bt/libbt.a(endian.c.obj) + .debug_loc 0x000000000003e29c 0x885 esp-idf/bt/libbt.a(os_mempool.c.obj) + .debug_loc 0x000000000003eb21 0x33e esp-idf/bt/libbt.a(mem.c.obj) + .debug_loc 0x000000000003ee5f 0x1bfb esp-idf/bt/libbt.a(os_mbuf.c.obj) + .debug_loc 0x0000000000040a5a 0x3c esp-idf/bt/libbt.a(os_msys_init.c.obj) + .debug_loc 0x0000000000040a96 0x10b2 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .debug_loc 0x0000000000041b48 0x34f esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .debug_loc 0x0000000000041e97 0x94 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + .debug_loc 0x0000000000041f2b 0x24a esp-idf/bt/libbt.a(transport.c.obj) + .debug_loc 0x0000000000042175 0x679 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + .debug_loc 0x00000000000427ee 0x207b esp-idf/bt/libbt.a(ble_sm.c.obj) + .debug_loc 0x0000000000044869 0x180 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + .debug_loc 0x00000000000449e9 0xea esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + .debug_loc 0x0000000000044ad3 0x3235 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .debug_loc 0x0000000000047d08 0x147 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + .debug_loc 0x0000000000047e4f 0x5af esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + .debug_loc 0x00000000000483fe 0x2c2 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + .debug_loc 0x00000000000486c0 0x4d4 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + .debug_loc 0x0000000000048b94 0xa5 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + .debug_loc 0x0000000000048c39 0x106a esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + .debug_loc 0x0000000000049ca3 0x7494 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .debug_loc 0x0000000000051137 0x3b86 esp-idf/json/libjson.a(cJSON.c.obj) + .debug_loc 0x0000000000054cbd 0x1e0 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + .debug_loc 0x0000000000054e9d 0x2649 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .debug_loc 0x00000000000574e6 0x223 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_loc 0x0000000000057709 0x54e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_loc 0x0000000000057c57 0xd80 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x00000000000589d7 0x774 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_loc 0x000000000005914b 0x58f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x00000000000596da 0x399f esp-idf/driver/libdriver.a(uart.c.obj) + .debug_loc 0x000000000005d079 0x8d1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_loc 0x000000000005d94a 0x749 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_loc 0x000000000005e093 0x1d5 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_loc 0x000000000005e268 0x22a4 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_loc 0x000000000006050c 0x269 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_loc 0x0000000000060775 0x941 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_loc 0x00000000000610b6 0x15e esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_loc 0x0000000000061214 0x18f0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_loc 0x0000000000062b04 0x4cc esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_loc 0x0000000000062fd0 0x588 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_loc 0x0000000000063558 0x111 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_loc 0x0000000000063669 0x1218 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_loc 0x0000000000064881 0x17c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_loc 0x00000000000649fd 0x8c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_loc 0x0000000000064a89 0x247 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_loc 0x0000000000064cd0 0x6d4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_loc 0x00000000000653a4 0x538 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_loc 0x00000000000658dc 0x16 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_loc 0x00000000000658f2 0x1a8 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_loc 0x0000000000065a9a 0x203 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_loc 0x0000000000065c9d 0xe48 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_loc 0x0000000000066ae5 0x363 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_loc 0x0000000000066e48 0x10e4 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_loc 0x0000000000067f2c 0x39e esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_loc 0x00000000000682ca 0x10d1 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_loc 0x000000000006939b 0x33e esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_loc 0x00000000000696d9 0xf39 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_loc 0x000000000006a612 0xa4 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_loc 0x000000000006a6b6 0x9a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_loc 0x000000000006a750 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_loc 0x000000000006a773 0xd3 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_loc 0x000000000006a846 0x77f esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_loc 0x000000000006afc5 0x6e esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_loc 0x000000000006b033 0x285 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_loc 0x000000000006b2b8 0x2f4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_loc 0x000000000006b5ac 0x7fe esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_loc 0x000000000006bdaa 0xe4 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_loc 0x000000000006be8e 0x10e esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_loc 0x000000000006bf9c 0x1b6 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_loc 0x000000000006c152 0x1947 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_loc 0x000000000006da99 0x1e5b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_loc 0x000000000006f8f4 0x2feb esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_loc 0x00000000000728df 0x4d0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_loc 0x0000000000072daf 0x1e2 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_loc 0x0000000000072f91 0xf65 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_loc 0x0000000000073ef6 0x752 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_loc 0x0000000000074648 0x3474 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_loc 0x0000000000077abc 0x1238 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_loc 0x0000000000078cf4 0x1a4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_loc 0x0000000000078e98 0x159 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_loc 0x0000000000078ff1 0x437 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_loc 0x0000000000079428 0x362 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_loc 0x000000000007978a 0x2a58 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_loc 0x000000000007c1e2 0x94 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_loc 0x000000000007c276 0x2df esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_loc 0x000000000007c555 0x157 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_loc 0x000000000007c6ac 0xe49 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_loc 0x000000000007d4f5 0x215 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_loc 0x000000000007d70a 0x1da esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_loc 0x000000000007d8e4 0x222 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_loc 0x000000000007db06 0x5f esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_loc 0x000000000007db65 0xd63 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_loc 0x000000000007e8c8 0x130a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_loc 0x000000000007fbd2 0x6ad esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_loc 0x000000000008027f 0x25 esp-idf/esp_coex/libesp_coex.a(coexist.c.obj) + .debug_loc 0x00000000000802a4 0xc1 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_loc 0x0000000000080365 0x53f esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_loc 0x00000000000808a4 0x331 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_loc 0x0000000000080bd5 0x5ac esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_loc 0x0000000000081181 0x283d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_loc 0x00000000000839be 0x1cc6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_loc 0x0000000000085684 0x17d3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_loc 0x0000000000086e57 0x420 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_loc 0x0000000000087277 0xe38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_loc 0x00000000000880af 0xeb2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_loc 0x0000000000088f61 0xc3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_loc 0x0000000000089ba0 0x8cd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_loc 0x000000000008a46d 0x3947 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_loc 0x000000000008ddb4 0x4315 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_loc 0x00000000000920c9 0x832 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_loc 0x00000000000928fb 0xe97 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_loc 0x0000000000093792 0xcb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_loc 0x000000000009385d 0x755 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_loc 0x0000000000093fb2 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_loc 0x0000000000094022 0x92 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_loc 0x00000000000940b4 0x151 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_loc 0x0000000000094205 0x209 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_loc 0x000000000009440e 0x209 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_loc 0x0000000000094617 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_loc 0x000000000009463c 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_loc 0x0000000000094661 0x4d0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_loc 0x0000000000094b31 0x142 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_loc 0x0000000000094c73 0xdc5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_loc 0x0000000000095a38 0xba0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_loc 0x00000000000965d8 0x122 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_loc 0x00000000000966fa 0x1f65 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_loc 0x000000000009865f 0x125e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_loc 0x00000000000998bd 0xe81 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_loc 0x000000000009a73e 0x8ec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_loc 0x000000000009b02a 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_loc 0x000000000009b0be 0xeed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_loc 0x000000000009bfab 0x8db esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_loc 0x000000000009c886 0xc98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_loc 0x000000000009d51e 0x1122 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_loc 0x000000000009e640 0x200 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_loc 0x000000000009e840 0x1f8f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_loc 0x00000000000a07cf 0x170a esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_loc 0x00000000000a1ed9 0x857 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_loc 0x00000000000a2730 0x5d3 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_loc 0x00000000000a2d03 0x12e1 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_loc 0x00000000000a3fe4 0x11f esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_loc 0x00000000000a4103 0x3bc esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_loc 0x00000000000a44bf 0x2be esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_loc 0x00000000000a477d 0x2d2 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_loc 0x00000000000a4a4f 0x1db esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_loc 0x00000000000a4c2a 0x23 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_loc 0x00000000000a4c4d 0x10c0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_loc 0x00000000000a5d0d 0x32c esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_loc 0x00000000000a6039 0x4ede esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_loc 0x00000000000aaf17 0x309 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_loc 0x00000000000ab220 0x47d esp-idf/lwip/liblwip.a(def.c.obj) + .debug_loc 0x00000000000ab69d 0x1a29 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_loc 0x00000000000ad0c6 0x154 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_loc 0x00000000000ad21a 0x74 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_loc 0x00000000000ad28e 0x173 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_loc 0x00000000000ad401 0x10c2 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_loc 0x00000000000ae4c3 0x197b esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_loc 0x00000000000afe3e 0x934 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_loc 0x00000000000b0772 0x1a2b esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_loc 0x00000000000b219d 0xbf8 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_loc 0x00000000000b2d95 0x1878 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_loc 0x00000000000b460d 0x366 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_loc 0x00000000000b4973 0xf1f esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_loc 0x00000000000b5892 0x18d7 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_loc 0x00000000000b7169 0x1166 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_loc 0x00000000000b82cf 0x1ec esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_loc 0x00000000000b84bb 0x7cd esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_loc 0x00000000000b8c88 0x880 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_loc 0x00000000000b9508 0x6ad esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_loc 0x00000000000b9bb5 0x2f8 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_loc 0x00000000000b9ead 0x2a1 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_loc 0x00000000000ba14e 0x1021 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_loc 0x00000000000bb16f 0x725 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_loc 0x00000000000bb894 0x20d esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_loc 0x00000000000bbaa1 0x70a esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_loc 0x00000000000bc1ab 0x212d esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_loc 0x00000000000be2d8 0x149 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_loc 0x00000000000be421 0x108 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_loc 0x00000000000be529 0x269 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_loc 0x00000000000be792 0x731 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_loc 0x00000000000beec3 0xae esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_loc 0x00000000000bef71 0x1e36 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_loc 0x00000000000c0da7 0x1214 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_loc 0x00000000000c1fbb 0x1522 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_loc 0x00000000000c34dd 0x25 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_loc 0x00000000000c3502 0x1fe esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_loc 0x00000000000c3700 0x8f3 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_loc 0x00000000000c3ff3 0x1e4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_loc 0x00000000000c41d7 0x25b esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_loc 0x00000000000c4432 0x81 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_loc 0x00000000000c44b3 0x58f esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_loc 0x00000000000c4a42 0x311 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_loc 0x00000000000c4d53 0xe2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_loc 0x00000000000c5b81 0x5d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_loc 0x00000000000c5bde 0x3fe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_loc 0x00000000000c5fdc 0x20de esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_loc 0x00000000000c80ba 0xa4a esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_loc 0x00000000000c8b04 0x4d1 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_loc 0x00000000000c8fd5 0x1e71 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_loc 0x00000000000cae46 0x1287 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_loc 0x00000000000cc0cd 0x771 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_loc 0x00000000000cc83e 0x2c2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_loc 0x00000000000ccb00 0x1501 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_loc 0x00000000000ce001 0x4f6 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_loc 0x00000000000ce4f7 0x5117 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_loc 0x00000000000d360e 0x71d esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_loc 0x00000000000d3d2b 0x1bf5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_loc 0x00000000000d5920 0x185 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_loc 0x00000000000d5aa5 0x20c esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_loc 0x00000000000d5cb1 0x33b3 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_loc 0x00000000000d9064 0x1093 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_loc 0x00000000000da0f7 0x623 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_loc 0x00000000000da71a 0x1794 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_loc 0x00000000000dbeae 0x931 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + .debug_loc 0x00000000000dc7df 0xb1 esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + .debug_loc 0x00000000000dc890 0x405 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + .debug_loc 0x00000000000dcc95 0x262 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_loc 0x00000000000dcef7 0x7b7 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_loc 0x00000000000dd6ae 0x6f1 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_loc 0x00000000000ddd9f 0xa3c esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_loc 0x00000000000de7db 0x7c3 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_loc 0x00000000000def9e 0xf19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_loc 0x00000000000dfeb7 0xfb7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_loc 0x00000000000e0e6e 0x93d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_loc 0x00000000000e17ab 0xb00 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_loc 0x00000000000e22ab 0xd3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_loc 0x00000000000e2fe9 0x1fea esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_loc 0x00000000000e4fd3 0x3d87 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_loc 0x00000000000e8d5a 0x70f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_loc 0x00000000000e9469 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .debug_loc 0x00000000000e9599 0x9fb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_loc 0x00000000000e9f94 0x75d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_loc 0x00000000000ea6f1 0x7c esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_loc 0x00000000000ea76d 0x42 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .debug_loc 0x00000000000ea7af 0x4687 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_loc 0x00000000000eee36 0x5653 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_loc 0x00000000000f4489 0x3383 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_loc 0x00000000000f780c 0x12e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .debug_loc 0x00000000000f793a 0x610 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + +.debug_aranges 0x0000000000000000 0xfec0 + .debug_aranges + 0x0000000000000000 0x30 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_aranges + 0x0000000000000030 0x160 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_aranges + 0x0000000000000190 0x60 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_aranges + 0x00000000000001f0 0x68 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_aranges + 0x0000000000000258 0x58 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_aranges + 0x00000000000002b0 0xb8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_aranges + 0x0000000000000368 0x48 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_aranges + 0x00000000000003b0 0x48 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_aranges + 0x00000000000003f8 0x20 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_aranges + 0x0000000000000418 0x38 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_aranges + 0x0000000000000450 0x28 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_aranges + 0x0000000000000478 0x60 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_aranges + 0x00000000000004d8 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_aranges + 0x00000000000004f8 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_aranges + 0x0000000000000518 0x30 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_aranges + 0x0000000000000548 0x78 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_aranges + 0x00000000000005c0 0x30 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_aranges + 0x00000000000005f0 0x60 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_aranges + 0x0000000000000650 0x58 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_aranges + 0x00000000000006a8 0x30 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_aranges + 0x00000000000006d8 0x28 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_aranges + 0x0000000000000700 0x60 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_aranges + 0x0000000000000760 0x40 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_aranges + 0x00000000000007a0 0x20 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_aranges + 0x00000000000007c0 0x68 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_aranges + 0x0000000000000828 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_aranges + 0x0000000000000850 0x40 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x0000000000000890 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x00000000000008e8 0x70 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_aranges + 0x0000000000000958 0x40 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_aranges + 0x0000000000000998 0x20 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_aranges + 0x00000000000009b8 0x78 esp-idf/log/liblog.a(log.c.obj) + .debug_aranges + 0x0000000000000a30 0x48 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_aranges + 0x0000000000000a78 0x120 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_aranges + 0x0000000000000b98 0x48 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_aranges + 0x0000000000000be0 0xd0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_aranges + 0x0000000000000cb0 0xe0 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_aranges + 0x0000000000000d90 0x40 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_aranges + 0x0000000000000dd0 0x18 esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_aranges + 0x0000000000000de8 0x28 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_aranges + 0x0000000000000e10 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_aranges + 0x0000000000000e78 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_aranges + 0x0000000000000ee0 0xe0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_aranges + 0x0000000000000fc0 0x98 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_aranges + 0x0000000000001058 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_aranges + 0x00000000000010b0 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_aranges + 0x00000000000010f0 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_aranges + 0x0000000000001150 0x130 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_aranges + 0x0000000000001280 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_aranges + 0x00000000000012b0 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_aranges + 0x0000000000001308 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_aranges + 0x0000000000001328 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_aranges + 0x0000000000001398 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_aranges + 0x00000000000013f0 0x38 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_aranges + 0x0000000000001428 0x148 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_aranges + 0x0000000000001570 0x2d0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_aranges + 0x0000000000001840 0x98 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_aranges + 0x00000000000018d8 0x20 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_aranges + 0x00000000000018f8 0x28 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_aranges + 0x0000000000001920 0x48 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_aranges + 0x0000000000001968 0x28 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_aranges + 0x0000000000001990 0x28 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_aranges + 0x00000000000019b8 0x40 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_aranges + 0x00000000000019f8 0x20 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_aranges + 0x0000000000001a18 0x38 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_aranges + 0x0000000000001a50 0x98 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_aranges + 0x0000000000001ae8 0xd8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_aranges + 0x0000000000001bc0 0x40 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_aranges + 0x0000000000001c00 0x28 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_aranges + 0x0000000000001c28 0x28 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_aranges + 0x0000000000001c50 0x60 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_aranges + 0x0000000000001cb0 0x80 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_aranges + 0x0000000000001d30 0x50 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_aranges + 0x0000000000001d80 0x50 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_aranges + 0x0000000000001dd0 0xf0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_aranges + 0x0000000000001ec0 0x30 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_aranges + 0x0000000000001ef0 0x38 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_aranges + 0x0000000000001f28 0x70 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_aranges + 0x0000000000001f98 0x50 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_aranges + 0x0000000000001fe8 0x1d0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_aranges + 0x00000000000021b8 0x98 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_aranges + 0x0000000000002250 0x110 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_aranges + 0x0000000000002360 0xc0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_aranges + 0x0000000000002420 0x20 esp-idf/bt/libbt.a(hli_vectors.S.obj) + .debug_aranges + 0x0000000000002440 0xa0 esp-idf/bt/libbt.a(hli_api.c.obj) + .debug_aranges + 0x00000000000024e0 0x28 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_aranges + 0x0000000000002508 0x58 esp-idf/main/libmain.a(app_main.c.obj) + .debug_aranges + 0x0000000000002560 0x120 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .debug_aranges + 0x0000000000002680 0x88 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + .debug_aranges + 0x0000000000002708 0x68 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + .debug_aranges + 0x0000000000002770 0x50 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + .debug_aranges + 0x00000000000027c0 0x50 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + .debug_aranges + 0x0000000000002810 0x48 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + .debug_aranges + 0x0000000000002858 0x168 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .debug_aranges + 0x00000000000029c0 0x198 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .debug_aranges + 0x0000000000002b58 0x108 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .debug_aranges + 0x0000000000002c60 0x48 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .debug_aranges + 0x0000000000002ca8 0x90 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + .debug_aranges + 0x0000000000002d38 0x18 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) + .debug_aranges + 0x0000000000002d50 0x30 esp-idf/protocomm/libprotocomm.a(security0.c.obj) + .debug_aranges + 0x0000000000002d80 0x70 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + .debug_aranges + 0x0000000000002df0 0x70 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + .debug_aranges + 0x0000000000002e60 0x80 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + .debug_aranges + 0x0000000000002ee0 0x80 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + .debug_aranges + 0x0000000000002f60 0xf0 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .debug_aranges + 0x0000000000003050 0xa8 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .debug_aranges + 0x00000000000030f8 0x108 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .debug_aranges + 0x0000000000003200 0x108 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .debug_aranges + 0x0000000000003308 0x48 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + .debug_aranges + 0x0000000000003350 0x2d8 esp-idf/bt/libbt.a(bt.c.obj) + .debug_aranges + 0x0000000000003628 0x30 esp-idf/bt/libbt.a(addr.c.obj) + .debug_aranges + 0x0000000000003658 0x70 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .debug_aranges + 0x00000000000036c8 0x60 esp-idf/bt/libbt.a(ble_store_util.c.obj) + .debug_aranges + 0x0000000000003728 0x80 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + .debug_aranges + 0x00000000000037a8 0x150 esp-idf/bt/libbt.a(ble_hs.c.obj) + .debug_aranges + 0x00000000000038f8 0xf8 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + .debug_aranges + 0x00000000000039f0 0x38 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + .debug_aranges + 0x0000000000003a28 0x80 esp-idf/bt/libbt.a(ble_att.c.obj) + .debug_aranges + 0x0000000000003aa8 0x5a8 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .debug_aranges + 0x0000000000004050 0xc8 esp-idf/bt/libbt.a(ble_store.c.obj) + .debug_aranges + 0x0000000000004118 0x18 esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) + .debug_aranges + 0x0000000000004130 0x108 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + .debug_aranges + 0x0000000000004238 0x58 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + .debug_aranges + 0x0000000000004290 0x1b0 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .debug_aranges + 0x0000000000004440 0x28 esp-idf/bt/libbt.a(ble_hs_log.c.obj) + .debug_aranges + 0x0000000000004468 0x70 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + .debug_aranges + 0x00000000000044d8 0xc8 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + .debug_aranges + 0x00000000000045a0 0x468 esp-idf/bt/libbt.a(ble_gap.c.obj) + .debug_aranges + 0x0000000000004a08 0x70 esp-idf/bt/libbt.a(ble_uuid.c.obj) + .debug_aranges + 0x0000000000004a78 0x68 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + .debug_aranges + 0x0000000000004ae0 0x68 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + .debug_aranges + 0x0000000000004b48 0xc0 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .debug_aranges + 0x0000000000004c08 0x48 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + .debug_aranges + 0x0000000000004c50 0x1e8 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .debug_aranges + 0x0000000000004e38 0xa8 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .debug_aranges + 0x0000000000004ee0 0xe0 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .debug_aranges + 0x0000000000004fc0 0x70 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .debug_aranges + 0x0000000000005030 0x118 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .debug_aranges + 0x0000000000005148 0xb8 esp-idf/bt/libbt.a(ble_store_config.c.obj) + .debug_aranges + 0x0000000000005200 0x60 esp-idf/bt/libbt.a(nimble_port.c.obj) + .debug_aranges + 0x0000000000005260 0x38 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + .debug_aranges + 0x0000000000005298 0xa8 esp-idf/bt/libbt.a(endian.c.obj) + .debug_aranges + 0x0000000000005340 0x80 esp-idf/bt/libbt.a(os_mempool.c.obj) + .debug_aranges + 0x00000000000053c0 0x58 esp-idf/bt/libbt.a(mem.c.obj) + .debug_aranges + 0x0000000000005418 0x128 esp-idf/bt/libbt.a(os_mbuf.c.obj) + .debug_aranges + 0x0000000000005540 0x38 esp-idf/bt/libbt.a(os_msys_init.c.obj) + .debug_aranges + 0x0000000000005578 0x1a8 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .debug_aranges + 0x0000000000005720 0x70 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .debug_aranges + 0x0000000000005790 0x40 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + .debug_aranges + 0x00000000000057d0 0x70 esp-idf/bt/libbt.a(transport.c.obj) + .debug_aranges + 0x0000000000005840 0xc0 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + .debug_aranges + 0x0000000000005900 0x290 esp-idf/bt/libbt.a(ble_sm.c.obj) + .debug_aranges + 0x0000000000005b90 0x40 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + .debug_aranges + 0x0000000000005bd0 0x30 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + .debug_aranges + 0x0000000000005c00 0x230 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .debug_aranges + 0x0000000000005e30 0x40 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + .debug_aranges + 0x0000000000005e70 0x90 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + .debug_aranges + 0x0000000000005f00 0x60 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + .debug_aranges + 0x0000000000005f60 0x40 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + .debug_aranges + 0x0000000000005fa0 0x28 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + .debug_aranges + 0x0000000000005fc8 0xc0 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + .debug_aranges + 0x0000000000006088 0x260 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .debug_aranges + 0x00000000000062e8 0x398 esp-idf/json/libjson.a(cJSON.c.obj) + .debug_aranges + 0x0000000000006680 0x28 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + .debug_aranges + 0x00000000000066a8 0x148 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .debug_aranges + 0x00000000000067f0 0x20 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_aranges + 0x0000000000006810 0x20 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_aranges + 0x0000000000006830 0x38 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_aranges + 0x0000000000006868 0x70 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_aranges + 0x00000000000068d8 0x90 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_aranges + 0x0000000000006968 0xe0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x0000000000006a48 0x88 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_aranges + 0x0000000000006ad0 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_aranges + 0x0000000000006ae8 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x0000000000006b40 0x240 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_aranges + 0x0000000000006d80 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_aranges + 0x0000000000006da0 0xb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_aranges + 0x0000000000006e50 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_aranges + 0x0000000000006ec8 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_aranges + 0x0000000000006ef0 0x48 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_aranges + 0x0000000000006f38 0xc0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_aranges + 0x0000000000006ff8 0x18 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_aranges + 0x0000000000007010 0x30 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_aranges + 0x0000000000007040 0x30 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_aranges + 0x0000000000007070 0x78 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_aranges + 0x00000000000070e8 0x78 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_aranges + 0x0000000000007160 0x48 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_aranges + 0x00000000000071a8 0x110 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_aranges + 0x00000000000072b8 0x50 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_aranges + 0x0000000000007308 0xc0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_aranges + 0x00000000000073c8 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_aranges + 0x0000000000007408 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_aranges + 0x0000000000007420 0x110 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_aranges + 0x0000000000007530 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_aranges + 0x0000000000007568 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_aranges + 0x0000000000007590 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_aranges + 0x00000000000075d8 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_aranges + 0x0000000000007638 0x78 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_aranges + 0x00000000000076b0 0x30 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_aranges + 0x00000000000076e0 0x58 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_aranges + 0x0000000000007738 0x40 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_aranges + 0x0000000000007778 0xd0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_aranges + 0x0000000000007848 0x50 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_aranges + 0x0000000000007898 0x20 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_aranges + 0x00000000000078b8 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_aranges + 0x00000000000078e0 0x88 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_aranges + 0x0000000000007968 0x30 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_aranges + 0x0000000000007998 0xf8 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_aranges + 0x0000000000007a90 0x48 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_aranges + 0x0000000000007ad8 0xa0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_aranges + 0x0000000000007b78 0x60 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_aranges + 0x0000000000007bd8 0x18 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_aranges + 0x0000000000007bf0 0x18 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_aranges + 0x0000000000007c08 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_aranges + 0x0000000000007c38 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_aranges + 0x0000000000007c58 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_aranges + 0x0000000000007c80 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_aranges + 0x0000000000007d00 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_aranges + 0x0000000000007d28 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_aranges + 0x0000000000007d48 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_aranges + 0x0000000000007d90 0x78 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_aranges + 0x0000000000007e08 0x28 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_aranges + 0x0000000000007e30 0x58 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_aranges + 0x0000000000007e88 0x58 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_aranges + 0x0000000000007ee0 0xd0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_aranges + 0x0000000000007fb0 0x338 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_aranges + 0x00000000000082e8 0x168 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_aranges + 0x0000000000008450 0xb0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_aranges + 0x0000000000008500 0x70 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_aranges + 0x0000000000008570 0xc0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_aranges + 0x0000000000008630 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_aranges + 0x0000000000008690 0x120 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_aranges + 0x00000000000087b0 0x80 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_aranges + 0x0000000000008830 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_aranges + 0x0000000000008858 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_aranges + 0x0000000000008888 0xc0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_aranges + 0x0000000000008948 0x60 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_aranges + 0x00000000000089a8 0x3e8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_aranges + 0x0000000000008d90 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_aranges + 0x0000000000008dd8 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_aranges + 0x0000000000008e00 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_aranges + 0x0000000000008e20 0x150 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_aranges + 0x0000000000008f70 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_aranges + 0x0000000000008f90 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_aranges + 0x0000000000008fb0 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_aranges + 0x0000000000008fd0 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_aranges + 0x0000000000009010 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_aranges + 0x0000000000009068 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_aranges + 0x0000000000009150 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_aranges + 0x00000000000091b0 0x28 esp-idf/esp_coex/libesp_coex.a(coexist.c.obj) + .debug_aranges + 0x00000000000091d8 0x68 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_aranges + 0x0000000000009240 0xd8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_aranges + 0x0000000000009318 0x70 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_aranges + 0x0000000000009388 0x220 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_aranges + 0x00000000000095a8 0x1a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_aranges + 0x0000000000009750 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_aranges + 0x0000000000009858 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_aranges + 0x0000000000009960 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_aranges + 0x0000000000009a68 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_aranges + 0x0000000000009b40 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_aranges + 0x0000000000009bc0 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_aranges + 0x0000000000009c70 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_aranges + 0x0000000000009d50 0x2e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_aranges + 0x000000000000a030 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_aranges + 0x000000000000a0e8 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_aranges + 0x000000000000a178 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_aranges + 0x000000000000a238 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_aranges + 0x000000000000a260 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_aranges + 0x000000000000a2a0 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_aranges + 0x000000000000a2e0 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_aranges + 0x000000000000a338 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_aranges + 0x000000000000a360 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_aranges + 0x000000000000a398 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_aranges + 0x000000000000a3d0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_aranges + 0x000000000000a3f0 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_aranges + 0x000000000000a418 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_aranges + 0x000000000000a468 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_aranges + 0x000000000000a4a0 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_aranges + 0x000000000000a528 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_aranges + 0x000000000000a5a0 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_aranges + 0x000000000000a600 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_aranges + 0x000000000000a668 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_aranges + 0x000000000000a6d0 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_aranges + 0x000000000000a738 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_aranges + 0x000000000000a7d0 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_aranges + 0x000000000000a820 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_aranges + 0x000000000000a8a8 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_aranges + 0x000000000000a950 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_aranges + 0x000000000000aa00 0xf8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_aranges + 0x000000000000aaf8 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_aranges + 0x000000000000ab58 0x180 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_aranges + 0x000000000000acd8 0xf0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_aranges + 0x000000000000adc8 0x80 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_aranges + 0x000000000000ae48 0x68 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_aranges + 0x000000000000aeb0 0x100 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_aranges + 0x000000000000afb0 0x20 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_aranges + 0x000000000000afd0 0x50 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_aranges + 0x000000000000b020 0xa0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_aranges + 0x000000000000b0c0 0x40 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_aranges + 0x000000000000b100 0x38 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_aranges + 0x000000000000b138 0x20 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_aranges + 0x000000000000b158 0x18 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .debug_aranges + 0x000000000000b170 0x170 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_aranges + 0x000000000000b2e0 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_aranges + 0x000000000000b308 0x80 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_aranges + 0x000000000000b388 0x250 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_aranges + 0x000000000000b5d8 0xa0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_aranges + 0x000000000000b678 0x48 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_aranges + 0x000000000000b6c0 0xd0 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_aranges + 0x000000000000b790 0x20 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_aranges + 0x000000000000b7b0 0x38 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_aranges + 0x000000000000b7e8 0x40 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_aranges + 0x000000000000b828 0x58 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_aranges + 0x000000000000b880 0x150 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_aranges + 0x000000000000b9d0 0x148 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_aranges + 0x000000000000bb18 0x88 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_aranges + 0x000000000000bba0 0x1d0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_aranges + 0x000000000000bd70 0x70 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_aranges + 0x000000000000bde0 0xd8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_aranges + 0x000000000000beb8 0x70 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_aranges + 0x000000000000bf28 0xa0 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_aranges + 0x000000000000bfc8 0x150 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_aranges + 0x000000000000c118 0x90 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_aranges + 0x000000000000c1a8 0x30 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_aranges + 0x000000000000c1d8 0xb0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_aranges + 0x000000000000c288 0x68 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_aranges + 0x000000000000c2f0 0x48 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_aranges + 0x000000000000c338 0x20 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_aranges + 0x000000000000c358 0x60 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_aranges + 0x000000000000c3b8 0x58 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_aranges + 0x000000000000c410 0x30 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_aranges + 0x000000000000c440 0x20 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_aranges + 0x000000000000c460 0x88 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_aranges + 0x000000000000c4e8 0x110 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_aranges + 0x000000000000c5f8 0x28 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_aranges + 0x000000000000c620 0x28 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_aranges + 0x000000000000c648 0x38 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_aranges + 0x000000000000c680 0x100 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_aranges + 0x000000000000c780 0x50 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_aranges + 0x000000000000c7d0 0xf0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_aranges + 0x000000000000c8c0 0x120 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_aranges + 0x000000000000c9e0 0x140 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_aranges + 0x000000000000cb20 0x20 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_aranges + 0x000000000000cb40 0x60 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_aranges + 0x000000000000cba0 0x70 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_aranges + 0x000000000000cc10 0x60 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_aranges + 0x000000000000cc70 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_aranges + 0x000000000000cc88 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_aranges + 0x000000000000cca0 0x50 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_aranges + 0x000000000000ccf0 0x28 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_aranges + 0x000000000000cd18 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_aranges + 0x000000000000cdd8 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_aranges + 0x000000000000ce50 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_aranges + 0x000000000000cef8 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_aranges + 0x000000000000cf28 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_aranges + 0x000000000000cf70 0x1f8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_aranges + 0x000000000000d168 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_aranges + 0x000000000000d1e8 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_aranges + 0x000000000000d268 0x238 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_aranges + 0x000000000000d4a0 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_aranges + 0x000000000000d500 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_aranges + 0x000000000000d580 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_aranges + 0x000000000000d5f0 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_aranges + 0x000000000000d678 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_aranges + 0x000000000000d6b0 0x1e8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_aranges + 0x000000000000d898 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_aranges + 0x000000000000d8f0 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_aranges + 0x000000000000d9d8 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_aranges + 0x000000000000d9f8 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_aranges + 0x000000000000da28 0x220 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_aranges + 0x000000000000dc48 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_aranges + 0x000000000000dc98 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_aranges + 0x000000000000dd10 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_aranges + 0x000000000000ddb0 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + .debug_aranges + 0x000000000000de70 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + .debug_aranges + 0x000000000000dea0 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + .debug_aranges + 0x000000000000df08 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_aranges + 0x000000000000df78 0xe0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_aranges + 0x000000000000e058 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_aranges + 0x000000000000e0a8 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_aranges + 0x000000000000e120 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_aranges + 0x000000000000e1b0 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_aranges + 0x000000000000e268 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_aranges + 0x000000000000e348 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_aranges + 0x000000000000e3e0 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_aranges + 0x000000000000e4b0 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_aranges + 0x000000000000e5f8 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_aranges + 0x000000000000e6a8 0x168 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_aranges + 0x000000000000e810 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_aranges + 0x000000000000e850 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .debug_aranges + 0x000000000000e888 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_aranges + 0x000000000000e8d8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_aranges + 0x000000000000e908 0x20 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_aranges + 0x000000000000e928 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .debug_aranges + 0x000000000000e948 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .debug_aranges + 0x000000000000e968 0x18 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .debug_aranges + 0x000000000000e980 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .debug_aranges + 0x000000000000e9a0 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .debug_aranges + 0x000000000000e9c0 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .debug_aranges + 0x000000000000e9e0 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opvs.o) + .debug_aranges + 0x000000000000ea00 0x28 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .debug_aranges + 0x000000000000ea28 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .debug_aranges + 0x000000000000ea48 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .debug_aranges + 0x000000000000ea68 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + .debug_aranges + 0x000000000000eaa8 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .debug_aranges + 0x000000000000eae8 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .debug_aranges + 0x000000000000eb40 0x18 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + .debug_aranges + 0x000000000000eb58 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opv.o) + .debug_aranges + 0x000000000000eb78 0x18 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + .debug_aranges + 0x000000000000eb90 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + .debug_aranges + 0x000000000000ebb0 0x48 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_aranges + 0x000000000000ebf8 0x40 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .debug_aranges + 0x000000000000ec38 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + .debug_aranges + 0x000000000000ec68 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .debug_aranges + 0x000000000000ecc0 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .debug_aranges + 0x000000000000ece0 0xa8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .debug_aranges + 0x000000000000ed88 0x78 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .debug_aranges + 0x000000000000ee00 0x38 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + .debug_aranges + 0x000000000000ee38 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divsf3.o) + .debug_aranges + 0x000000000000ee58 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_aranges + 0x000000000000ee78 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_aranges + 0x000000000000ee98 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_aranges + 0x000000000000eeb8 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_aranges + 0x000000000000eed8 0xe0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_aranges + 0x000000000000efb8 0x30 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .debug_aranges + 0x000000000000efe8 0x228 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_aranges + 0x000000000000f210 0x400 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_aranges + 0x000000000000f610 0x1a8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_aranges + 0x000000000000f7b8 0xa8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .debug_aranges + 0x000000000000f860 0xc0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .debug_aranges + 0x000000000000f920 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_ceil.o) + .debug_aranges + 0x000000000000f940 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_floor.o) + .debug_aranges + 0x000000000000f960 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .debug_aranges + 0x000000000000f980 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_aranges + 0x000000000000f9a0 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .debug_aranges + 0x000000000000f9c0 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_aranges + 0x000000000000f9e0 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .debug_aranges + 0x000000000000fa00 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_aranges + 0x000000000000fa20 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_aranges + 0x000000000000fa40 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_aranges + 0x000000000000fa60 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_aranges + 0x000000000000fa80 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_aranges + 0x000000000000faa0 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .debug_aranges + 0x000000000000fac0 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .debug_aranges + 0x000000000000fae0 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .debug_aranges + 0x000000000000fb00 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .debug_aranges + 0x000000000000fb20 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .debug_aranges + 0x000000000000fb40 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .debug_aranges + 0x000000000000fb60 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_aranges + 0x000000000000fb80 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .debug_aranges + 0x000000000000fba0 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_aranges + 0x000000000000fbc0 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_aranges + 0x000000000000fbe0 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_aranges + 0x000000000000fc00 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .debug_aranges + 0x000000000000fc20 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .debug_aranges + 0x000000000000fc40 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_aranges + 0x000000000000fc60 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_aranges + 0x000000000000fc80 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .debug_aranges + 0x000000000000fca0 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .debug_aranges + 0x000000000000fcc0 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_aranges + 0x000000000000fce0 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace_l.o) + .debug_aranges + 0x000000000000fd00 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lnumeric.o) + .debug_aranges + 0x000000000000fd20 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .debug_aranges + 0x000000000000fd40 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_aranges + 0x000000000000fd60 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_aranges + 0x000000000000fd80 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .debug_aranges + 0x000000000000fda0 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_aranges + 0x000000000000fdc0 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_aranges + 0x000000000000fde0 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_nan.o) + .debug_aranges + 0x000000000000fe00 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .debug_aranges + 0x000000000000fe20 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_aranges + 0x000000000000fe40 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_aranges + 0x000000000000fe60 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .debug_aranges + 0x000000000000fe80 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .debug_aranges + 0x000000000000fea0 0x20 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + +.debug_ranges 0x0000000000000000 0x11c20 + .debug_ranges 0x0000000000000000 0x20 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_ranges 0x0000000000000020 0x198 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_ranges 0x00000000000001b8 0x70 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_ranges 0x0000000000000228 0x58 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_ranges 0x0000000000000280 0x48 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_ranges 0x00000000000002c8 0xa8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_ranges 0x0000000000000370 0x50 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_ranges 0x00000000000003c0 0x38 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_ranges 0x00000000000003f8 0x28 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_ranges 0x0000000000000420 0x18 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_ranges 0x0000000000000438 0x50 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_ranges 0x0000000000000488 0x20 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_ranges 0x00000000000004a8 0x68 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_ranges 0x0000000000000510 0x38 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_ranges 0x0000000000000548 0x50 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_ranges 0x0000000000000598 0x48 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_ranges 0x00000000000005e0 0x20 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_ranges 0x0000000000000600 0x18 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_ranges 0x0000000000000618 0x50 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_ranges 0x0000000000000668 0x30 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_ranges 0x0000000000000698 0x70 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_ranges 0x0000000000000708 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_ranges 0x0000000000000720 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x0000000000000750 0x48 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x0000000000000798 0x60 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_ranges 0x00000000000007f8 0x30 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_ranges 0x0000000000000828 0x10 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_ranges 0x0000000000000838 0x68 esp-idf/log/liblog.a(log.c.obj) + .debug_ranges 0x00000000000008a0 0x38 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_ranges 0x00000000000008d8 0x1d0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_ranges 0x0000000000000aa8 0x98 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_ranges 0x0000000000000b40 0xc0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_ranges 0x0000000000000c00 0x1e8 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_ranges 0x0000000000000de8 0x58 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_ranges 0x0000000000000e40 0x18 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_ranges 0x0000000000000e58 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_ranges 0x0000000000000ec8 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_ranges 0x0000000000000f38 0x160 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_ranges 0x0000000000001098 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_ranges 0x0000000000001120 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_ranges 0x0000000000001168 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_ranges 0x0000000000001198 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_ranges 0x00000000000011e8 0x158 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_ranges 0x0000000000001340 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_ranges 0x0000000000001360 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_ranges 0x00000000000013a8 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_ranges 0x00000000000013b8 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_ranges 0x0000000000001418 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_ranges 0x0000000000001460 0x28 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_ranges 0x0000000000001488 0x1e0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_ranges 0x0000000000001668 0x3d0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_ranges 0x0000000000001a38 0x100 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_ranges 0x0000000000001b38 0x18 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_ranges 0x0000000000001b50 0x38 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_ranges 0x0000000000001b88 0x18 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_ranges 0x0000000000001ba0 0x18 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_ranges 0x0000000000001bb8 0x30 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_ranges 0x0000000000001be8 0x10 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_ranges 0x0000000000001bf8 0x40 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_ranges 0x0000000000001c38 0x88 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_ranges 0x0000000000001cc0 0xc8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_ranges 0x0000000000001d88 0x30 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_ranges 0x0000000000001db8 0x48 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_ranges 0x0000000000001e00 0x18 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_ranges 0x0000000000001e18 0x50 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_ranges 0x0000000000001e68 0x70 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_ranges 0x0000000000001ed8 0x40 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_ranges 0x0000000000001f18 0x40 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_ranges 0x0000000000001f58 0x158 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_ranges 0x00000000000020b0 0x20 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_ranges 0x00000000000020d0 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_ranges 0x00000000000020f8 0x60 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_ranges 0x0000000000002158 0x40 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_ranges 0x0000000000002198 0x220 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_ranges 0x00000000000023b8 0x88 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_ranges 0x0000000000002440 0x1d0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_ranges 0x0000000000002610 0xb0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_ranges 0x00000000000026c0 0x90 esp-idf/bt/libbt.a(hli_api.c.obj) + .debug_ranges 0x0000000000002750 0x18 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_ranges 0x0000000000002768 0x48 esp-idf/main/libmain.a(app_main.c.obj) + .debug_ranges 0x00000000000027b0 0x170 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .debug_ranges 0x0000000000002920 0x78 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + .debug_ranges 0x0000000000002998 0x58 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + .debug_ranges 0x00000000000029f0 0x40 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + .debug_ranges 0x0000000000002a30 0x58 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + .debug_ranges 0x0000000000002a88 0x38 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + .debug_ranges 0x0000000000002ac0 0x158 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .debug_ranges 0x0000000000002c18 0x188 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .debug_ranges 0x0000000000002da0 0xf8 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .debug_ranges 0x0000000000002e98 0x38 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .debug_ranges 0x0000000000002ed0 0x80 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + .debug_ranges 0x0000000000002f50 0x20 esp-idf/protocomm/libprotocomm.a(security0.c.obj) + .debug_ranges 0x0000000000002f70 0x60 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + .debug_ranges 0x0000000000002fd0 0x60 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + .debug_ranges 0x0000000000003030 0x70 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + .debug_ranges 0x00000000000030a0 0x70 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + .debug_ranges 0x0000000000003110 0xe0 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .debug_ranges 0x00000000000031f0 0x98 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .debug_ranges 0x0000000000003288 0xf8 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .debug_ranges 0x0000000000003380 0xf8 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .debug_ranges 0x0000000000003478 0x38 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + .debug_ranges 0x00000000000034b0 0x2e0 esp-idf/bt/libbt.a(bt.c.obj) + .debug_ranges 0x0000000000003790 0x20 esp-idf/bt/libbt.a(addr.c.obj) + .debug_ranges 0x00000000000037b0 0x60 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .debug_ranges 0x0000000000003810 0x50 esp-idf/bt/libbt.a(ble_store_util.c.obj) + .debug_ranges 0x0000000000003860 0x70 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + .debug_ranges 0x00000000000038d0 0x140 esp-idf/bt/libbt.a(ble_hs.c.obj) + .debug_ranges 0x0000000000003a10 0xe8 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + .debug_ranges 0x0000000000003af8 0x40 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + .debug_ranges 0x0000000000003b38 0x70 esp-idf/bt/libbt.a(ble_att.c.obj) + .debug_ranges 0x0000000000003ba8 0x598 esp-idf/bt/libbt.a(ble_gattc.c.obj) + .debug_ranges 0x0000000000004140 0xb8 esp-idf/bt/libbt.a(ble_store.c.obj) + .debug_ranges 0x00000000000041f8 0xf8 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + .debug_ranges 0x00000000000042f0 0x48 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + .debug_ranges 0x0000000000004338 0x1a0 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .debug_ranges 0x00000000000044d8 0x18 esp-idf/bt/libbt.a(ble_hs_log.c.obj) + .debug_ranges 0x00000000000044f0 0x60 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + .debug_ranges 0x0000000000004550 0xb8 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + .debug_ranges 0x0000000000004608 0x458 esp-idf/bt/libbt.a(ble_gap.c.obj) + .debug_ranges 0x0000000000004a60 0x60 esp-idf/bt/libbt.a(ble_uuid.c.obj) + .debug_ranges 0x0000000000004ac0 0x58 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + .debug_ranges 0x0000000000004b18 0x58 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + .debug_ranges 0x0000000000004b70 0xb0 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .debug_ranges 0x0000000000004c20 0x38 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + .debug_ranges 0x0000000000004c58 0x1d8 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .debug_ranges 0x0000000000004e30 0x98 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .debug_ranges 0x0000000000004ec8 0xd0 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .debug_ranges 0x0000000000004f98 0x60 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .debug_ranges 0x0000000000004ff8 0x108 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .debug_ranges 0x0000000000005100 0xa8 esp-idf/bt/libbt.a(ble_store_config.c.obj) + .debug_ranges 0x00000000000051a8 0x50 esp-idf/bt/libbt.a(nimble_port.c.obj) + .debug_ranges 0x00000000000051f8 0x28 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + .debug_ranges 0x0000000000005220 0x98 esp-idf/bt/libbt.a(endian.c.obj) + .debug_ranges 0x00000000000052b8 0x70 esp-idf/bt/libbt.a(os_mempool.c.obj) + .debug_ranges 0x0000000000005328 0x48 esp-idf/bt/libbt.a(mem.c.obj) + .debug_ranges 0x0000000000005370 0x130 esp-idf/bt/libbt.a(os_mbuf.c.obj) + .debug_ranges 0x00000000000054a0 0x28 esp-idf/bt/libbt.a(os_msys_init.c.obj) + .debug_ranges 0x00000000000054c8 0x198 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .debug_ranges 0x0000000000005660 0x60 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .debug_ranges 0x00000000000056c0 0x30 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + .debug_ranges 0x00000000000056f0 0x60 esp-idf/bt/libbt.a(transport.c.obj) + .debug_ranges 0x0000000000005750 0xb0 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + .debug_ranges 0x0000000000005800 0x280 esp-idf/bt/libbt.a(ble_sm.c.obj) + .debug_ranges 0x0000000000005a80 0x30 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + .debug_ranges 0x0000000000005ab0 0x20 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + .debug_ranges 0x0000000000005ad0 0x220 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .debug_ranges 0x0000000000005cf0 0x30 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + .debug_ranges 0x0000000000005d20 0x80 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + .debug_ranges 0x0000000000005da0 0x50 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + .debug_ranges 0x0000000000005df0 0x30 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + .debug_ranges 0x0000000000005e20 0x18 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + .debug_ranges 0x0000000000005e38 0xb0 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + .debug_ranges 0x0000000000005ee8 0x690 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .debug_ranges 0x0000000000006578 0x400 esp-idf/json/libjson.a(cJSON.c.obj) + .debug_ranges 0x0000000000006978 0x18 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + .debug_ranges 0x0000000000006990 0x300 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .debug_ranges 0x0000000000006c90 0x28 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_ranges 0x0000000000006cb8 0x68 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_ranges 0x0000000000006d20 0x98 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_ranges 0x0000000000006db8 0x130 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x0000000000006ee8 0xb0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_ranges 0x0000000000006f98 0x120 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x00000000000070b8 0x248 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_ranges 0x0000000000007300 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_ranges 0x0000000000007310 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_ranges 0x00000000000073b0 0x68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_ranges 0x0000000000007418 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_ranges 0x0000000000007430 0x50 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_ranges 0x0000000000007480 0x110 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_ranges 0x0000000000007590 0x20 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_ranges 0x00000000000075b0 0x20 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_ranges 0x00000000000075d0 0x68 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_ranges 0x0000000000007638 0xc8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_ranges 0x0000000000007700 0x50 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_ranges 0x0000000000007750 0x118 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_ranges 0x0000000000007868 0x80 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_ranges 0x00000000000078e8 0xb0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_ranges 0x0000000000007998 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_ranges 0x00000000000079c8 0x118 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_ranges 0x0000000000007ae0 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_ranges 0x0000000000007b08 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_ranges 0x0000000000007b20 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_ranges 0x0000000000007b58 0x50 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_ranges 0x0000000000007ba8 0x68 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_ranges 0x0000000000007c10 0x20 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_ranges 0x0000000000007c30 0x48 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_ranges 0x0000000000007c78 0x60 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_ranges 0x0000000000007cd8 0xd8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_ranges 0x0000000000007db0 0x40 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_ranges 0x0000000000007df0 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_ranges 0x0000000000007e08 0x90 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_ranges 0x0000000000007e98 0x20 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_ranges 0x0000000000007eb8 0xe8 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_ranges 0x0000000000007fa0 0x38 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_ranges 0x0000000000007fd8 0x90 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_ranges 0x0000000000008068 0x50 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_ranges 0x00000000000080b8 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_ranges 0x00000000000080d8 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_ranges 0x00000000000080e8 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_ranges 0x0000000000008100 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_ranges 0x0000000000008170 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_ranges 0x0000000000008188 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_ranges 0x0000000000008198 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_ranges 0x00000000000081f0 0x80 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_ranges 0x0000000000008270 0x18 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_ranges 0x0000000000008288 0x48 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_ranges 0x00000000000082d0 0x48 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_ranges 0x0000000000008318 0x120 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_ranges 0x0000000000008438 0x340 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_ranges 0x0000000000008778 0x260 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_ranges 0x00000000000089d8 0xa0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_ranges 0x0000000000008a78 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_ranges 0x0000000000008ad8 0xc8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_ranges 0x0000000000008ba0 0x80 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_ranges 0x0000000000008c20 0x570 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_ranges 0x0000000000009190 0xd8 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_ranges 0x0000000000009268 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_ranges 0x0000000000009280 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_ranges 0x00000000000092a0 0xb0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_ranges 0x0000000000009350 0x50 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_ranges 0x00000000000093a0 0x420 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_ranges 0x00000000000097c0 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_ranges 0x00000000000097f8 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_ranges 0x0000000000009810 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_ranges 0x0000000000009820 0x140 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_ranges 0x0000000000009960 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_ranges 0x0000000000009970 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_ranges 0x0000000000009980 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_ranges 0x0000000000009990 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_ranges 0x00000000000099c0 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_ranges 0x0000000000009a08 0x128 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_ranges 0x0000000000009b30 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_ranges 0x0000000000009b80 0x18 esp-idf/esp_coex/libesp_coex.a(coexist.c.obj) + .debug_ranges 0x0000000000009b98 0x58 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_ranges 0x0000000000009bf0 0xc8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_ranges 0x0000000000009cb8 0x60 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_ranges 0x0000000000009d18 0x210 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_ranges 0x0000000000009f28 0x198 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_ranges 0x000000000000a0c0 0x238 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_ranges 0x000000000000a2f8 0x158 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_ranges 0x000000000000a450 0xf8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_ranges 0x000000000000a548 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_ranges 0x000000000000a628 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_ranges 0x000000000000a698 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_ranges 0x000000000000a738 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_ranges 0x000000000000a808 0x2d0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_ranges 0x000000000000aad8 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_ranges 0x000000000000ab80 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_ranges 0x000000000000ac00 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_ranges 0x000000000000acb0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_ranges 0x000000000000acc8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_ranges 0x000000000000acf8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_ranges 0x000000000000ad28 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_ranges 0x000000000000ad70 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_ranges 0x000000000000ad88 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_ranges 0x000000000000adb0 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_ranges 0x000000000000add8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_ranges 0x000000000000ade8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_ranges 0x000000000000ae00 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_ranges 0x000000000000ae60 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_ranges 0x000000000000ae88 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_ranges 0x000000000000af00 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_ranges 0x000000000000af68 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_ranges 0x000000000000afb8 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_ranges 0x000000000000b010 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_ranges 0x000000000000b068 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_ranges 0x000000000000b0c0 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_ranges 0x000000000000b148 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_ranges 0x000000000000b188 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_ranges 0x000000000000b200 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_ranges 0x000000000000b2b0 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_ranges 0x000000000000b350 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_ranges 0x000000000000b458 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_ranges 0x000000000000b4a8 0x170 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_ranges 0x000000000000b618 0x128 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_ranges 0x000000000000b740 0xb0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_ranges 0x000000000000b7f0 0x58 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_ranges 0x000000000000b848 0x188 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_ranges 0x000000000000b9d0 0x10 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_ranges 0x000000000000b9e0 0xe0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_ranges 0x000000000000bac0 0x90 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_ranges 0x000000000000bb50 0x30 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_ranges 0x000000000000bb80 0x28 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_ranges 0x000000000000bba8 0x10 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_ranges 0x000000000000bbb8 0x1c0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_ranges 0x000000000000bd78 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_ranges 0x000000000000bd90 0x70 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_ranges 0x000000000000be00 0x360 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_ranges 0x000000000000c160 0x90 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_ranges 0x000000000000c1f0 0x98 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_ranges 0x000000000000c288 0xf0 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_ranges 0x000000000000c378 0x10 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_ranges 0x000000000000c388 0x28 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_ranges 0x000000000000c3b0 0x30 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_ranges 0x000000000000c3e0 0x48 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_ranges 0x000000000000c428 0x140 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_ranges 0x000000000000c568 0x198 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_ranges 0x000000000000c700 0x78 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_ranges 0x000000000000c778 0x228 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_ranges 0x000000000000c9a0 0x60 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_ranges 0x000000000000ca00 0xf8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_ranges 0x000000000000caf8 0x60 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_ranges 0x000000000000cb58 0x90 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_ranges 0x000000000000cbe8 0x188 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_ranges 0x000000000000cd70 0xc8 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_ranges 0x000000000000ce38 0x20 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_ranges 0x000000000000ce58 0xa0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_ranges 0x000000000000cef8 0xd0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_ranges 0x000000000000cfc8 0x38 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_ranges 0x000000000000d000 0x10 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_ranges 0x000000000000d010 0x50 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_ranges 0x000000000000d060 0x60 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_ranges 0x000000000000d0c0 0x20 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_ranges 0x000000000000d0e0 0x10 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_ranges 0x000000000000d0f0 0x90 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_ranges 0x000000000000d180 0x118 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_ranges 0x000000000000d298 0x18 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_ranges 0x000000000000d2b0 0x18 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_ranges 0x000000000000d2c8 0x28 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_ranges 0x000000000000d2f0 0xf0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_ranges 0x000000000000d3e0 0x40 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_ranges 0x000000000000d420 0xe0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_ranges 0x000000000000d500 0x170 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_ranges 0x000000000000d670 0x190 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_ranges 0x000000000000d800 0x10 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_ranges 0x000000000000d810 0x50 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_ranges 0x000000000000d860 0x60 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_ranges 0x000000000000d8c0 0x50 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_ranges 0x000000000000d910 0x40 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_ranges 0x000000000000d950 0x18 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_ranges 0x000000000000d968 0xb0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_ranges 0x000000000000da18 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_ranges 0x000000000000da80 0xb0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_ranges 0x000000000000db30 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_ranges 0x000000000000db50 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_ranges 0x000000000000db88 0x1e8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_ranges 0x000000000000dd70 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_ranges 0x000000000000dde0 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_ranges 0x000000000000de50 0x240 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_ranges 0x000000000000e090 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_ranges 0x000000000000e0e0 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_ranges 0x000000000000e150 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_ranges 0x000000000000e1b0 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_ranges 0x000000000000e268 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_ranges 0x000000000000e290 0x238 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_ranges 0x000000000000e4c8 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_ranges 0x000000000000e510 0x120 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_ranges 0x000000000000e630 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_ranges 0x000000000000e640 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_ranges 0x000000000000e660 0x278 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_ranges 0x000000000000e8d8 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_ranges 0x000000000000e918 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_ranges 0x000000000000e998 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_ranges 0x000000000000ea28 0xb0 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + .debug_ranges 0x000000000000ead8 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + .debug_ranges 0x000000000000eaf8 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + .debug_ranges 0x000000000000eb50 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_ranges 0x000000000000ebb0 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_ranges 0x000000000000ec80 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_ranges 0x000000000000ecc0 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_ranges 0x000000000000ed28 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_ranges 0x000000000000eda8 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_ranges 0x000000000000ee68 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_ranges 0x000000000000ef38 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_ranges 0x000000000000efd8 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_ranges 0x000000000000f098 0x138 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_ranges 0x000000000000f1d0 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_ranges 0x000000000000f288 0x1a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_ranges 0x000000000000f428 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_ranges 0x000000000000f458 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .debug_ranges 0x000000000000f480 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_ranges 0x000000000000f4c0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_ranges 0x000000000000f4e0 0x10 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_ranges 0x000000000000f4f0 0xd0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_ranges 0x000000000000f5c0 0x20 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .debug_ranges 0x000000000000f5e0 0xbc8 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_ranges 0x00000000000101a8 0x1340 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_ranges 0x00000000000114e8 0x598 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_ranges 0x0000000000011a80 0xf0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .debug_ranges 0x0000000000011b70 0xb0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + +.debug_line 0x0000000000000000 0x25b264 + .debug_line 0x0000000000000000 0x505 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_line 0x0000000000000505 0x2599 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_line 0x0000000000002a9e 0xc9b esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_line 0x0000000000003739 0xd3a esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_line 0x0000000000004473 0xa2e esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_line 0x0000000000004ea1 0x7e8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_line 0x0000000000005689 0x1643 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_line 0x0000000000006ccc 0x651 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_line 0x000000000000731d 0x1c0 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_line 0x00000000000074dd 0xad1 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_line 0x0000000000007fae 0x43d esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_line 0x00000000000083eb 0xe82 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_line 0x000000000000926d 0x169 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_line 0x00000000000093d6 0xb0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_line 0x0000000000009486 0x791 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_line 0x0000000000009c17 0xde7 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_line 0x000000000000a9fe 0x466 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_line 0x000000000000ae64 0x134b esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_line 0x000000000000c1af 0xc97 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_line 0x000000000000ce46 0x806 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_line 0x000000000000d64c 0x852 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_line 0x000000000000de9e 0xb22 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_line 0x000000000000e9c0 0xb28 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_line 0x000000000000f4e8 0xd1 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_line 0x000000000000f5b9 0xbae esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_line 0x0000000000010167 0x48b esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_line 0x00000000000105f2 0x43e esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x0000000000010a30 0xa75 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x00000000000114a5 0x16f6 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_line 0x0000000000012b9b 0x8e5 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_line 0x0000000000013480 0x3fa esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_line 0x000000000001387a 0xbaa esp-idf/log/liblog.a(log.c.obj) + .debug_line 0x0000000000014424 0x9e7 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_line 0x0000000000014e0b 0x2061 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_line 0x0000000000016e6c 0x107f esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_line 0x0000000000017eeb 0x12d8 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_line 0x00000000000191c3 0x6aca esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_line 0x000000000001fc8d 0xb07 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_line 0x0000000000020794 0x2d4 esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_line 0x0000000000020a68 0x1f9 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_line 0x0000000000020c61 0xdeb esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_line 0x0000000000021a4c 0x994 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_line 0x00000000000223e0 0x3138 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_line 0x0000000000025518 0x14c6 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_line 0x00000000000269de 0xb28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_line 0x0000000000027506 0xeeb esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_line 0x00000000000283f1 0x539 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_line 0x000000000002892a 0x36b7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_line 0x000000000002bfe1 0x1a07 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_line 0x000000000002d9e8 0x1301 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_line 0x000000000002ece9 0x5d3 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_line 0x000000000002f2bc 0xa21 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_line 0x000000000002fcdd 0x9a5 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_line 0x0000000000030682 0xbd7 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_line 0x0000000000031259 0x3113 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_line 0x000000000003436c 0x8b12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_line 0x000000000003ce7e 0x16a6 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_line 0x000000000003e524 0x4ef esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_line 0x000000000003ea13 0x1bd esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_line 0x000000000003ebd0 0x510 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_line 0x000000000003f0e0 0x59c esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_line 0x000000000003f67c 0x44c esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_line 0x000000000003fac8 0x644 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_line 0x000000000004010c 0x4d9 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_line 0x00000000000405e5 0x731 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_line 0x0000000000040d16 0x76d esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_line 0x0000000000041483 0xdcf esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_line 0x0000000000042252 0x3fe esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_line 0x0000000000042650 0x6a9 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_line 0x0000000000042cf9 0x4fd esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_line 0x00000000000431f6 0x7e7 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_line 0x00000000000439dd 0x1044 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_line 0x0000000000044a21 0x630 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_line 0x0000000000045051 0xe4c esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_line 0x0000000000045e9d 0x20fe esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_line 0x0000000000047f9b 0x5a3 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_line 0x000000000004853e 0x3ed esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_line 0x000000000004892b 0x1292 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_line 0x0000000000049bbd 0x442 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_line 0x0000000000049fff 0x54f9 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_line 0x000000000004f4f8 0xaa8 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_line 0x000000000004ffa0 0x2cdd esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_line 0x0000000000052c7d 0xb99 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_line 0x0000000000053816 0x2ec esp-idf/bt/libbt.a(hli_vectors.S.obj) + .debug_line 0x0000000000053b02 0x11b0 esp-idf/bt/libbt.a(hli_api.c.obj) + .debug_line 0x0000000000054cb2 0x358 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_line 0x000000000005500a 0x1ccf esp-idf/main/libmain.a(app_main.c.obj) + .debug_line 0x0000000000056cd9 0x67d0 esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + .debug_line 0x000000000005d4a9 0xe99 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + .debug_line 0x000000000005e342 0x13e5 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + .debug_line 0x000000000005f727 0x14a7 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + .debug_line 0x0000000000060bce 0x16dc esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + .debug_line 0x00000000000622aa 0xd86 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + .debug_line 0x0000000000063030 0xf2a esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + .debug_line 0x0000000000063f5a 0x10ce esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + .debug_line 0x0000000000065028 0xbbd esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + .debug_line 0x0000000000065be5 0x4d7 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + .debug_line 0x00000000000660bc 0x1c2b esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + .debug_line 0x0000000000067ce7 0x20e esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) + .debug_line 0x0000000000067ef5 0x9e6 esp-idf/protocomm/libprotocomm.a(security0.c.obj) + .debug_line 0x00000000000688db 0x2848 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + .debug_line 0x000000000006b123 0x27e6 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + .debug_line 0x000000000006d909 0x17f5 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + .debug_line 0x000000000006f0fe 0x919 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + .debug_line 0x000000000006fa17 0x39c4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + .debug_line 0x00000000000733db 0x80f esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + .debug_line 0x0000000000073bea 0xb5f esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + .debug_line 0x0000000000074749 0xb5f esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + .debug_line 0x00000000000752a8 0x4f4 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + .debug_line 0x000000000007579c 0x3549 esp-idf/bt/libbt.a(bt.c.obj) + .debug_line 0x0000000000078ce5 0x43d esp-idf/bt/libbt.a(addr.c.obj) + .debug_line 0x0000000000079122 0x919 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + .debug_line 0x0000000000079a3b 0x99d esp-idf/bt/libbt.a(ble_store_util.c.obj) + .debug_line 0x000000000007a3d8 0xcf3 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + .debug_line 0x000000000007b0cb 0x1e81 esp-idf/bt/libbt.a(ble_hs.c.obj) + .debug_line 0x000000000007cf4c 0x1a13 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + .debug_line 0x000000000007e95f 0x6b1 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + .debug_line 0x000000000007f010 0xbe9 esp-idf/bt/libbt.a(ble_att.c.obj) + .debug_line 0x000000000007fbf9 0x756c esp-idf/bt/libbt.a(ble_gattc.c.obj) + .debug_line 0x0000000000087165 0xf7a esp-idf/bt/libbt.a(ble_store.c.obj) + .debug_line 0x00000000000880df 0x395 esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) + .debug_line 0x0000000000088474 0x1d20 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + .debug_line 0x000000000008a194 0x57d esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + .debug_line 0x000000000008a711 0x16d9 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + .debug_line 0x000000000008bdea 0x410 esp-idf/bt/libbt.a(ble_hs_log.c.obj) + .debug_line 0x000000000008c1fa 0xad3 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + .debug_line 0x000000000008cccd 0x17bb esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + .debug_line 0x000000000008e488 0x7e6d esp-idf/bt/libbt.a(ble_gap.c.obj) + .debug_line 0x00000000000962f5 0xba0 esp-idf/bt/libbt.a(ble_uuid.c.obj) + .debug_line 0x0000000000096e95 0x8e6 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + .debug_line 0x000000000009777b 0xd13 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + .debug_line 0x000000000009848e 0x13c2 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + .debug_line 0x0000000000099850 0x831 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + .debug_line 0x000000000009a081 0x44d7 esp-idf/bt/libbt.a(ble_gatts.c.obj) + .debug_line 0x000000000009e558 0x1d4f esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + .debug_line 0x00000000000a02a7 0x1770 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + .debug_line 0x00000000000a1a17 0xc2c esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + .debug_line 0x00000000000a2643 0x1f45 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + .debug_line 0x00000000000a4588 0x1279 esp-idf/bt/libbt.a(ble_store_config.c.obj) + .debug_line 0x00000000000a5801 0xedb esp-idf/bt/libbt.a(nimble_port.c.obj) + .debug_line 0x00000000000a66dc 0x447 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + .debug_line 0x00000000000a6b23 0xd90 esp-idf/bt/libbt.a(endian.c.obj) + .debug_line 0x00000000000a78b3 0x11ee esp-idf/bt/libbt.a(os_mempool.c.obj) + .debug_line 0x00000000000a8aa1 0x8fb esp-idf/bt/libbt.a(mem.c.obj) + .debug_line 0x00000000000a939c 0x3505 esp-idf/bt/libbt.a(os_mbuf.c.obj) + .debug_line 0x00000000000ac8a1 0x5ad esp-idf/bt/libbt.a(os_msys_init.c.obj) + .debug_line 0x00000000000ace4e 0x293f esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + .debug_line 0x00000000000af78d 0x1152 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + .debug_line 0x00000000000b08df 0x37a esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + .debug_line 0x00000000000b0c59 0xafc esp-idf/bt/libbt.a(transport.c.obj) + .debug_line 0x00000000000b1755 0x1657 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + .debug_line 0x00000000000b2dac 0x5995 esp-idf/bt/libbt.a(ble_sm.c.obj) + .debug_line 0x00000000000b8741 0x83f esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + .debug_line 0x00000000000b8f80 0x680 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + .debug_line 0x00000000000b9600 0x5546 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + .debug_line 0x00000000000beb46 0x6bc esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + .debug_line 0x00000000000bf202 0x132b esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + .debug_line 0x00000000000c052d 0xb96 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + .debug_line 0x00000000000c10c3 0xc08 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + .debug_line 0x00000000000c1ccb 0x600 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + .debug_line 0x00000000000c22cb 0x241c esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + .debug_line 0x00000000000c46e7 0x9775 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + .debug_line 0x00000000000cde5c 0x6d69 esp-idf/json/libjson.a(cJSON.c.obj) + .debug_line 0x00000000000d4bc5 0x814 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + .debug_line 0x00000000000d53d9 0x3ccc esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + .debug_line 0x00000000000d90a5 0x378 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_line 0x00000000000d941d 0xf1 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_line 0x00000000000d950e 0x6f6 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_line 0x00000000000d9c04 0x995 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_line 0x00000000000da599 0x12a8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_line 0x00000000000db841 0x1bf9 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x00000000000dd43a 0xf73 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_line 0x00000000000de3ad 0x258 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_line 0x00000000000de605 0x13fd esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x00000000000dfa02 0x9742 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_line 0x00000000000e9144 0x104 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_line 0x00000000000e9248 0x1533 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_line 0x00000000000ea77b 0x1efb esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_line 0x00000000000ec676 0x2e1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_line 0x00000000000ec957 0x1169 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_line 0x00000000000edac0 0x3c95 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_line 0x00000000000f1755 0x2e2 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_line 0x00000000000f1a37 0x287 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_line 0x00000000000f1cbe 0x2ab esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_line 0x00000000000f1f69 0xe2a esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_line 0x00000000000f2d93 0x1276 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_line 0x00000000000f4009 0x64d esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_line 0x00000000000f4656 0x3a9c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_line 0x00000000000f80f2 0x13ed esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_line 0x00000000000f94df 0x10a2 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_line 0x00000000000fa581 0x62d esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_line 0x00000000000fabae 0x3c8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_line 0x00000000000faf76 0x2684 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_line 0x00000000000fd5fa 0x4f9 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_line 0x00000000000fdaf3 0x481 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_line 0x00000000000fdf74 0x67b esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_line 0x00000000000fe5ef 0xc80 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_line 0x00000000000ff26f 0xeb7 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_line 0x0000000000100126 0x46b esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_line 0x0000000000100591 0x888 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_line 0x0000000000100e19 0x99b esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_line 0x00000000001017b4 0x2bb3 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_line 0x0000000000104367 0x954 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_line 0x0000000000104cbb 0x11f esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_line 0x0000000000104dda 0x220 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_line 0x0000000000104ffa 0x1676 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_line 0x0000000000106670 0x874 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_line 0x0000000000106ee4 0x1815 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_line 0x00000000001086f9 0x923 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_line 0x000000000010901c 0x19fe esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_line 0x000000000010aa1a 0x595 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_line 0x000000000010afaf 0xd2 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_line 0x000000000010b081 0x243 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_line 0x000000000010b2c4 0x247 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_line 0x000000000010b50b 0x21c esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_line 0x000000000010b727 0x5d8 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_line 0x000000000010bcff 0x1369 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_line 0x000000000010d068 0x22c esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_line 0x000000000010d294 0x87a esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_line 0x000000000010db0e 0x902 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_line 0x000000000010e410 0x13ed esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_line 0x000000000010f7fd 0x4d7 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_line 0x000000000010fcd4 0x6e8 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_line 0x00000000001103bc 0x6ec esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_line 0x0000000000110aa8 0x2eca esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_line 0x0000000000113972 0x3871 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_line 0x00000000001171e3 0x421d esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_line 0x000000000011b400 0x1150 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_line 0x000000000011c550 0x99a esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_line 0x000000000011ceea 0x1e25 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_line 0x000000000011ed0f 0x12aa esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_line 0x000000000011ffb9 0x49e2 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_line 0x000000000012499b 0x208d esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_line 0x0000000000126a28 0x926 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_line 0x000000000012734e 0xa06 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_line 0x0000000000127d54 0x1a1a esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_line 0x000000000012976e 0xd83 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_line 0x000000000012a4f1 0x6f68 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_line 0x0000000000131459 0x5f9 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_line 0x0000000000131a52 0x6a7 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_line 0x00000000001320f9 0x52e esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_line 0x0000000000132627 0x19d0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_line 0x0000000000133ff7 0x597 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_line 0x000000000013458e 0x531 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_line 0x0000000000134abf 0x597 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_line 0x0000000000135056 0x4de esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_line 0x0000000000135534 0x13ff esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_line 0x0000000000136933 0x1ee4 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_line 0x0000000000138817 0xcfd esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_line 0x0000000000139514 0x1a6 esp-idf/esp_coex/libesp_coex.a(coexist.c.obj) + .debug_line 0x00000000001396ba 0xe2e esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_line 0x000000000013a4e8 0x1726 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_line 0x000000000013bc0e 0xa98 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_line 0x000000000013c6a6 0x19a7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_line 0x000000000013e04d 0x5cef esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_line 0x0000000000143d3c 0x23f7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_line 0x0000000000146133 0x27ae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_line 0x00000000001488e1 0xaf7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_line 0x00000000001493d8 0x19da esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_line 0x000000000014adb2 0x1666 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_line 0x000000000014c418 0x1713 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_line 0x000000000014db2b 0xe0d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_line 0x000000000014e938 0x7215 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_line 0x0000000000155b4d 0x59bc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_line 0x000000000015b509 0x12e9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_line 0x000000000015c7f2 0x195c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_line 0x000000000015e14e 0x59c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_line 0x000000000015e6ea 0xcfa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_line 0x000000000015f3e4 0x2f2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_line 0x000000000015f6d6 0x4fd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_line 0x000000000015fbd3 0x604 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_line 0x00000000001601d7 0x762 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_line 0x0000000000160939 0x762 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_line 0x000000000016109b 0x1aa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_line 0x0000000000161245 0x2d2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_line 0x0000000000161517 0xad5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_line 0x0000000000161fec 0x475 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_line 0x0000000000162461 0x1aa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_line 0x0000000000163f03 0x1431 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_line 0x0000000000165334 0x7c1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_line 0x0000000000165af5 0x1a2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_line 0x0000000000167524 0x14f7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_line 0x0000000000168a1b 0x1927 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_line 0x000000000016a342 0x18cb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_line 0x000000000016bc0d 0x4b9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_line 0x000000000016c0c6 0x2513 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_line 0x000000000016e5d9 0x1361 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_line 0x000000000016f93a 0x1938 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_line 0x0000000000171272 0x103b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_line 0x00000000001722ad 0xa06 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_line 0x0000000000172cb3 0x3bf8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_line 0x00000000001768ab 0x20d9 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_line 0x0000000000178984 0x1852 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_line 0x000000000017a1d6 0xcb6 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_line 0x000000000017ae8c 0x2d95 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_line 0x000000000017dc21 0x34c esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_line 0x000000000017df6d 0xb41 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_line 0x000000000017eaae 0x99b esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_line 0x000000000017f449 0x88e esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_line 0x000000000017fcd7 0x617 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_line 0x00000000001802ee 0x2b1 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_line 0x000000000018059f 0x23d esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .debug_line 0x00000000001807dc 0x390d esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_line 0x00000000001840e9 0x1ad esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_line 0x0000000000184296 0x8b3 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_line 0x0000000000184b49 0xa659 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_line 0x000000000018f1a2 0x110e esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_line 0x00000000001902b0 0x867 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_line 0x0000000000190b17 0x2e0e esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_line 0x0000000000193925 0x2be esp-idf/lwip/liblwip.a(init.c.obj) + .debug_line 0x0000000000193be3 0x63d esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_line 0x0000000000194220 0x4f7 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_line 0x0000000000194717 0x809 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_line 0x0000000000194f20 0x379d esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_line 0x00000000001986bd 0x2ab8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_line 0x000000000019b175 0x1d71 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_line 0x000000000019cee6 0x540d esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_line 0x00000000001a22f3 0x4aa5 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_line 0x00000000001a6d98 0x39da esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_line 0x00000000001aa772 0xd81 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_line 0x00000000001ab4f3 0x2e41 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_line 0x00000000001ae334 0x4715 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_line 0x00000000001b2a49 0x1f87 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_line 0x00000000001b49d0 0xb37 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_line 0x00000000001b5507 0x1901 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_line 0x00000000001b6e08 0x1741 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_line 0x00000000001b8549 0xd50 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_line 0x00000000001b9299 0x790 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_line 0x00000000001b9a29 0xac8 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_line 0x00000000001ba4f1 0x25ec esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_line 0x00000000001bcadd 0x1036 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_line 0x00000000001bdb13 0x764 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_line 0x00000000001be277 0x1696 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_line 0x00000000001bf90d 0x576e esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_line 0x00000000001c507b 0x898 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_line 0x00000000001c5913 0x641 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_line 0x00000000001c5f54 0x8fb esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_line 0x00000000001c684f 0x152f esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_line 0x00000000001c7d7e 0x822 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_line 0x00000000001c85a0 0x2fdf esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_line 0x00000000001cb57f 0x2ce6 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_line 0x00000000001ce265 0x4de6 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_line 0x00000000001d304b 0x307 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_line 0x00000000001d3352 0xa55 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_line 0x00000000001d3da7 0x1019 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_line 0x00000000001d4dc0 0xa8c esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_line 0x00000000001d584c 0x21b esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_line 0x00000000001d5a67 0x47b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_line 0x00000000001d5ee2 0x979 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_line 0x00000000001d685b 0x456 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_line 0x00000000001d6cb1 0x139b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_line 0x00000000001d804c 0xb33 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_line 0x00000000001d8b7f 0x2242 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_line 0x00000000001dadc1 0x614 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_line 0x00000000001db3d5 0x146b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_line 0x00000000001dc840 0x31e4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_line 0x00000000001dfa24 0x1761 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_line 0x00000000001e1185 0xedd esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_line 0x00000000001e2062 0x5cfe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_line 0x00000000001e7d60 0x2717 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_line 0x00000000001ea477 0x11fa esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_line 0x00000000001eb671 0xc62 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_line 0x00000000001ec2d3 0x1ecb esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_line 0x00000000001ee19e 0xaba esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_line 0x00000000001eec58 0x7326 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_line 0x00000000001f5f7e 0xc79 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_line 0x00000000001f6bf7 0x2a5f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_line 0x00000000001f9656 0x5d8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_line 0x00000000001f9c2e 0x94e esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_line 0x00000000001fa57c 0x64a3 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_line 0x0000000000200a1f 0x2288 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_line 0x0000000000202ca7 0xd0c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_line 0x00000000002039b3 0x22c3 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_line 0x0000000000205c76 0x19d8 esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + .debug_line 0x000000000020764e 0x635 esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + .debug_line 0x0000000000207c83 0xf38 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + .debug_line 0x0000000000208bbb 0xa3d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_line 0x00000000002095f8 0xe12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_line 0x000000000020a40a 0xd66 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_line 0x000000000020b170 0x1375 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_line 0x000000000020c4e5 0x1674 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_line 0x000000000020db59 0x18de esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_line 0x000000000020f437 0x1d77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_line 0x00000000002111ae 0x1278 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_line 0x0000000000212426 0x1455 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_line 0x000000000021387b 0x13f3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_line 0x0000000000214c6e 0x3326 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_line 0x0000000000217f94 0x51a9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_line 0x000000000021d13d 0x122e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_line 0x000000000021e36b 0x47d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .debug_line 0x000000000021e7e8 0x12ce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_line 0x000000000021fab6 0xd8b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_line 0x0000000000220841 0x4d9 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_line 0x0000000000220d1a 0x2ef /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .debug_line 0x0000000000221009 0x6a /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .debug_line 0x0000000000221073 0x50 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .debug_line 0x00000000002210c3 0x66 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .debug_line 0x0000000000221129 0x66 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .debug_line 0x000000000022118f 0x7b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .debug_line 0x000000000022120a 0x7b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opvs.o) + .debug_line 0x0000000000221285 0xcc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .debug_line 0x0000000000221351 0xab /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .debug_line 0x00000000002213fc 0x91 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .debug_line 0x000000000022148d 0x48c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + .debug_line 0x0000000000221919 0x417 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .debug_line 0x0000000000221d30 0x2b1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .debug_line 0x0000000000221fe1 0x7c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + .debug_line 0x000000000022205d 0x81 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opv.o) + .debug_line 0x00000000002220de 0x8a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + .debug_line 0x0000000000222168 0x157 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + .debug_line 0x00000000002222bf 0x3a0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_line 0x000000000022265f 0x1b5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .debug_line 0x0000000000222814 0xdc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + .debug_line 0x00000000002228f0 0x421 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .debug_line 0x0000000000222d11 0x7b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .debug_line 0x0000000000222d8c 0xd09 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .debug_line 0x0000000000223a95 0x257 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .debug_line 0x0000000000223cec 0x408 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + .debug_line 0x00000000002240f4 0xf9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divsf3.o) + .debug_line 0x00000000002241ed 0x884 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_line 0x0000000000224a71 0x930 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_line 0x00000000002253a1 0x7a7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_line 0x0000000000225b48 0x8ad /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_line 0x00000000002263f5 0x84c esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_line 0x0000000000226c41 0xb1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .debug_line 0x0000000000226cf2 0x2355 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_line 0x0000000000229047 0x3eae /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_line 0x000000000022cef5 0x2571 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_line 0x000000000022f466 0x822 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .debug_line 0x000000000022fc88 0xdba /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .debug_line 0x0000000000230a42 0x3b0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_ceil.o) + .debug_line 0x0000000000230df2 0x393 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_floor.o) + .debug_line 0x0000000000231185 0x86 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .debug_line 0x000000000023120b 0x2ac /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_line 0x00000000002314b7 0xed /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .debug_line 0x00000000002315a4 0xa73 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_line 0x0000000000232017 0x969 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .debug_line 0x0000000000232980 0x386 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_line 0x0000000000232d06 0x23c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_line 0x0000000000232f42 0x248 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_line 0x000000000023318a 0x151 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_line 0x00000000002332db 0x35e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_line 0x0000000000233639 0x35a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .debug_line 0x0000000000233993 0x48a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .debug_line 0x0000000000233e1d 0x3c7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .debug_line 0x00000000002341e4 0x236 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .debug_line 0x000000000023441a 0x2db /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .debug_line 0x00000000002346f5 0x276b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .debug_line 0x0000000000236e60 0x5b2a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_line 0x000000000023c98a 0x4850 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .debug_line 0x00000000002411da 0xab /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_line 0x0000000000241285 0x5ed8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_line 0x000000000024715d 0x172 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_line 0x00000000002472cf 0x235 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .debug_line 0x0000000000247504 0x31c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .debug_line 0x0000000000247820 0x25c8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_line 0x0000000000249de8 0x1c9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_line 0x0000000000249fb1 0x1158 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .debug_line 0x000000000024b109 0x6ab /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .debug_line 0x000000000024b7b4 0x8f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_line 0x000000000024b843 0xd0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace_l.o) + .debug_line 0x000000000024b913 0xac /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lnumeric.o) + .debug_line 0x000000000024b9bf 0x17b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .debug_line 0x000000000024bb3a 0x1a0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_line 0x000000000024bcda 0x192 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_line 0x000000000024be6c 0x177 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .debug_line 0x000000000024bfe3 0x2729 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_line 0x000000000024e70c 0x20f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_line 0x000000000024e91b 0x80 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_nan.o) + .debug_line 0x000000000024e99b 0x7e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .debug_line 0x000000000024ea19 0x582 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_line 0x000000000024ef9b 0x5a0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_line 0x000000000024f53b 0x3d24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .debug_line 0x000000000025325f 0x423e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .debug_line 0x000000000025749d 0x3dc7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + +.debug_str 0x0000000000000000 0x6df8a + .debug_str 0x0000000000000000 0x296 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x314 (size before relaxing) + .debug_str 0x0000000000000296 0x1085 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x13ac (size before relaxing) + .debug_str 0x000000000000131b 0x1df esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0xb91 (size before relaxing) + .debug_str 0x00000000000014fa 0x236 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + 0x5f4 (size before relaxing) + .debug_str 0x0000000000001730 0x14e esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + 0x405 (size before relaxing) + .debug_str 0x000000000000187e 0x4a7 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + 0x6c8 (size before relaxing) + .debug_str 0x0000000000001d25 0x1cc0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x297a (size before relaxing) + .debug_str 0x00000000000039e5 0x188 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x3d0 (size before relaxing) + .debug_str 0x0000000000003b6d 0x70 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + 0xc9 (size before relaxing) + .debug_str 0x0000000000003bdd 0x22fe esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x3252 (size before relaxing) + .debug_str 0x0000000000005edb 0xbd esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x948 (size before relaxing) + .debug_str 0x0000000000005f98 0x35c esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0xcb9 (size before relaxing) + .debug_str 0x00000000000062f4 0x6c esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + 0xd3 (size before relaxing) + .debug_str 0x0000000000006360 0x6d esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + 0xd4 (size before relaxing) + .debug_str 0x00000000000063cd 0xf1 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x2aa4 (size before relaxing) + .debug_str 0x00000000000064be 0x94a esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x310f (size before relaxing) + .debug_str 0x0000000000006e08 0xd6 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x8ef (size before relaxing) + .debug_str 0x0000000000006ede 0x80f esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x315a (size before relaxing) + .debug_str 0x00000000000076ed 0x1f4 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x29fa (size before relaxing) + .debug_str 0x00000000000078e1 0x156 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x1751 (size before relaxing) + .debug_str 0x0000000000007a37 0xbb esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x208a (size before relaxing) + .debug_str 0x0000000000007af2 0x169 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x520 (size before relaxing) + .debug_str 0x0000000000007c5b 0x11e esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x3f7 (size before relaxing) + .debug_str 0x0000000000007d79 0x6a esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0xd1 (size before relaxing) + .debug_str 0x0000000000007de3 0x200 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0xb2b (size before relaxing) + .debug_str 0x0000000000007fe3 0x97 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + 0x92c (size before relaxing) + .debug_str 0x000000000000807a 0x17f esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x176e (size before relaxing) + .debug_str 0x00000000000081f9 0x2ca esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x18c0 (size before relaxing) + .debug_str 0x00000000000084c3 0x439 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x23f2 (size before relaxing) + .debug_str 0x00000000000088fc 0x15a esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0xa08 (size before relaxing) + .debug_str 0x0000000000008a56 0x12f esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x1610 (size before relaxing) + .debug_str 0x0000000000008b85 0x296 esp-idf/log/liblog.a(log.c.obj) + 0x5af (size before relaxing) + .debug_str 0x0000000000008e1b 0x12d esp-idf/log/liblog.a(log_freertos.c.obj) + 0xb96 (size before relaxing) + .debug_str 0x0000000000008f48 0x64b esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x101d (size before relaxing) + .debug_str 0x0000000000009593 0x24c esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0xd02 (size before relaxing) + .debug_str 0x00000000000097df 0x492 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x8b2 (size before relaxing) + .debug_str 0x0000000000009c71 0x51d esp-idf/heap/libheap.a(tlsf.c.obj) + 0x990 (size before relaxing) + .debug_str 0x000000000000a18e 0x16e esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0xb32 (size before relaxing) + .debug_str 0x000000000000a2fc 0x1f8 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0xaf3 (size before relaxing) + .debug_str 0x000000000000a4f4 0x76 esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x22f (size before relaxing) + .debug_str 0x000000000000a56a 0x2fa esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0xbe4 (size before relaxing) + .debug_str 0x000000000000a864 0x37c esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x1020 (size before relaxing) + .debug_str 0x000000000000abe0 0x593 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x152c (size before relaxing) + .debug_str 0x000000000000b173 0x268 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0xe73 (size before relaxing) + .debug_str 0x000000000000b3db 0x171 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x1eb1 (size before relaxing) + .debug_str 0x000000000000b54c 0x826 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x1677 (size before relaxing) + .debug_str 0x000000000000bd72 0x321 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + 0x53a (size before relaxing) + .debug_str 0x000000000000c093 0x949 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x317e (size before relaxing) + .debug_str 0x000000000000c9dc 0x190 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x17cb (size before relaxing) + .debug_str 0x000000000000cb6c 0x236 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x11ce (size before relaxing) + .debug_str 0x000000000000cda2 0x9b esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0x174f (size before relaxing) + .debug_str 0x000000000000ce3d 0xcce esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x16b8 (size before relaxing) + .debug_str 0x000000000000db0b 0x189 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0xb60 (size before relaxing) + .debug_str 0x000000000000dc94 0x1b0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0xc0f (size before relaxing) + .debug_str 0x000000000000de44 0x8cb esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xdb3 (size before relaxing) + .debug_str 0x000000000000e70f 0x1239 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2546 (size before relaxing) + .debug_str 0x000000000000f948 0x39e esp-idf/freertos/libfreertos.a(port.c.obj) + 0x1570 (size before relaxing) + .debug_str 0x000000000000fce6 0x6d esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0xd4 (size before relaxing) + .debug_str 0x000000000000fd53 0xa6 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x24c (size before relaxing) + .debug_str 0x000000000000fdf9 0xa7 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x328 (size before relaxing) + .debug_str 0x000000000000fea0 0x117 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x7f7 (size before relaxing) + .debug_str 0x000000000000ffb7 0x8f esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x2fa (size before relaxing) + .debug_str 0x0000000000010046 0x9b esp-idf/freertos/libfreertos.a(list.c.obj) + 0x342 (size before relaxing) + .debug_str 0x00000000000100e1 0x52 esp-idf/newlib/libnewlib.a(abort.c.obj) + 0x274 (size before relaxing) + .debug_str 0x0000000000010133 0xb8 esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x30d (size before relaxing) + .debug_str 0x00000000000101eb 0x1fb esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x781 (size before relaxing) + .debug_str 0x00000000000103e6 0x37e esp-idf/newlib/libnewlib.a(locks.c.obj) + 0xf4a (size before relaxing) + .debug_str 0x0000000000010764 0xda esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x369 (size before relaxing) + .debug_str 0x000000000001083e 0x7a esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x633 (size before relaxing) + .debug_str 0x00000000000108b8 0x23e esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x9ea (size before relaxing) + .debug_str 0x0000000000010af6 0x138 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x88e (size before relaxing) + .debug_str 0x0000000000010c2e 0x256 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x10b5 (size before relaxing) + .debug_str 0x0000000000010e84 0xdd esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0xee4 (size before relaxing) + .debug_str 0x0000000000010f61 0x963 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x12fb (size before relaxing) + .debug_str 0x00000000000118c4 0x48d esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x146f (size before relaxing) + .debug_str 0x0000000000011d51 0x66 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x3b6 (size before relaxing) + .debug_str 0x0000000000011db7 0xc3 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0x9a1 (size before relaxing) + .debug_str 0x0000000000011e7a 0x181 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x109f (size before relaxing) + .debug_str 0x0000000000011ffb 0x189 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0xa05 (size before relaxing) + .debug_str 0x0000000000012184 0x7fb esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1333 (size before relaxing) + .debug_str 0x000000000001297f 0x1ea esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x107b (size before relaxing) + .debug_str 0x0000000000012b69 0x70b esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1f49 (size before relaxing) + .debug_str 0x0000000000013274 0x482 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0xff0 (size before relaxing) + .debug_str 0x00000000000136f6 0x5c esp-idf/bt/libbt.a(hli_vectors.S.obj) + 0xc3 (size before relaxing) + .debug_str 0x0000000000013752 0x285 esp-idf/bt/libbt.a(hli_api.c.obj) + 0xcb6 (size before relaxing) + .debug_str 0x00000000000139d7 0x114 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + 0x2ef (size before relaxing) + .debug_str 0x0000000000013aeb 0x1d05 esp-idf/main/libmain.a(app_main.c.obj) + 0x2b73 (size before relaxing) + .debug_str 0x00000000000157f0 0x17af esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + 0x3329 (size before relaxing) + .debug_str 0x0000000000016f9f 0xf7 esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + 0x1796 (size before relaxing) + .debug_str 0x0000000000017096 0x235 esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + 0x12ad (size before relaxing) + .debug_str 0x00000000000172cb 0xd6d esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + 0x13e4 (size before relaxing) + .debug_str 0x0000000000018038 0x529 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + 0x1b71 (size before relaxing) + .debug_str 0x0000000000018561 0x3fd esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + 0xcf0 (size before relaxing) + .debug_str 0x000000000001895e 0x994 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + 0x1964 (size before relaxing) + .debug_str 0x00000000000192f2 0x8d9 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + 0x1832 (size before relaxing) + .debug_str 0x0000000000019bcb 0x482 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + 0x1119 (size before relaxing) + .debug_str 0x000000000001a04d 0x306 esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + 0xcf6 (size before relaxing) + .debug_str 0x000000000001a353 0x1c5 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + 0xcb6 (size before relaxing) + .debug_str 0x000000000001a518 0xac esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) + 0x37b (size before relaxing) + .debug_str 0x000000000001a5c4 0x79e esp-idf/protocomm/libprotocomm.a(security0.c.obj) + 0x1753 (size before relaxing) + .debug_str 0x000000000001ad62 0x9cb esp-idf/protocomm/libprotocomm.a(security1.c.obj) + 0x2229 (size before relaxing) + .debug_str 0x000000000001b72d 0x491 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + 0x1df7 (size before relaxing) + .debug_str 0x000000000001bbbe 0x28b esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + 0x78b (size before relaxing) + .debug_str 0x000000000001be49 0x150 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + 0x477 (size before relaxing) + .debug_str 0x000000000001bf99 0xf10 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + 0x1e63 (size before relaxing) + .debug_str 0x000000000001cea9 0x39a esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + 0xe20 (size before relaxing) + .debug_str 0x000000000001d243 0x1ce esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + 0x116c (size before relaxing) + .debug_str 0x000000000001d411 0x658 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + 0x1203 (size before relaxing) + .debug_str 0x000000000001da69 0x183 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + 0x1232 (size before relaxing) + .debug_str 0x000000000001dbec 0x1715 esp-idf/bt/libbt.a(bt.c.obj) + 0x2fee (size before relaxing) + .debug_str 0x000000000001f301 0xea esp-idf/bt/libbt.a(addr.c.obj) + 0x2c4 (size before relaxing) + .debug_str 0x000000000001f3eb 0x20d esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + 0xd4b (size before relaxing) + .debug_str 0x000000000001f5f8 0x29b esp-idf/bt/libbt.a(ble_store_util.c.obj) + 0x672 (size before relaxing) + .debug_str 0x000000000001f893 0x284 esp-idf/bt/libbt.a(ble_hs_id.c.obj) + 0xb6d (size before relaxing) + .debug_str 0x000000000001fb17 0x1120 esp-idf/bt/libbt.a(ble_hs.c.obj) + 0x24d1 (size before relaxing) + .debug_str 0x0000000000020c37 0xf6e esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + 0x20fc (size before relaxing) + .debug_str 0x0000000000021ba5 0x7e esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + 0xa9e (size before relaxing) + .debug_str 0x0000000000021c23 0x58b esp-idf/bt/libbt.a(ble_att.c.obj) + 0x15ec (size before relaxing) + .debug_str 0x00000000000221ae 0x1aa4 esp-idf/bt/libbt.a(ble_gattc.c.obj) + 0x3b43 (size before relaxing) + .debug_str 0x0000000000023c52 0x24d esp-idf/bt/libbt.a(ble_store.c.obj) + 0x9f3 (size before relaxing) + .debug_str 0x0000000000023e9f 0x6d esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) + 0xda4 (size before relaxing) + .debug_str 0x0000000000023f0c 0x496 esp-idf/bt/libbt.a(ble_att_clt.c.obj) + 0x14e1 (size before relaxing) + .debug_str 0x00000000000243a2 0x118 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + 0x4aa (size before relaxing) + .debug_str 0x00000000000244ba 0x5f9 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + 0x1324 (size before relaxing) + .debug_str 0x0000000000024ab3 0x8c esp-idf/bt/libbt.a(ble_hs_log.c.obj) + 0xa20 (size before relaxing) + .debug_str 0x0000000000024b3f 0x3f4 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + 0x6b8 (size before relaxing) + .debug_str 0x0000000000024f33 0x4c6 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + 0x22fd (size before relaxing) + .debug_str 0x00000000000253f9 0x149a esp-idf/bt/libbt.a(ble_gap.c.obj) + 0x3d41 (size before relaxing) + .debug_str 0x0000000000026893 0xc7 esp-idf/bt/libbt.a(ble_uuid.c.obj) + 0xb97 (size before relaxing) + .debug_str 0x000000000002695a 0x29d esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + 0x1211 (size before relaxing) + .debug_str 0x0000000000026bf7 0x28a esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + 0x1b26 (size before relaxing) + .debug_str 0x0000000000026e81 0x3d4 esp-idf/bt/libbt.a(ble_l2cap.c.obj) + 0x1ccf (size before relaxing) + .debug_str 0x0000000000027255 0xab esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + 0x130a (size before relaxing) + .debug_str 0x0000000000027300 0x908 esp-idf/bt/libbt.a(ble_gatts.c.obj) + 0x229b (size before relaxing) + .debug_str 0x0000000000027c08 0x290 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + 0xf3c (size before relaxing) + .debug_str 0x0000000000027e98 0x420 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + 0x1dd7 (size before relaxing) + .debug_str 0x00000000000282b8 0x21b esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + 0x801 (size before relaxing) + .debug_str 0x00000000000284d3 0x352 esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + 0x1e1e (size before relaxing) + .debug_str 0x0000000000028825 0x3d6 esp-idf/bt/libbt.a(ble_store_config.c.obj) + 0x11f7 (size before relaxing) + .debug_str 0x0000000000028bfb 0x1b9 esp-idf/bt/libbt.a(nimble_port.c.obj) + 0x1417 (size before relaxing) + .debug_str 0x0000000000028db4 0xbe esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + 0x988 (size before relaxing) + .debug_str 0x0000000000028e72 0xd8 esp-idf/bt/libbt.a(endian.c.obj) + 0x2eb (size before relaxing) + .debug_str 0x0000000000028f4a 0x1fb esp-idf/bt/libbt.a(os_mempool.c.obj) + 0x1267 (size before relaxing) + .debug_str 0x0000000000029145 0x128 esp-idf/bt/libbt.a(mem.c.obj) + 0x60d (size before relaxing) + .debug_str 0x000000000002926d 0x2c9 esp-idf/bt/libbt.a(os_mbuf.c.obj) + 0x1599 (size before relaxing) + .debug_str 0x0000000000029536 0x14d esp-idf/bt/libbt.a(os_msys_init.c.obj) + 0x4a7 (size before relaxing) + .debug_str 0x0000000000029683 0x72b esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + 0x1c4e (size before relaxing) + .debug_str 0x0000000000029dae 0x283 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + 0x14f1 (size before relaxing) + .debug_str 0x000000000002a031 0x8c esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + 0x2a6 (size before relaxing) + .debug_str 0x000000000002a0bd 0x152 esp-idf/bt/libbt.a(transport.c.obj) + 0xd8d (size before relaxing) + .debug_str 0x000000000002a20f 0x1ec esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + 0x21b6 (size before relaxing) + .debug_str 0x000000000002a3fb 0xb9d esp-idf/bt/libbt.a(ble_sm.c.obj) + 0x2d07 (size before relaxing) + .debug_str 0x000000000002af98 0xae esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + 0xb97 (size before relaxing) + .debug_str 0x000000000002b046 0xb2 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + 0x939 (size before relaxing) + .debug_str 0x000000000002b0f8 0x633 esp-idf/bt/libbt.a(ble_att_svr.c.obj) + 0x2821 (size before relaxing) + .debug_str 0x000000000002b72b 0xb1 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + 0xb02 (size before relaxing) + .debug_str 0x000000000002b7dc 0x105d esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + 0x1fe5 (size before relaxing) + .debug_str 0x000000000002c839 0x17a esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + 0x1fbc (size before relaxing) + .debug_str 0x000000000002c9b3 0xb3 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + 0xdc7 (size before relaxing) + .debug_str 0x000000000002ca66 0x78 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + 0xa98 (size before relaxing) + .debug_str 0x000000000002cade 0x24a esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + 0x17b1 (size before relaxing) + .debug_str 0x000000000002cd28 0xbf1 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + 0x15e9 (size before relaxing) + .debug_str 0x000000000002d919 0xb88 esp-idf/json/libjson.a(cJSON.c.obj) + 0xfef (size before relaxing) + .debug_str 0x000000000002e4a1 0x1ff esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + 0x54e (size before relaxing) + .debug_str 0x000000000002e6a0 0x635 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + 0xa40 (size before relaxing) + .debug_str 0x000000000002ecd5 0x52 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + 0xb9 (size before relaxing) + .debug_str 0x000000000002ed27 0x53 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + 0xd1 (size before relaxing) + .debug_str 0x000000000002ed7a 0xdc esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x380 (size before relaxing) + .debug_str 0x000000000002ee56 0x52 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0xb9 (size before relaxing) + .debug_str 0x000000000002eea8 0x48f esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0xe20 (size before relaxing) + .debug_str 0x000000000002f337 0x48b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x109e (size before relaxing) + .debug_str 0x000000000002f7c2 0x3a7 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + 0x22e3 (size before relaxing) + .debug_str 0x000000000002fb69 0xafa esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x1543 (size before relaxing) + .debug_str 0x0000000000030663 0x19a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0xdeb (size before relaxing) + .debug_str 0x00000000000307fd 0x1489 esp-idf/driver/libdriver.a(uart.c.obj) + 0x364b (size before relaxing) + .debug_str 0x0000000000031c86 0x86 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x22f (size before relaxing) + .debug_str 0x0000000000031d0c 0x1d4d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x2b82 (size before relaxing) + .debug_str 0x0000000000033a59 0x365 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x1386 (size before relaxing) + .debug_str 0x0000000000033dbe 0x88 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x165b (size before relaxing) + .debug_str 0x0000000000033e46 0x1de esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0xdf5 (size before relaxing) + .debug_str 0x0000000000034024 0x6bc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x1603 (size before relaxing) + .debug_str 0x00000000000346e0 0x5d esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + 0x348 (size before relaxing) + .debug_str 0x000000000003473d 0xa8 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + 0x2b6 (size before relaxing) + .debug_str 0x00000000000347e5 0x9e esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x2e6 (size before relaxing) + .debug_str 0x0000000000034883 0x38a esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x80b (size before relaxing) + .debug_str 0x0000000000034c0d 0x1bf esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0xaf8 (size before relaxing) + .debug_str 0x0000000000034dcc 0x171 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x587 (size before relaxing) + .debug_str 0x0000000000034f3d 0x758 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x2ec3 (size before relaxing) + .debug_str 0x0000000000035695 0x566 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x321c (size before relaxing) + .debug_str 0x0000000000035bfb 0x2fa esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xbdd (size before relaxing) + .debug_str 0x0000000000035ef5 0x7b esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x78a (size before relaxing) + .debug_str 0x0000000000035f70 0xde esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0x935 (size before relaxing) + .debug_str 0x000000000003604e 0x90d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x1ad2 (size before relaxing) + .debug_str 0x000000000003695b 0xf5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0xc84 (size before relaxing) + .debug_str 0x0000000000036a50 0x91 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x132a (size before relaxing) + .debug_str 0x0000000000036ae1 0x19a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0xcba (size before relaxing) + .debug_str 0x0000000000036c7b 0x112 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0xd61 (size before relaxing) + .debug_str 0x0000000000036d8d 0x39b esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x293b (size before relaxing) + .debug_str 0x0000000000037128 0xc2 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x2e8 (size before relaxing) + .debug_str 0x00000000000371ea 0x17b esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0xb11 (size before relaxing) + .debug_str 0x0000000000037365 0x154 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0xd32 (size before relaxing) + .debug_str 0x00000000000374b9 0x492 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x1252 (size before relaxing) + .debug_str 0x000000000003794b 0x86 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x2bd9 (size before relaxing) + .debug_str 0x00000000000379d1 0x6a esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0xd1 (size before relaxing) + .debug_str 0x0000000000037a3b 0xac esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x293 (size before relaxing) + .debug_str 0x0000000000037ae7 0x2b8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x62d (size before relaxing) + .debug_str 0x0000000000037d9f 0xb5 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0xa4b (size before relaxing) + .debug_str 0x0000000000037e54 0x439 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x13ca (size before relaxing) + .debug_str 0x000000000003828d 0x12c esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x260c (size before relaxing) + .debug_str 0x00000000000383b9 0x365 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x20be (size before relaxing) + .debug_str 0x000000000003871e 0x185 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x440 (size before relaxing) + .debug_str 0x00000000000388a3 0x51 esp-idf/soc/libsoc.a(interrupts.c.obj) + 0x84e (size before relaxing) + .debug_str 0x00000000000388f4 0x54 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + 0x8d8 (size before relaxing) + .debug_str 0x0000000000038948 0x89 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x250 (size before relaxing) + .debug_str 0x00000000000389d1 0xdd esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x2b5 (size before relaxing) + .debug_str 0x0000000000038aae 0x81 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + 0x311 (size before relaxing) + .debug_str 0x0000000000038b2f 0x1d7 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x6e5 (size before relaxing) + .debug_str 0x0000000000038d06 0x86 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + 0x268 (size before relaxing) + .debug_str 0x0000000000038d8c 0x1ac esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + 0xfc4 (size before relaxing) + .debug_str 0x0000000000038f38 0x112 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x62b (size before relaxing) + .debug_str 0x000000000003904a 0x2be esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x8d4 (size before relaxing) + .debug_str 0x0000000000039308 0x2ca esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0xb54 (size before relaxing) + .debug_str 0x00000000000395d2 0xa7 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x4a1 (size before relaxing) + .debug_str 0x0000000000039679 0x247 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0xbd2 (size before relaxing) + .debug_str 0x00000000000398c0 0x55c esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x169c (size before relaxing) + .debug_str 0x0000000000039e1c 0x7956 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x96b8 (size before relaxing) + .debug_str 0x0000000000041772 0x2a33 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8637 (size before relaxing) + .debug_str 0x00000000000441a5 0x4c5 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x706c (size before relaxing) + .debug_str 0x000000000004466a 0x317 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x1005 (size before relaxing) + .debug_str 0x0000000000044981 0x1646 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x8570 (size before relaxing) + .debug_str 0x0000000000045fc7 0x645 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x2908 (size before relaxing) + .debug_str 0x000000000004660c 0x6d1 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x39d1 (size before relaxing) + .debug_str 0x0000000000046cdd 0x550 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x57da (size before relaxing) + .debug_str 0x000000000004722d 0x12a esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + 0xd26 (size before relaxing) + .debug_str 0x0000000000047357 0x56 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x1ab9 (size before relaxing) + .debug_str 0x00000000000473ad 0x497 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0xbfb (size before relaxing) + .debug_str 0x0000000000047844 0x15e esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0xb64 (size before relaxing) + .debug_str 0x00000000000479a2 0x2694 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x37a8 (size before relaxing) + .debug_str 0x000000000004a036 0x12c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0xd79 (size before relaxing) + .debug_str 0x000000000004a162 0xaf esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0x2f4 (size before relaxing) + .debug_str 0x000000000004a211 0x69 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + 0x2a0 (size before relaxing) + .debug_str 0x000000000004a27a 0x55b esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1836 (size before relaxing) + .debug_str 0x000000000004a7d5 0x5f esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + 0x24a (size before relaxing) + .debug_str 0x000000000004a834 0x5f esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + 0x280 (size before relaxing) + .debug_str 0x000000000004a893 0x61 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 0x27d (size before relaxing) + .debug_str 0x000000000004a8f4 0xa4 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x311 (size before relaxing) + .debug_str 0x000000000004a998 0x143 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x3c6 (size before relaxing) + .debug_str 0x000000000004aadb 0x225 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x565 (size before relaxing) + .debug_str 0x000000000004ad00 0xf9 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x383 (size before relaxing) + .debug_str 0x000000000004adf9 0xcf esp-idf/esp_coex/libesp_coex.a(coexist.c.obj) + 0x307 (size before relaxing) + .debug_str 0x000000000004aec8 0x2cf esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x1b29 (size before relaxing) + .debug_str 0x000000000004b197 0x5b3 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x195c (size before relaxing) + .debug_str 0x000000000004b74a 0x111 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0xcb1 (size before relaxing) + .debug_str 0x000000000004b85b 0x5b3 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x2174 (size before relaxing) + .debug_str 0x000000000004be0e 0x56b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xd2d (size before relaxing) + .debug_str 0x000000000004c379 0x43c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x88f (size before relaxing) + .debug_str 0x000000000004c7b5 0x5e8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x1736 (size before relaxing) + .debug_str 0x000000000004cd9d 0x7f4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a32 (size before relaxing) + .debug_str 0x000000000004d591 0x383 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x853 (size before relaxing) + .debug_str 0x000000000004d914 0x287 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x1274 (size before relaxing) + .debug_str 0x000000000004db9b 0x2ac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0xab3 (size before relaxing) + .debug_str 0x000000000004de47 0x45a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0xa14 (size before relaxing) + .debug_str 0x000000000004e2a1 0x835 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1373 (size before relaxing) + .debug_str 0x000000000004ead6 0x2900 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x2e43 (size before relaxing) + .debug_str 0x00000000000513d6 0x217 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0xaa4 (size before relaxing) + .debug_str 0x00000000000515ed 0x3e6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0xd7e (size before relaxing) + .debug_str 0x00000000000519d3 0x9f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x338 (size before relaxing) + .debug_str 0x0000000000051a72 0x205 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x134f (size before relaxing) + .debug_str 0x0000000000051c77 0x11a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0x2f9 (size before relaxing) + .debug_str 0x0000000000051d91 0xd6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x338 (size before relaxing) + .debug_str 0x0000000000051e67 0xa5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x3c5 (size before relaxing) + .debug_str 0x0000000000051f0c 0x110 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x468 (size before relaxing) + .debug_str 0x000000000005201c 0xd7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x468 (size before relaxing) + .debug_str 0x00000000000520f3 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x229 (size before relaxing) + .debug_str 0x0000000000052149 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x252 (size before relaxing) + .debug_str 0x000000000005219a 0xdb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x3ca (size before relaxing) + .debug_str 0x0000000000052275 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x2b6 (size before relaxing) + .debug_str 0x00000000000522ec 0x14d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0xec4 (size before relaxing) + .debug_str 0x0000000000052439 0x265 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x606 (size before relaxing) + .debug_str 0x000000000005269e 0x24b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x886 (size before relaxing) + .debug_str 0x00000000000528e9 0x188 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x4bd (size before relaxing) + .debug_str 0x0000000000052a71 0xef esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x4ea (size before relaxing) + .debug_str 0x0000000000052b60 0xe3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x4f3 (size before relaxing) + .debug_str 0x0000000000052c43 0xf7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0xd12 (size before relaxing) + .debug_str 0x0000000000052d3a 0xa7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x32a (size before relaxing) + .debug_str 0x0000000000052de1 0x15f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x510 (size before relaxing) + .debug_str 0x0000000000052f40 0x294 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x558 (size before relaxing) + .debug_str 0x00000000000531d4 0x20b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x135b (size before relaxing) + .debug_str 0x00000000000533df 0x524 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x1375 (size before relaxing) + .debug_str 0x0000000000053903 0x18b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0xee5 (size before relaxing) + .debug_str 0x0000000000053a8e 0x70b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0xe83 (size before relaxing) + .debug_str 0x0000000000054199 0x470 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + 0x11ca (size before relaxing) + .debug_str 0x0000000000054609 0x2c9 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x1690 (size before relaxing) + .debug_str 0x00000000000548d2 0x1a1 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0xe3a (size before relaxing) + .debug_str 0x0000000000054a73 0x758 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x1e3f (size before relaxing) + .debug_str 0x00000000000551cb 0xb3 esp-idf/hal/libhal.a(mpu_hal.c.obj) + 0x2cc (size before relaxing) + .debug_str 0x000000000005527e 0xda esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x1136 (size before relaxing) + .debug_str 0x0000000000055358 0x20d esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x5d9 (size before relaxing) + .debug_str 0x0000000000055565 0x141 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x41a (size before relaxing) + .debug_str 0x00000000000556a6 0x162 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x3be (size before relaxing) + .debug_str 0x0000000000055808 0x5d esp-idf/soc/libsoc.a(dport_access_common.c.obj) + 0x254 (size before relaxing) + .debug_str 0x0000000000055865 0x51 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + 0x885 (size before relaxing) + .debug_str 0x00000000000558b6 0x10c7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x4550 (size before relaxing) + .debug_str 0x000000000005697d 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x1f9 (size before relaxing) + .debug_str 0x00000000000569f5 0xf7 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x376 (size before relaxing) + .debug_str 0x0000000000056aec 0x1431 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x2597 (size before relaxing) + .debug_str 0x0000000000057f1d 0x305 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x129c (size before relaxing) + .debug_str 0x0000000000058222 0xb9 esp-idf/lwip/liblwip.a(def.c.obj) + 0x2d0 (size before relaxing) + .debug_str 0x00000000000582db 0x4c8 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x129f (size before relaxing) + .debug_str 0x00000000000587a3 0x8c esp-idf/lwip/liblwip.a(init.c.obj) + 0x264 (size before relaxing) + .debug_str 0x000000000005882f 0x17c esp-idf/lwip/liblwip.a(ip.c.obj) + 0xf87 (size before relaxing) + .debug_str 0x00000000000589ab 0x76 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x2be (size before relaxing) + .debug_str 0x0000000000058a21 0x1ae esp-idf/lwip/liblwip.a(memp.c.obj) + 0xc87 (size before relaxing) + .debug_str 0x0000000000058bcf 0x3bd esp-idf/lwip/liblwip.a(netif.c.obj) + 0x15f9 (size before relaxing) + .debug_str 0x0000000000058f8c 0x3e7 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x150c (size before relaxing) + .debug_str 0x0000000000059373 0x1f9 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x12fb (size before relaxing) + .debug_str 0x000000000005956c 0x63d esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1928 (size before relaxing) + .debug_str 0x0000000000059ba9 0x26b esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x1714 (size before relaxing) + .debug_str 0x0000000000059e14 0x224 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xf21 (size before relaxing) + .debug_str 0x000000000005a038 0x1a6 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x10aa (size before relaxing) + .debug_str 0x000000000005a1de 0x275 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x1494 (size before relaxing) + .debug_str 0x000000000005a453 0x7fb esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x1b08 (size before relaxing) + .debug_str 0x000000000005ac4e 0x46c esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x1383 (size before relaxing) + .debug_str 0x000000000005b0ba 0xe3 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x8c4 (size before relaxing) + .debug_str 0x000000000005b19d 0x1e5 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x10df (size before relaxing) + .debug_str 0x000000000005b382 0x14c esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x1420 (size before relaxing) + .debug_str 0x000000000005b4ce 0x81 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0xdf0 (size before relaxing) + .debug_str 0x000000000005b54f 0x88 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + 0x6e0 (size before relaxing) + .debug_str 0x000000000005b5d7 0x342 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0xb49 (size before relaxing) + .debug_str 0x000000000005b919 0x1e2 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0xb62 (size before relaxing) + .debug_str 0x000000000005bafb 0xfc esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + 0xa6c (size before relaxing) + .debug_str 0x000000000005bbf7 0x6d esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x734 (size before relaxing) + .debug_str 0x000000000005bc64 0x118 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x1372 (size before relaxing) + .debug_str 0x000000000005bd7c 0x65a esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1a50 (size before relaxing) + .debug_str 0x000000000005c3d6 0xa0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0xf8c (size before relaxing) + .debug_str 0x000000000005c476 0xa0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + 0xc2f (size before relaxing) + .debug_str 0x000000000005c516 0x6f esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x8b9 (size before relaxing) + .debug_str 0x000000000005c585 0x1b9 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x10a9 (size before relaxing) + .debug_str 0x000000000005c73e 0xe1 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x95b (size before relaxing) + .debug_str 0x000000000005c81f 0x407 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x1c68 (size before relaxing) + .debug_str 0x000000000005cc26 0x3d3 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x129d (size before relaxing) + .debug_str 0x000000000005cff9 0x26d esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1f0a (size before relaxing) + .debug_str 0x000000000005d266 0x65 esp-idf/lwip/liblwip.a(err.c.obj) + 0x888 (size before relaxing) + .debug_str 0x000000000005d2cb 0x9d esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x607 (size before relaxing) + .debug_str 0x000000000005d368 0x135 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x46f (size before relaxing) + .debug_str 0x000000000005d49d 0x100 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0xed9 (size before relaxing) + .debug_str 0x000000000005d59d 0x92 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + 0x548 (size before relaxing) + .debug_str 0x000000000005d62f 0x163 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + 0xf4c (size before relaxing) + .debug_str 0x000000000005d792 0xac esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x715 (size before relaxing) + .debug_str 0x000000000005d83e 0x9e esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x3dc (size before relaxing) + .debug_str 0x000000000005d8dc 0x1d65 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x3a19 (size before relaxing) + .debug_str 0x000000000005f641 0x4ee esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x187b (size before relaxing) + .debug_str 0x000000000005fb2f 0x880 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x2b56 (size before relaxing) + .debug_str 0x00000000000603af 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0xac8 (size before relaxing) + .debug_str 0x0000000000060447 0x37c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x2bad (size before relaxing) + .debug_str 0x00000000000607c3 0x96d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x18a5 (size before relaxing) + .debug_str 0x0000000000061130 0x26c esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x15b3 (size before relaxing) + .debug_str 0x000000000006139c 0x192 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0xc5e (size before relaxing) + .debug_str 0x000000000006152e 0xd1e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x312d (size before relaxing) + .debug_str 0x000000000006224c 0x15d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0xe9a (size before relaxing) + .debug_str 0x00000000000623a9 0x1dc esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x639 (size before relaxing) + .debug_str 0x0000000000062585 0x161 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x1a79 (size before relaxing) + .debug_str 0x00000000000626e6 0x1e5 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x14e0 (size before relaxing) + .debug_str 0x00000000000628cb 0xb0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x43c (size before relaxing) + .debug_str 0x000000000006297b 0x839 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x11d4 (size before relaxing) + .debug_str 0x00000000000631b4 0x11b esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x582 (size before relaxing) + .debug_str 0x00000000000632cf 0x1b4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x830 (size before relaxing) + .debug_str 0x0000000000063483 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + 0x2ba (size before relaxing) + .debug_str 0x00000000000634ed 0xd9 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + 0xa39 (size before relaxing) + .debug_str 0x00000000000635c6 0xa16 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x2b8c (size before relaxing) + .debug_str 0x0000000000063fdc 0x85 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0xae1 (size before relaxing) + .debug_str 0x0000000000064061 0xc9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x3d6 (size before relaxing) + .debug_str 0x000000000006412a 0x1ec esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x120f (size before relaxing) + .debug_str 0x0000000000064316 0x22d esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 0x7fd (size before relaxing) + .debug_str 0x0000000000064543 0xed esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + 0x5ea (size before relaxing) + .debug_str 0x0000000000064630 0x1d7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + 0xdee (size before relaxing) + .debug_str 0x0000000000064807 0x104 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0xaf2 (size before relaxing) + .debug_str 0x000000000006490b 0xca esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x6d0 (size before relaxing) + .debug_str 0x00000000000649d5 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + 0x9e1 (size before relaxing) + .debug_str 0x0000000000064a7d 0x185 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + 0x6c3 (size before relaxing) + .debug_str 0x0000000000064c02 0xe9 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0xbc5 (size before relaxing) + .debug_str 0x0000000000064ceb 0x240 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x594 (size before relaxing) + .debug_str 0x0000000000064f2b 0x449 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xe66 (size before relaxing) + .debug_str 0x0000000000065374 0x204 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0xb1d (size before relaxing) + .debug_str 0x0000000000065578 0x539 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0xa81 (size before relaxing) + .debug_str 0x0000000000065ab1 0x4f2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x1195 (size before relaxing) + .debug_str 0x0000000000065fa3 0x2b7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x1a5e (size before relaxing) + .debug_str 0x000000000006625a 0x4ee esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xe67 (size before relaxing) + .debug_str 0x0000000000066748 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x48b (size before relaxing) + .debug_str 0x00000000000667bf 0xbb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + 0x36f (size before relaxing) + .debug_str 0x000000000006687a 0xfb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0xfca (size before relaxing) + .debug_str 0x0000000000066975 0xbd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x328 (size before relaxing) + .debug_str 0x0000000000066a32 0x5b esp-idf/lwip/liblwip.a(ethip6.c.obj) + 0x6aa (size before relaxing) + .debug_str 0x0000000000066a8d 0x58 /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + 0x82 (size before relaxing) + .debug_str 0x0000000000066ae5 0x91 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + 0xc8 (size before relaxing) + .debug_str 0x0000000000066b76 0x8b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opvs.o) + 0xc1 (size before relaxing) + .debug_str 0x0000000000066c01 0xfb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + 0x14f (size before relaxing) + .debug_str 0x0000000000066cfc 0xb4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + 0x10a (size before relaxing) + .debug_str 0x0000000000066db0 0x89 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + 0x271 (size before relaxing) + .debug_str 0x0000000000066e39 0x418 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + 0xaa4 (size before relaxing) + .debug_str 0x0000000000067251 0x29e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0xc7c (size before relaxing) + .debug_str 0x00000000000674ef 0x20f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x8a9 (size before relaxing) + .debug_str 0x00000000000676fe 0x92 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + 0x608 (size before relaxing) + .debug_str 0x0000000000067790 0x90 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opv.o) + 0xc7 (size before relaxing) + .debug_str 0x0000000000067820 0x92 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + 0x70f (size before relaxing) + .debug_str 0x00000000000678b2 0x1bc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + 0x3fb (size before relaxing) + .debug_str 0x0000000000067a6e 0x77c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x964 (size before relaxing) + .debug_str 0x00000000000681ea 0x1f3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + 0x4a0 (size before relaxing) + .debug_str 0x00000000000683dd 0xe2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + 0x1c3 (size before relaxing) + .debug_str 0x00000000000684bf 0x293 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x8df (size before relaxing) + .debug_str 0x0000000000068752 0x8a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + 0xbd (size before relaxing) + .debug_str 0x00000000000687dc 0x8c8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x19be (size before relaxing) + .debug_str 0x00000000000690a4 0x3b1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + 0x923 (size before relaxing) + .debug_str 0x0000000000069455 0x1ac /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + 0xa72 (size before relaxing) + .debug_str 0x0000000000069601 0xc5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divsf3.o) + 0xd3 (size before relaxing) + .debug_str 0x00000000000696c6 0xfb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdi3.o) + 0x1b9 (size before relaxing) + .debug_str 0x00000000000697c1 0x1b9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_str 0x00000000000697c1 0x1ba /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_str 0x00000000000697c1 0x1ba /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_str 0x00000000000697c1 0x3ae esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0xfae (size before relaxing) + .debug_str 0x0000000000069b6f 0x15e /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + 0x24f (size before relaxing) + .debug_str 0x0000000000069ccd 0x14ca /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x191f (size before relaxing) + .debug_str 0x000000000006b197 0x1227 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x261d (size before relaxing) + .debug_str 0x000000000006c3be 0x920 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x1b2a (size before relaxing) + .debug_str 0x000000000006ccde 0x21f /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + 0xabe (size before relaxing) + .debug_str 0x000000000006cefd 0x252 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + 0xb67 (size before relaxing) + .debug_str 0x000000000006d14f 0x63 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_ceil.o) + 0x13c (size before relaxing) + .debug_str 0x000000000006d1b2 0x13d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_floor.o) + .debug_str 0x000000000006d1b2 0x49a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .debug_str 0x000000000006d1b2 0x8d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + 0x5bd (size before relaxing) + .debug_str 0x000000000006d23f 0x11 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + 0x4be (size before relaxing) + .debug_str 0x000000000006d250 0x9c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + 0x727 (size before relaxing) + .debug_str 0x000000000006d2ec 0x4e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + 0x543 (size before relaxing) + .debug_str 0x000000000006d33a 0x27 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + 0x63d (size before relaxing) + .debug_str 0x000000000006d361 0x16 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + 0x4fc (size before relaxing) + .debug_str 0x000000000006d377 0x1c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + 0x584 (size before relaxing) + .debug_str 0x000000000006d393 0xb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + 0x4c0 (size before relaxing) + .debug_str 0x000000000006d39e 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + 0x5c2 (size before relaxing) + .debug_str 0x000000000006d3a6 0x1d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + 0x4cb (size before relaxing) + .debug_str 0x000000000006d3c3 0x24 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + 0x54c (size before relaxing) + .debug_str 0x000000000006d3e7 0x19 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + 0x505 (size before relaxing) + .debug_str 0x000000000006d400 0xb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + 0x4f7 (size before relaxing) + .debug_str 0x000000000006d40b 0x23 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + 0x50f (size before relaxing) + .debug_str 0x000000000006d42e 0x305 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + 0xa3a (size before relaxing) + .debug_str 0x000000000006d733 0x373 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + 0xc3d (size before relaxing) + .debug_str 0x000000000006daa6 0x18e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + 0x99d (size before relaxing) + .debug_str 0x000000000006dc34 0x13 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + 0x50a (size before relaxing) + .debug_str 0x000000000006dc47 0x1f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + 0xd80 (size before relaxing) + .debug_str 0x000000000006dc66 0xb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + 0x504 (size before relaxing) + .debug_str 0x000000000006dc71 0xd /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + 0x507 (size before relaxing) + .debug_str 0x000000000006dc7e 0x50f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .debug_str 0x000000000006dc7e 0x9f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + 0x85a (size before relaxing) + .debug_str 0x000000000006dd1d 0x5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + 0x49a (size before relaxing) + .debug_str 0x000000000006dd22 0x8b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + 0x8c9 (size before relaxing) + .debug_str 0x000000000006ddad 0x8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + 0x209 (size before relaxing) + .debug_str 0x000000000006ddb5 0xb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + 0xf0 (size before relaxing) + .debug_str 0x000000000006ddc0 0x67f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace_l.o) + .debug_str 0x000000000006ddc0 0x35 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lnumeric.o) + 0x6c5 (size before relaxing) + .debug_str 0x000000000006ddf5 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + 0x739 (size before relaxing) + .debug_str 0x000000000006de4d 0x1e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + 0x6e5 (size before relaxing) + .debug_str 0x000000000006de6b 0x6c7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_str 0x000000000006de6b 0xa /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + 0x6c7 (size before relaxing) + .debug_str 0x000000000006de75 0x39 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + 0x7b5 (size before relaxing) + .debug_str 0x000000000006deae 0x15 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + 0x140 (size before relaxing) + .debug_str 0x000000000006dec3 0x4a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_nan.o) + 0xf3 (size before relaxing) + .debug_str 0x000000000006df0d 0xf8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .debug_str 0x000000000006df0d 0x33 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + 0x733 (size before relaxing) + .debug_str 0x000000000006df40 0xc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + 0x737 (size before relaxing) + .debug_str 0x000000000006df4c 0xe /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + 0xb59 (size before relaxing) + .debug_str 0x000000000006df5a 0x19 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + 0x938 (size before relaxing) + .debug_str 0x000000000006df73 0x17 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + 0xc77 (size before relaxing) + +.debug_rnglists + 0x0000000000000000 0xb47 + .debug_rnglists + 0x0000000000000000 0x13 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .debug_rnglists + 0x0000000000000013 0x13 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opvs.o) + .debug_rnglists + 0x0000000000000026 0x19 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .debug_rnglists + 0x000000000000003f 0x13 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .debug_rnglists + 0x0000000000000052 0x13 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .debug_rnglists + 0x0000000000000065 0x46 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + .debug_rnglists + 0x00000000000000ab 0x4f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .debug_rnglists + 0x00000000000000fa 0x3d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .debug_rnglists + 0x0000000000000137 0x13 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opv.o) + .debug_rnglists + 0x000000000000014a 0x1f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + .debug_rnglists + 0x0000000000000169 0x3d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_rnglists + 0x00000000000001a6 0x2b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .debug_rnglists + 0x00000000000001d1 0x1f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + .debug_rnglists + 0x00000000000001f0 0x4c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .debug_rnglists + 0x000000000000023c 0x13 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .debug_rnglists + 0x000000000000024f 0xe8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .debug_rnglists + 0x0000000000000337 0x55 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .debug_rnglists + 0x000000000000038c 0x25 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + .debug_rnglists + 0x00000000000003b1 0x4c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_rnglists + 0x00000000000003fd 0x32 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_rnglists + 0x000000000000042f 0x4c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_rnglists + 0x000000000000047b 0x47 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_rnglists + 0x00000000000004c2 0x19 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_ceil.o) + .debug_rnglists + 0x00000000000004db 0x16 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_floor.o) + .debug_rnglists + 0x00000000000004f1 0x13 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_rnglists + 0x0000000000000504 0x21 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_rnglists + 0x0000000000000525 0x1c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .debug_rnglists + 0x0000000000000541 0x16 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_rnglists + 0x0000000000000557 0x32 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .debug_rnglists + 0x0000000000000589 0xa4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_rnglists + 0x000000000000062d 0x186 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .debug_rnglists + 0x00000000000007b3 0xd3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_rnglists + 0x0000000000000886 0x2c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_rnglists + 0x00000000000008b2 0x17 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .debug_rnglists + 0x00000000000008c9 0x1a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_rnglists + 0x00000000000008e3 0x32 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_rnglists + 0x0000000000000915 0x1a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_rnglists + 0x000000000000092f 0x51 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .debug_rnglists + 0x0000000000000980 0x16b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .debug_rnglists + 0x0000000000000aeb 0x5c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + +.debug_line_str + 0x0000000000000000 0x2689 + .debug_line_str + 0x0000000000000000 0x1c3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + 0x253 (size before relaxing) + .debug_line_str + 0x00000000000001c3 0x5c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opvs.o) + 0x256 (size before relaxing) + .debug_line_str + 0x000000000000021f 0x5f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + 0x25f (size before relaxing) + .debug_line_str + 0x000000000000027e 0x5d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + 0x259 (size before relaxing) + .debug_line_str + 0x00000000000002db 0x18c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + 0x37e (size before relaxing) + .debug_line_str + 0x0000000000000467 0x12f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + 0x457 (size before relaxing) + .debug_line_str + 0x0000000000000596 0x150 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x546 (size before relaxing) + .debug_line_str + 0x00000000000006e6 0x60 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x463 (size before relaxing) + .debug_line_str + 0x0000000000000746 0x63 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + 0x411 (size before relaxing) + .debug_line_str + 0x00000000000007a9 0x5b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opv.o) + 0x253 (size before relaxing) + .debug_line_str + 0x0000000000000804 0x63 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + 0x46c (size before relaxing) + .debug_line_str + 0x0000000000000867 0x5a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + 0x40b (size before relaxing) + .debug_line_str + 0x00000000000008c1 0x6e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x369 (size before relaxing) + .debug_line_str + 0x000000000000092f 0x59 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + 0x342 (size before relaxing) + .debug_line_str + 0x0000000000000988 0x5d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + 0x2e2 (size before relaxing) + .debug_line_str + 0x00000000000009e5 0x63 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x360 (size before relaxing) + .debug_line_str + 0x0000000000000a48 0x5b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + 0x253 (size before relaxing) + .debug_line_str + 0x0000000000000aa3 0xf7 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + 0x5f4 (size before relaxing) + .debug_line_str + 0x0000000000000b9a 0x70 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + 0x3ab (size before relaxing) + .debug_line_str + 0x0000000000000c0a 0x77 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + 0x417 (size before relaxing) + .debug_line_str + 0x0000000000000c81 0xc5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divsf3.o) + .debug_line_str + 0x0000000000000d46 0x94 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdi3.o) + 0x17c (size before relaxing) + .debug_line_str + 0x0000000000000dda 0x17c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_line_str + 0x0000000000000dda 0x17c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_line_str + 0x0000000000000dda 0x17c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_line_str + 0x0000000000000dda 0x21e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_ceil.o) + 0x2ad (size before relaxing) + .debug_line_str + 0x0000000000000ff8 0x57 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_floor.o) + 0x2b0 (size before relaxing) + .debug_line_str + 0x000000000000104f 0x1e0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + 0x26f (size before relaxing) + .debug_line_str + 0x000000000000122f 0x121 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + 0x2d9 (size before relaxing) + .debug_line_str + 0x0000000000001350 0x56 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + 0x2bf (size before relaxing) + .debug_line_str + 0x00000000000013a6 0x75 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + 0x37d (size before relaxing) + .debug_line_str + 0x000000000000141b 0x62 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + 0x2e1 (size before relaxing) + .debug_line_str + 0x000000000000147d 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + 0x36d (size before relaxing) + .debug_line_str + 0x00000000000014d5 0x6b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + 0x2d6 (size before relaxing) + .debug_line_str + 0x0000000000001540 0x55 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + 0x2c6 (size before relaxing) + .debug_line_str + 0x0000000000001595 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + 0x2c5 (size before relaxing) + .debug_line_str + 0x00000000000015ed 0x55 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + 0x2d9 (size before relaxing) + .debug_line_str + 0x0000000000001642 0x111 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + 0x2c0 (size before relaxing) + .debug_line_str + 0x0000000000001753 0x57 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + 0x2d3 (size before relaxing) + .debug_line_str + 0x00000000000017aa 0x59 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + 0x2e4 (size before relaxing) + .debug_line_str + 0x0000000000001803 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + 0x2e1 (size before relaxing) + .debug_line_str + 0x000000000000185b 0x57 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + 0x2e7 (size before relaxing) + .debug_line_str + 0x00000000000018b2 0x19c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + 0x3d0 (size before relaxing) + .debug_line_str + 0x0000000000001a4e 0xd0 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + 0x40c (size before relaxing) + .debug_line_str + 0x0000000000001b1e 0x61 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + 0x405 (size before relaxing) + .debug_line_str + 0x0000000000001b7f 0x125 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + 0x352 (size before relaxing) + .debug_line_str + 0x0000000000001ca4 0x416 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_line_str + 0x0000000000001ca4 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + 0x2d9 (size before relaxing) + .debug_line_str + 0x0000000000001cfc 0x5a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + 0x2e7 (size before relaxing) + .debug_line_str + 0x0000000000001d56 0x57 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + 0x2d3 (size before relaxing) + .debug_line_str + 0x0000000000001dad 0x5f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + 0x3ba (size before relaxing) + .debug_line_str + 0x0000000000001e0c 0x56 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + 0x267 (size before relaxing) + .debug_line_str + 0x0000000000001e62 0x5e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + 0x3db (size before relaxing) + .debug_line_str + 0x0000000000001ec0 0x5e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + 0x213 (size before relaxing) + .debug_line_str + 0x0000000000001f1e 0x114 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + 0x2bb (size before relaxing) + .debug_line_str + 0x0000000000002032 0xb3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace_l.o) + 0x34c (size before relaxing) + .debug_line_str + 0x00000000000020e5 0x117 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lnumeric.o) + 0x2e1 (size before relaxing) + .debug_line_str + 0x00000000000021fc 0xb1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + 0x356 (size before relaxing) + .debug_line_str + 0x00000000000022ad 0x5c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + 0x2e7 (size before relaxing) + .debug_line_str + 0x0000000000002309 0x59 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + 0x337 (size before relaxing) + .debug_line_str + 0x0000000000002362 0x5a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + 0x343 (size before relaxing) + .debug_line_str + 0x00000000000023bc 0x57 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + 0x3bd (size before relaxing) + .debug_line_str + 0x0000000000002413 0x57 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + 0x2b0 (size before relaxing) + .debug_line_str + 0x000000000000246a 0x114 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_nan.o) + 0x1e9 (size before relaxing) + .debug_line_str + 0x000000000000257e 0x58 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + 0x1ec (size before relaxing) + .debug_line_str + 0x00000000000025d6 0x59 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + 0x352 (size before relaxing) + .debug_line_str + 0x000000000000262f 0x5a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + 0x355 (size before relaxing) + .debug_line_str + 0x0000000000002689 0x3fa /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .debug_line_str + 0x0000000000002689 0x3fe /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .debug_line_str + 0x0000000000002689 0x404 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + +.debug_loclists + 0x0000000000000000 0x13bc6 + .debug_loclists + 0x0000000000000000 0x39 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .debug_loclists + 0x0000000000000039 0x23 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .debug_loclists + 0x000000000000005c 0x1c9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + .debug_loclists + 0x0000000000000225 0x165 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .debug_loclists + 0x000000000000038a 0x60 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .debug_loclists + 0x00000000000003ea 0x23 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opv.o) + .debug_loclists + 0x000000000000040d 0x80 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + .debug_loclists + 0x000000000000048d 0x13a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_loclists + 0x00000000000005c7 0x7e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .debug_loclists + 0x0000000000000645 0x23 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + .debug_loclists + 0x0000000000000668 0xe4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .debug_loclists + 0x000000000000074c 0x3ce /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + .debug_loclists + 0x0000000000000b1a 0x7c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + .debug_loclists + 0x0000000000000b96 0x12a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + .debug_loclists + 0x0000000000000cc0 0x5e6 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_loclists + 0x00000000000012a6 0x500 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_loclists + 0x00000000000017a6 0x5f4 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_loclists + 0x0000000000001d9a 0x5f8 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_loclists + 0x0000000000002392 0x108 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_ceil.o) + .debug_loclists + 0x000000000000249a 0x138 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_floor.o) + .debug_loclists + 0x00000000000025d2 0x81 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_loclists + 0x0000000000002653 0x50 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .debug_loclists + 0x00000000000026a3 0x23e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_loclists + 0x00000000000028e1 0x376 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .debug_loclists + 0x0000000000002c57 0xcf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_loclists + 0x0000000000002d26 0x48 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_loclists + 0x0000000000002d6e 0xc9 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_loclists + 0x0000000000002e37 0x38 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_loclists + 0x0000000000002e6f 0xcd /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_loclists + 0x0000000000002f3c 0x2a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .debug_loclists + 0x0000000000002f66 0xf1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .debug_loclists + 0x0000000000003057 0xc1 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .debug_loclists + 0x0000000000003118 0x71 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .debug_loclists + 0x0000000000003189 0x5a /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .debug_loclists + 0x00000000000031e3 0xf35 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .debug_loclists + 0x0000000000004118 0x2e4e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_loclists + 0x0000000000006f66 0x1cbc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .debug_loclists + 0x0000000000008c22 0x1e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_loclists + 0x0000000000008c40 0x2eb2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_loclists + 0x000000000000baf2 0x38 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_loclists + 0x000000000000bb2a 0x6d /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .debug_loclists + 0x000000000000bb97 0x39 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .debug_loclists + 0x000000000000bbd0 0x11b5 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_loclists + 0x000000000000cd85 0x97 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_loclists + 0x000000000000ce1c 0x884 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .debug_loclists + 0x000000000000d6a0 0x34c /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .debug_loclists + 0x000000000000d9ec 0x1e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_loclists + 0x000000000000da0a 0x25 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace_l.o) + .debug_loclists + 0x000000000000da2f 0x1e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lnumeric.o) + .debug_loclists + 0x000000000000da4d 0x30 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .debug_loclists + 0x000000000000da7d 0x42 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_loclists + 0x000000000000dabf 0x52 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_loclists + 0x000000000000db11 0x7f /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .debug_loclists + 0x000000000000db90 0x1121 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_loclists + 0x000000000000ecb1 0xb2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_loclists + 0x000000000000ed63 0x1e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_nan.o) + .debug_loclists + 0x000000000000ed81 0x1e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .debug_loclists + 0x000000000000ed9f 0x274 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_loclists + 0x000000000000f013 0x257 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_loclists + 0x000000000000f26a 0x1885 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .debug_loclists + 0x0000000000010aef 0x196e /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .debug_loclists + 0x000000000001245d 0x1769 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + +Cross Reference Table + +Symbol File +API_btdm_get_version /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +API_vhci_host_check_send_available /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + esp-idf/bt/libbt.a(bt.c.obj) +API_vhci_host_register_callback /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + esp-idf/bt/libbt.a(bt.c.obj) +API_vhci_host_send_packet /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + esp-idf/bt/libbt.a(bt.c.obj) +APRecvBcnStartTick /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +AddBigHexModP256 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ecc_p256.o) +ApFreqCalTimer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +BAROFDMSched /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +BT_init_rx_filters /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +BT_tx_8m_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +BT_tx_if_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +BasicOFDMSched /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +BcnInterval /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +BcnSendTick /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +Cache_Flush_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/esp_mm/libesp_mm.a(cache_esp32.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) +Cache_Read_Disable_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.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_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/bootloader_support/libbootloader_support.a(bootloader_utility.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_system/libesp_system.a(cpu_start.c.obj) +CanDoFreqCal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +CurFreeSigIdx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +CurSigIdxToBeUse /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +DefFreqCalTimer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +DefFreqCalTimerCB /home/djordje/Data/Documents/Espressif/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) +FreqCalCntForScan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +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(gpio.c.obj) +GPIO_PIN_MUX_REG_OFFSET esp-idf/soc/libsoc.a(gpio_periph.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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +HighestFreqOffsetInOneChk /home/djordje/Data/Documents/Espressif/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/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +LLM_AA_CT1 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) +LLM_AA_CT2 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) +LM_Sniff /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sniff.o) +LowestFreqOffsetInOneChk /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +MESH_EVENT esp-idf/esp_wifi/libesp_wifi.a(mesh_event.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) +MultiplyBigHexModP256 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ecc_p256.o) +NAN_ACTION_OUI /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +NAN_NETWORK_ID /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +NAN_STANDARD_BSSID /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +NAN_STANDARD_OUI /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +NoiseTimerInterval /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +PROTOCOMM_SECURITY_SESSION_EVENT esp-idf/protocomm/libprotocomm.a(security2.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +PROTOCOMM_TRANSPORT_BLE_EVENT esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +RC_GetAckRate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) +RC_GetAckTime /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +RC_GetBlockAckTime /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +RC_GetCtsTime /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +RC_GetRtsRate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) +RC_SetBasicRate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +RFChannelSel /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +SCAN_CHANNEL_SELECT_CONFIG /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +SigSpaceFree /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +SigSpaceMalloc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +SubtractBigHexMod256 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ecc_p256.o) +TASK_DESC_LLD /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) +TIMERG0 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(highint_hdl.S.obj) +TRC_AMPDU_PER_DOWN_THRESHOLD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +TRC_AMPDU_PER_UP_THRESHOLD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +TRC_PER_IS_GOOD /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +TestStaFreqCalValInput /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +TmpSTAAPCloseAP /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +TxNodeNum /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +TxRxCxt /home/djordje/Data/Documents/Espressif/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) +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_CONNECTED_EVENT esp-idf/main/libmain.a(app_main.c.obj) +WIFI_EVENT esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +WIFI_MESH_EVENT /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +WIFI_PROV_EVENT esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +WIFI_PROV_MGR_PVT_EVENT esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +Xthal_intlevel /home/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) +_Balloc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +_Bfree /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +_C_numeric_locale /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lnumeric.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +_DebugExceptionVector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_DoubleExceptionVector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_ITM_deregisterTMCloneTable /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtbegin.o +_ITM_registerTMCloneTable /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) +_ZGTtNKSt13bad_exceptionD1Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) +_ZGTtNKSt9exception4whatEv /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) +_ZGTtNKSt9exceptionD1Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) +_ZN10__cxxabiv111__terminateEPFvvE /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) +_ZN10__cxxabiv112__unexpectedEPFvvE /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) +_ZN10__cxxabiv115__forced_unwindD0Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) +_ZN10__cxxabiv115__forced_unwindD1Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) +_ZN10__cxxabiv115__forced_unwindD2Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) +_ZN10__cxxabiv117__class_type_infoD0Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) +_ZN10__cxxabiv117__class_type_infoD1Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) +_ZN10__cxxabiv117__class_type_infoD2Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) +_ZN10__cxxabiv119__foreign_exceptionD0Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) +_ZN10__cxxabiv119__foreign_exceptionD1Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) +_ZN10__cxxabiv119__foreign_exceptionD2Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) +_ZN10__cxxabiv119__terminate_handlerE /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) +_ZN10__cxxabiv120__si_class_type_infoD0Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) +_ZN10__cxxabiv120__si_class_type_infoD1Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) +_ZN10__cxxabiv120__si_class_type_infoD2Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) +_ZN10__cxxabiv120__unexpected_handlerE /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) +_ZN14NVSHandleEntry17s_nvs_next_handleE esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN14NVSHandleEntryD1Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN14NVSHandleEntryD2Ev 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_listI14NVSHandleEntryE9push_backEPS0_ 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_listIN3nvs12NVSPartitionEE9push_backEPS1_ 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_listIN3nvs15NVSHandleSimpleEE9push_backEPS1_ esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZN14intrusive_listIN3nvs4PageEE10push_frontEPS1_ esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.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_listIN3nvs4PageEE6insertENS2_8iteratorEPS1_ 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_listIN3nvs7Storage12UsedPageNodeEE17clearAndFreeNodesEv esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE5eraseENS3_8iteratorE esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE9push_backEPS2_ esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE17clearAndFreeNodesEv esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE5eraseENS3_8iteratorE esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE9push_backEPS2_ 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_listIN3nvs7Storage14NamespaceEntryEE5eraseENS3_8iteratorE 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_listIN3nvs7StorageEE5eraseENS2_8iteratorE esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZN14intrusive_listIN3nvs7StorageEE9push_backEPS1_ esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZN14intrusive_listIN3nvs8HashList13HashListBlockEE5eraseENS3_8iteratorE esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +_ZN14intrusive_listIN3nvs8HashList13HashListBlockEE9push_backEPS2_ esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +_ZN17__eh_globals_init7_S_initE /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/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) +_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) +_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) +_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) +_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) +_ZN3nvs4Item6getKeyEPcj esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.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_api.cpp.obj) +_ZN3nvs4Lock4initEv esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs4LockC1Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs4LockC2Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs4LockD1Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs4LockD2Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_api.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) +_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) +_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) +_ZN3nvs7Storage4initEmm esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.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) +_ZN3nvs7StorageC1EPNS_9PartitionE esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZN3nvs7StorageC2EPNS_9PartitionE esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.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) +_ZN3nvs9NVSHandle8get_itemIaEEiPKcRT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8get_itemIhEEiPKcRT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8get_itemIlEEiPKcRT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8get_itemImEEiPKcRT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8get_itemIsEEiPKcRT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8get_itemItEEiPKcRT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8get_itemIxEEiPKcRT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8get_itemIyEEiPKcRT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8set_itemIaEEiPKcT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8set_itemIhEEiPKcT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8set_itemIlEEiPKcT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8set_itemImEEiPKcT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8set_itemIsEEiPKcT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8set_itemItEEiPKcT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8set_itemIxEEiPKcT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8set_itemIyEEiPKcT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN9__gnu_cxx24__concurrence_lock_errorD0Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) +_ZN9__gnu_cxx24__concurrence_lock_errorD1Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) +_ZN9__gnu_cxx24__concurrence_lock_errorD2Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) +_ZN9__gnu_cxx26__concurrence_unlock_errorD0Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) +_ZN9__gnu_cxx26__concurrence_unlock_errorD1Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) +_ZN9__gnu_cxx26__concurrence_unlock_errorD2Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) +_ZN9__gnu_cxx7__mutex4lockEv /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) +_ZN9__gnu_cxx7__mutex6unlockEv /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) +_ZN9__gnu_cxx9__freeresEv /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) +_ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) +_ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) +_ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) +_ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_ /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) +_ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) +_ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) +_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) +_ZNK9__gnu_cxx24__concurrence_lock_error4whatEv /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) +_ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) +_ZNKSt13bad_exception4whatEv /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) +_ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +_ZNKSt9bad_alloc4whatEv /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) +_ZNKSt9exception4whatEv /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) +_ZNKSt9type_info10__do_catchEPKS_PPvj /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) +_ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) +_ZNKSt9type_info14__is_pointer_pEv /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) +_ZNKSt9type_info15__is_function_pEv /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) +_ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED1Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED2Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZNSt13bad_exceptionD0Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) +_ZNSt13bad_exceptionD1Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) +_ZNSt13bad_exceptionD2Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) +_ZNSt9bad_allocD0Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) +_ZNSt9bad_allocD1Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) +_ZNSt9bad_allocD2Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) +_ZNSt9exceptionD0Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) +_ZNSt9exceptionD1Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) +_ZNSt9exceptionD2Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) +_ZNSt9type_infoD0Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) +_ZNSt9type_infoD1Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) +_ZNSt9type_infoD2Ev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) +_ZSt10unexpectedv /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) +_ZSt13get_terminatev /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) +_ZSt13set_terminatePFvvE /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) +_ZSt14get_unexpectedv /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) +_ZSt14set_unexpectedPFvvE /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) +_ZSt15get_new_handlerv /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) +_ZSt15set_new_handlerPFvvE /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) +_ZSt18uncaught_exceptionv /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) +_ZSt19uncaught_exceptionsv /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) +_ZSt7nothrow /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) +_ZTIN9__gnu_cxx24__concurrence_lock_errorE /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) +_ZTIN9__gnu_cxx26__concurrence_unlock_errorE /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) +_ZTISt9bad_alloc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) +_ZTISt9exception /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) +_ZTSN9__gnu_cxx24__concurrence_lock_errorE /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) +_ZTSN9__gnu_cxx26__concurrence_unlock_errorE /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) +_ZTSSt9bad_alloc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) +_ZTSSt9exception /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) +_ZTVN10__cxxabiv115__forced_unwindE /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) +_ZTVN10__cxxabiv117__class_type_infoE /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) +_ZTVN10__cxxabiv119__foreign_exceptionE /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) +_ZTVN10__cxxabiv120__si_class_type_infoE /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) +_ZTVN3nvs12NVSPartitionE esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_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) +_ZTVN3nvs9NVSHandleE esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZTVN3nvs9PartitionE esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +_ZTVN9__gnu_cxx24__concurrence_lock_errorE /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) +_ZTVN9__gnu_cxx26__concurrence_unlock_errorE /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) +_ZTVSt13bad_exception /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) +_ZTVSt9bad_alloc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) +_ZTVSt9exception /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) +_ZTVSt9type_info /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) +_ZdaPv /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opvs.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZdlPv /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) +_ZdlPvj /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(bad_alloc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) +_Znaj /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opv.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) +_ZnajRKSt9nothrow_t /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opv.o) +__DTOR_END__ /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtend.o + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtbegin.o +__TMC_END__ /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtend.o + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtbegin.o +__action_table /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +__adddf3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_addsubdf3.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_floor.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_ceil.o) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__any_on /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) +__ascii_mbtowc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) +__ascii_wctomb /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) +__assert esp-idf/newlib/libnewlib.a(assert.c.obj) +__assert_func esp-idf/newlib/libnewlib.a(assert.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_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_hw_support/libesp_hw_support.a(sleep_modes.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/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/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(esp_clk_tree_common.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(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(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/esp_mm/libesp_mm.a(esp_mmu_map.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(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.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/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(transport.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(os_msys_init.c.obj) + esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.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/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(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(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(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(uart_hal_iram.c.obj) + esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) +__chclass /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +__copybits /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__cxa_allocate_dependent_exception /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) +__cxa_allocate_exception /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) +__cxa_begin_catch /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) +__cxa_end_catch /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) +__cxa_free_dependent_exception /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) +__cxa_free_exception /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) +__cxa_get_exception_ptr /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) +__cxa_get_globals /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) +__cxa_get_globals_fast /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) +__cxa_guard_abort esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +__cxa_guard_acquire esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +__cxa_guard_dummy esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +__cxa_guard_release esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +__cxa_init_primary_exception /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) +__cxa_pure_virtual /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_exception.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +__cxa_rethrow /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) +__cxa_throw /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) +__cxx_eh_arena_size_get esp-idf/esp_system/libesp_system.a(startup.c.obj) +__d2b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__default_global_locale /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) +__divdf3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdf3.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__divdi3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divdi3.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +__divsf3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_divsf3.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__env_lock /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) +__env_lock_object esp-idf/newlib/libnewlib.a(locks.c.obj) +__env_unlock /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) +__eqdf2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_cmpdf2.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) +__errno /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + 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) +__esp_srp_srv_pubkey esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) +__extendsfdf2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__ffsdi2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_ffsdi2.o) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) +__fixdfdi /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfdi.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__fixdfsi /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixdfsi.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__fixunsdfsi /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__floatdidf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdidf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__floatdisf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdisf.o) +__floatsidf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatsidf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__floatundidf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdidf.o) +__floatundisf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatdisf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +__floatunsidf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_floatsidf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__fp_lock_all /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__fp_unlock_all /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__gedf2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_cmpdf2.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + esp-idf/json/libjson.a(cJSON.c.obj) +__gethex /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__getreent esp-idf/freertos/libfreertos.a(tasks.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rename.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-remove.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) +__global_locale_ptr /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__gtdf2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_cmpdf2.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_floor.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_ceil.o) + esp-idf/json/libjson.a(cJSON.c.obj) +__hexdig_fun /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) +__hexnan /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__hi0bits /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) +__hide_aliasing_typecast esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +__i2b /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__init_array_end esp-idf/esp_system/libesp_system.a(startup.c.obj) +__init_array_start esp-idf/esp_system/libesp_system.a(startup.c.obj) +__itoa /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-itoa.o) +__ledf2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_cmpdf2.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + esp-idf/json/libjson.a(cJSON.c.obj) +__lo0bits /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) +__locale_mb_cur_max /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) +__localeconv_l /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) +__lock___arc4random_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___at_quick_exit_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___atexit_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___dd_hash_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___env_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) +__lock___malloc_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___sfp_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__lock___sinit_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__lock___tz_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) +__lshift /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__ltdf2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_cmpdf2.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__match /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__mcmp /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__mdiff /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__moddi3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_moddi3.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + esp-idf/newlib/libnewlib.a(time.c.obj) +__month_lengths /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) +__mprec_bigtens /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__mprec_tens /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__mprec_tinytens /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) +__muldf3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_muldf3.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__multadd /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) +__multiply /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__nedf2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_cmpdf2.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +__numeric_load_locale /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lnumeric.o) +__popcountsi2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_popcountsi2.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.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) + esp-idf/bt/libbt.a(ble_hs_id.c.obj) +__pow5mult /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__ratio /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__retarget_lock_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) +__retarget_lock_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__retarget_lock_release esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) +__retarget_lock_release_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__sccl /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) +__sclose /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__seofread /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) +__sf_fake_stderr /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) +__sf_fake_stdin /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) +__sf_fake_stdout /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) +__sflags /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) +__sflush_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) +__sfmoreglue /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__sfp /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) +__sfp_lock esp-idf/newlib/libnewlib.a(locks.c.obj) +__sfp_lock_acquire /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) +__sfp_lock_release /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) +__sfvwrite_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) +__sinit /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) +__sinit_lock esp-idf/newlib/libnewlib.a(locks.c.obj) +__sinit_lock_acquire /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__sinit_lock_release /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__smakebuf_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) +__sprint_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) +__sread /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__srefill_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) +__sseek /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__ssprint_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +__ssrefill_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) +__ssvfiscanf_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) +__ssvfscanf_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) +__state_table /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +__strtok_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) +__subdf3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_addsubdf3.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + esp-idf/json/libjson.a(cJSON.c.obj) +__submore /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) +__swbuf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) +__swbuf_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) +__swhatbuf_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) +__swrite /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__swsetup_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +__truncdfsf2 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +__tz_lock /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) +__tz_lock_object esp-idf/newlib/libnewlib.a(locks.c.obj) +__tz_unlock /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) +__tzcalc_limits /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) +__ubsan_handle_add_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_builtin_unreachable esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_divrem_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_invalid_builtin esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_load_invalid_value esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_missing_return esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_mul_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_negate_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_nonnull_arg esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_nonnull_return esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_out_of_bounds esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_pointer_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_shift_out_of_bounds esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_sub_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_type_mismatch esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_type_mismatch_v1 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_vla_bound_not_positive esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_include esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__udivdi3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_udivdi3.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + /home/djordje/Data/Documents/Espressif/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(esp_clk_tree_common.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(bt.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(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +__ulp /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__umoddi3 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_umoddi3.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/libgcc.a(_cmpdf2.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + esp-idf/json/libjson.a(cJSON.c.obj) +__utoa /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-utoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-itoa.o) +__wpa_send_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +__wrap__Unwind_Backtrace esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_DeleteException esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_catch.o) +__wrap__Unwind_FindEnclosingFunction esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_Find_FDE esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_ForcedUnwind esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetCFA esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetDataRelBase esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetGR esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetIP esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetIPInfo esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetLanguageSpecificData esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetRegionStart esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetTextRelBase esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_RaiseException esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) +__wrap__Unwind_Resume esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) +__wrap__Unwind_Resume_or_Rethrow esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_throw.o) +__wrap__Unwind_SetEnableExceptionFdeSorting esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_SetGR esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_SetIP esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___cxa_call_unexpected esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___deregister_frame esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___deregister_frame_info esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtbegin.o +__wrap___deregister_frame_info_bases esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___gxx_personality_v0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) +__wrap___register_frame esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___register_frame_info esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crtbegin.o +__wrap___register_frame_info_bases esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___register_frame_info_table esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___register_frame_info_table_bases esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___register_frame_table esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +_atoi_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) +_bss_end esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_bss_start /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_bt_bss_end esp-idf/bt/libbt.a(bt.c.obj) +_bt_bss_start esp-idf/bt/libbt.a(bt.c.obj) +_bt_data_end esp-idf/bt/libbt.a(bt.c.obj) +_bt_data_start esp-idf/bt/libbt.a(bt.c.obj) +_btdm_bss_end esp-idf/bt/libbt.a(bt.c.obj) +_btdm_bss_start esp-idf/bt/libbt.a(bt.c.obj) +_btdm_data_end esp-idf/bt/libbt.a(bt.c.obj) +_btdm_data_start esp-idf/bt/libbt.a(bt.c.obj) +_calloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_cleanup /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +_cleanup_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) +_close_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_cnx_start_connect_without_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +_ctype_ /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace_l.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_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) + esp-idf/json/libjson.a(cJSON.c.obj) +_data_end_btdm esp-idf/bt/libbt.a(bt.c.obj) +_data_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_data_start_btdm esp-idf/bt/libbt.a(bt.c.obj) +_data_start_btdm_rom esp-idf/bt/libbt.a(bt.c.obj) +_daylight /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) +_do_wifi_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +_do_wifi_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +_dtoa_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +_esp_error_check_failed esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.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_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.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/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) + esp-idf/bt/libbt.a(hli_api.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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +_fcntl_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) +_fflush_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) +_fgets_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) +_findenv_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) +_fini /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/no-rtti/crti.o +_flash_rodata_align esp-idf/freertos/libfreertos.a(port.c.obj) +_flash_rodata_start esp-idf/freertos/libfreertos.a(port.c.obj) +_fopen_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) +_fprintf_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) +_fputc_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) +_fputs_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) +_fread_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) +_free_r esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_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_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/bt/libbt.a(hli_api.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) +_fseeko_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) +_fstat_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_ftell_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) +_ftello_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) +_fwalk /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +_fwalk_reent /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) +_fwrite_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) +_g_esp_netif_inherent_ap_config esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +_g_esp_netif_inherent_eth_config esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) +_g_esp_netif_inherent_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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) +_getpid_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_gettimeofday_r esp-idf/newlib/libnewlib.a(time.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_global_impure_ptr /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +_heap_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_init /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) +_kill_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_link_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_localeconv_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +_lock_acquire esp-idf/newlib/libnewlib.a(locks.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/esp_phy/libesp_phy.a(phy_init.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/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_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_malloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_mbrtowc_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) +_mbtowc_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) +_mesh_check_roots_gone /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_check_window_close_expire /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_check_window_open_expire /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_find_root_competitor /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +_mesh_remove_gone /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_reset_window_open_time /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_num_reach_max /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_process_announce /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_process_conflict_table /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_process_fixed /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_process_gone /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_process_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_process_yield /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_set_flag_roots_found /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_timer_process_announce /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_timer_process_conflict_root /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_timer_process_fixed /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_timer_process_gone /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_timer_process_yield /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mprec_log10 /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) +_nimble_bss_end esp-idf/bt/libbt.a(bt.c.obj) +_nimble_bss_start esp-idf/bt/libbt.a(bt.c.obj) +_nimble_data_end esp-idf/bt/libbt.a(bt.c.obj) +_nimble_data_start esp-idf/bt/libbt.a(bt.c.obj) +_open_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_print_roots_count /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_printf_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) +_putc_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) +_putchar_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) +_puts_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) +_raise_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_read_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_read_r_console esp-idf/newlib/libnewlib.a(syscalls.c.obj) +_realloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_reclaim_reent /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +_remove_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-remove.o) +_rename_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rename.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_rodata_reserved_end esp-idf/esp_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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) +_sfread_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) +_siscanf_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) +_snprintf_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) +_sprintf_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) +_sscanf_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) +_start /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o +_stat_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) +_strdup_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) +_strerror_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) +_strndup_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) +_strtod_l /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +_strtod_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) +_strtol_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) +_strtoll_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) +_strtoul_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) +_strtoull_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) +_sungetc_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) +_svfiprintf_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) +_svfprintf_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) +_system_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_thread_local_end esp-idf/freertos/libfreertos.a(port.c.obj) +_thread_local_start esp-idf/freertos/libfreertos.a(port.c.obj) +_times_r esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_timezone /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) +_tzname /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) +_tzset_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) +_tzset_unlocked /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) +_tzset_unlocked_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) +_ungetc_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) +_unlink_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-remove.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_user_strerror /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) +_vector_table esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_vfiprintf_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) +_vfprintf_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) +_vprintf_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) +_vsnprintf_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) +_wctomb_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) +_wifi_vnd_ext_mesh_roots_free /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_wifi_vnd_ext_mesh_roots_malloc /home/djordje/Data/Documents/Espressif/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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_write_r_console esp-idf/newlib/libnewlib.a(syscalls.c.obj) +_xt_alloca_exc esp-idf/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(event_groups.c.obj) + esp-idf/bt/libbt.a(hli_api.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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.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/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/bt/libbt.a(hli_api.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(tasks.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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +adc1_amp_read /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +adc1_amp_read_full /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +adc1_pad_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +adc1_read /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +adc1_read_test /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +adc2_pad_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +adc2_read /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +adc2_read_test /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +adc2_wifi_acquire /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +adc2_wifi_release /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +adc_ana_conf_org /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +adc_pad_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +adc_pad_int /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +add_mic_ie_bip /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +addba_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/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(crypto_ops.c.obj) +aes_128_cbc_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_128_ctr_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +aes_ccm_ad esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) +aes_ccm_ae esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) +aes_ctr_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 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-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_encrypt_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_encrypt_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_hal_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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ampdu_alloc_rx_ba_index /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ampdu_dispatch /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ampdu_dispatch_all /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ampdu_dispatch_as_many_as_possible /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ampdu_dispatch_movement /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ampdu_dispatch_upto /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ampdu_free_rx_ba_index /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +analog_gain_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ant_btrx_cfg /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ant_bttx_cfg /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ant_dft_cfg /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ant_wifirx_cfg /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ant_wifitx_cfg /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/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) +ap_no_lr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ap_rx_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ap_rxcb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ap_sa_query_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/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(app_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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +bb_bss_cbw40 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bb_bss_cbw40_ana /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bb_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bb_intr_handl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +bb_reg_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bb_wdg_cfg /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bb_wdt_get_status /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +bb_wdt_int_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +bb_wdt_rst_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bb_wdt_timeout_clear /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/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(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) +ble_adv_txpwr_get_inter /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +ble_att_chan_mtu esp-idf/bt/libbt.a(ble_att.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) +ble_att_clt_rx_error esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_clt_rx_exec_write esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_clt_rx_find_info esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_clt_rx_find_type_value esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_clt_rx_indicate esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_clt_rx_mtu esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_clt_rx_prep_write esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_clt_rx_read esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_clt_rx_read_blob esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_clt_rx_read_group_type esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_clt_rx_read_mult esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_clt_rx_read_type esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_clt_rx_write esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_clt_tx_exec_write esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_att_clt_tx_find_info esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_att_clt_tx_find_type_value esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_att_clt_tx_indicate esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_att_clt_tx_mtu esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_att_clt_tx_notify esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_att_clt_tx_prep_write esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_att_clt_tx_read esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_att_clt_tx_read_blob esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_att_clt_tx_read_group_type esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_att_clt_tx_read_mult esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_att_clt_tx_read_type esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_att_clt_tx_write_cmd esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_att_clt_tx_write_req esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_att_cmd_get esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) +ble_att_cmd_prepare esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) +ble_att_conn_chan_find esp-idf/bt/libbt.a(ble_att.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_att_create_chan esp-idf/bt/libbt.a(ble_att.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) +ble_att_error_rsp_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_error_rsp_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_exec_write_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_exec_write_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_exec_write_rsp_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_exec_write_rsp_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_find_info_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_find_info_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_find_info_rsp_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_find_info_rsp_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_find_type_value_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_find_type_value_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_inc_tx_stat esp-idf/bt/libbt.a(ble_att.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_indicate_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_indicate_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_indicate_rsp_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_indicate_rsp_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_init esp-idf/bt/libbt.a(ble_att.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_att_mtu esp-idf/bt/libbt.a(ble_att.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_att_mtu_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_mtu_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_mtu_rsp_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_mtu_rsp_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_notify_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_notify_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_preferred_mtu esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_prep_write_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_prep_write_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_prep_write_rsp_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_prep_write_rsp_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_read_blob_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_read_blob_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_read_group_type_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_read_group_type_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_read_group_type_rsp_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_read_group_type_rsp_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_read_mult_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_read_mult_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_read_mult_rsp_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_read_mult_rsp_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_read_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_read_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_read_type_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_read_type_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_read_type_rsp_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_read_type_rsp_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_set_peer_mtu esp-idf/bt/libbt.a(ble_att.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) +ble_att_set_preferred_mtu esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_stats esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_svr_find_by_handle esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_att_svr_find_by_uuid esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_att_svr_hide_range esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_att_svr_init esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_att_svr_prep_clear esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) +ble_att_svr_prev_handle esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_att_svr_read_handle esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_att_svr_read_local esp-idf/bt/libbt.a(ble_att_svr.c.obj) +ble_att_svr_register esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_att_svr_reset esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_att_svr_restore_range esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_att_svr_rx_exec_write esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_svr_rx_find_info esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_svr_rx_find_type_value esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_svr_rx_indicate esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_svr_rx_mtu esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_svr_rx_notify esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_svr_rx_prep_write esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_svr_rx_read esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_svr_rx_read_blob esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_svr_rx_read_group_type esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_svr_rx_read_mult esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_svr_rx_read_type esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_svr_rx_write esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_svr_rx_write_no_rsp esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_svr_start esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_att_svr_stop esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_att_svr_ticks_until_tmo esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) +ble_att_svr_tx_error_rsp esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_att_svr_write_local esp-idf/bt/libbt.a(ble_att_svr.c.obj) +ble_att_truncate_to_mtu esp-idf/bt/libbt.a(ble_att.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_tx esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) +ble_att_write_cmd_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_write_cmd_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_write_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_att_write_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_bb_rst /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) +ble_buf_alloc esp-idf/bt/libbt.a(transport.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) +ble_buf_free esp-idf/bt/libbt.a(transport.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) +ble_dfl_txpwr_get_inter /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) +ble_freertos_co_pool esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +ble_freertos_ev_pool esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +ble_freertos_evq_pool esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +ble_freertos_mutex_pool esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +ble_freertos_sem_pool esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +ble_gap_adv_active esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_gap_adv_rsp_set_data esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_adv_rsp_set_fields esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +ble_gap_adv_set_data esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_adv_set_fields esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +ble_gap_adv_start esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +ble_gap_adv_stop esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +ble_gap_conn_active esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_gap_conn_broken esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_conn_cancel esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_conn_find esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +ble_gap_conn_find_by_addr esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_conn_rssi esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_connect esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_deinit esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_gap_disc esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_disc_active esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_gap_disc_cancel esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_enc_event esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_gap_encryption_initiate esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_enh_read_transmit_power_level esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_event_listener_register esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_hs_stop.c.obj) +ble_gap_event_listener_unregister esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_hs_stop.c.obj) +ble_gap_ext_disc esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_identity_event esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_gap_init esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_gap_master_in_progress esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_mtu_event esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) +ble_gap_notify_rx_event esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) +ble_gap_notify_tx_event esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gap_pair_initiate esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_passkey_event esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_gap_preempt esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) +ble_gap_preempt_done esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) +ble_gap_preempt_no_lock esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_read_le_phy esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_read_remote_transmit_power_level esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_read_sugg_def_data_len esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_repeat_pairing_event esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_gap_reset_state esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_gap_rx_adv_report esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) +ble_gap_rx_conn_complete esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) +ble_gap_rx_disconn_complete esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) +ble_gap_rx_l2cap_update_req esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) +ble_gap_rx_param_req esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) +ble_gap_rx_phy_update_complete esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) +ble_gap_rx_rd_rem_sup_feat_complete esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) +ble_gap_rx_update_complete esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) +ble_gap_security_initiate esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_set_data_len esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_set_event_cb esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_set_path_loss_reporting_enable esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_set_path_loss_reporting_param esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_set_prefered_default_le_phy esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_set_prefered_le_phy esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_set_priv_mode esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_set_transmit_power_reporting_enable esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_stats esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_subscribe_event esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_gap_terminate esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gap_terminate_with_conn esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_hs_stop.c.obj) +ble_gap_timer esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_gap_unpair esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_unpair_oldest_except esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_store_util.c.obj) +ble_gap_unpair_oldest_peer esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_store_util.c.obj) +ble_gap_update_params esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) +ble_gap_wl_set esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_wl_tx_clear esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_wl_tx_rmv esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gap_write_sugg_def_data_len esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gattc_any_jobs esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gattc_connection_broken esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gattc_disc_all_chrs esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gattc_disc_all_dscs esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gattc_disc_all_svcs esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gattc_disc_chrs_by_uuid esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gattc_disc_svc_by_uuid esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gattc_exchange_mtu esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gattc_find_inc_svcs esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gattc_indicate esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gattc_indicate_custom esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gattc_init esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_gattc_notify esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gattc_notify_custom esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gattc_read esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gattc_read_by_uuid esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gattc_read_long esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gattc_read_mult esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gattc_rx_err esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) +ble_gattc_rx_exec_write_rsp esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) +ble_gattc_rx_find_info_complete esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) +ble_gattc_rx_find_info_idata esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) +ble_gattc_rx_find_type_value_complete esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) +ble_gattc_rx_find_type_value_hinfo esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) +ble_gattc_rx_mtu esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) +ble_gattc_rx_prep_write_rsp esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) +ble_gattc_rx_read_blob_rsp esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) +ble_gattc_rx_read_group_type_adata esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) +ble_gattc_rx_read_group_type_complete esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) +ble_gattc_rx_read_mult_rsp esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) +ble_gattc_rx_read_rsp esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) +ble_gattc_rx_read_type_adata esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) +ble_gattc_rx_read_type_complete esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) +ble_gattc_rx_write_rsp esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) +ble_gattc_stats esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gattc_timer esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_gattc_write esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gattc_write_flat esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gattc_write_long esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gattc_write_no_rsp esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gattc_write_no_rsp_flat esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gattc_write_reliable esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gatts_add_svcs esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +ble_gatts_bonding_established esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gatts_bonding_restored esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gatts_chr_updated esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_gatts_clt_cfg_access esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_gatts_conn_can_alloc esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) +ble_gatts_conn_init esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) +ble_gatts_connection_broken esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_gatts_count_cfg esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +ble_gatts_find_chr esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_gatts_find_dsc esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_gatts_find_svc esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_gatts_indicate esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_gatts_indicate_custom esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gatts_indicate_fail_notconn esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_gatts_init esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_gatts_lcl_svc_foreach esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_gatts_notify esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_gatts_notify_custom esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gatts_register_svcs esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_gatts_reset esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_gatts_rx_indicate_ack esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gatts_rx_indicate_rsp esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) +ble_gatts_send_next_indicate esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_gatts_start esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_gatts_stats esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_gatts_stop esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_gatts_svc_set_visibility esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_gatts_tx_notifications esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hci_trans_cfg_hs esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) +ble_hci_trans_hs_acl_tx esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hci_trans_hs_cmd_tx esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) +ble_hci_trans_ll_acl_tx esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) +ble_hci_trans_ll_evt_tx esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) +ble_hci_trans_reset esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) +ble_host_rpa_enabled esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) +ble_hs_adv_find_field esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_hs_adv_parse esp-idf/bt/libbt.a(ble_hs_adv.c.obj) +ble_hs_adv_parse_fields esp-idf/bt/libbt.a(ble_hs_adv.c.obj) +ble_hs_adv_set_fields esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_hs_adv_set_fields_mbuf esp-idf/bt/libbt.a(ble_hs_adv.c.obj) +ble_hs_adv_set_flat esp-idf/bt/libbt.a(ble_hs_adv.c.obj) +ble_hs_atomic_conn_delete esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_hs_atomic_conn_flags esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) +ble_hs_atomic_conn_insert esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) +ble_hs_atomic_conn_set_flags esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) +ble_hs_atomic_first_conn_handle esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_hs_cfg esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_store_config.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_store.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +ble_hs_conn_addrs esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_hs_conn_alloc esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_hs_conn_can_alloc esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_hs_conn_chan_exist esp-idf/bt/libbt.a(ble_hs_conn.c.obj) +ble_hs_conn_chan_find_by_dcid esp-idf/bt/libbt.a(ble_hs_conn.c.obj) +ble_hs_conn_chan_find_by_scid esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_hs_conn_chan_insert esp-idf/bt/libbt.a(ble_hs_conn.c.obj) +ble_hs_conn_delete_chan esp-idf/bt/libbt.a(ble_hs_conn.c.obj) +ble_hs_conn_exists esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_hs_conn_find esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) +ble_hs_conn_find_assert esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_hs_conn_find_by_addr esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_hs_conn_find_by_idx esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_hs_conn_first esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_conn_foreach esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_hs_stop.c.obj) +ble_hs_conn_free esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) +ble_hs_conn_init esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_conn_insert esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_hs_conn_remove esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) +ble_hs_conn_timer esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_deinit esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(nimble_port.c.obj) +ble_hs_enabled_state esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) +ble_hs_enqueue_hci_event esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci.c.obj) +ble_hs_evq_get esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_hs_flow.c.obj) +ble_hs_evq_set esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_flow_connection_broken esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_hs_flow_deinit esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_flow_init esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_flow_startup esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + esp-idf/bt/libbt.a(ble_hs_startup.c.obj) +ble_hs_flow_stop esp-idf/bt/libbt.a(ble_hs_flow.c.obj) +ble_hs_flow_track_data_mbuf esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_gen_own_private_rnd esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) +ble_hs_get_rpa_local esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) +ble_hs_hci_acl_tx esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + esp-idf/bt/libbt.a(ble_l2cap.c.obj) +ble_hs_hci_acl_tx_now esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_hci_add_avail_pkts esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) +ble_hs_hci_avail_pkts esp-idf/bt/libbt.a(ble_hs_hci.c.obj) +ble_hs_hci_cmd_send_buf esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci.c.obj) +ble_hs_hci_cmd_tx esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_hs_startup.c.obj) +ble_hs_hci_cmd_tx_no_rsp esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + esp-idf/bt/libbt.a(ble_hs_flow.c.obj) +ble_hs_hci_deinit esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_hci_ev_pool esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_hci_evt_acl_process esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_hci_evt_process esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_hci_frag_num_mbufs esp-idf/bt/libbt.a(ble_hs_hci.c.obj) +ble_hs_hci_frag_num_mbufs_free esp-idf/bt/libbt.a(ble_hs_hci.c.obj) +ble_hs_hci_get_hci_version esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + esp-idf/bt/libbt.a(ble_hs_startup.c.obj) +ble_hs_hci_get_le_supported_feat esp-idf/bt/libbt.a(ble_hs_hci.c.obj) +ble_hs_hci_init esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_hci_read_chan_map esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) +ble_hs_hci_rx_evt esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_hci_set_buf_sz esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + esp-idf/bt/libbt.a(ble_hs_startup.c.obj) +ble_hs_hci_set_chan_class esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) +ble_hs_hci_set_hci_version esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + esp-idf/bt/libbt.a(ble_hs_startup.c.obj) +ble_hs_hci_set_le_supported_feat esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + esp-idf/bt/libbt.a(ble_hs_startup.c.obj) +ble_hs_hci_util_data_hdr_strip esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) +ble_hs_hci_util_handle_pb_bc_join esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci.c.obj) +ble_hs_hci_util_rand esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_hs_id.c.obj) +ble_hs_hci_util_read_adv_tx_pwr esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + esp-idf/bt/libbt.a(ble_hs_adv.c.obj) +ble_hs_hci_util_read_rssi esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_hs_hci_util_read_sugg_def_data_len esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_hs_hci_util_set_data_len esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_hs_hci_util_set_random_addr esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + esp-idf/bt/libbt.a(ble_hs_id.c.obj) +ble_hs_hci_util_write_sugg_def_data_len esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_hs_hw_error esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) +ble_hs_id_addr esp-idf/bt/libbt.a(ble_hs_id.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_hs_id_copy_addr esp-idf/bt/libbt.a(ble_hs_id.c.obj) + esp-idf/bt/libbt.a(addr.c.obj) +ble_hs_id_gen_rnd esp-idf/bt/libbt.a(ble_hs_id.c.obj) + esp-idf/bt/libbt.a(addr.c.obj) +ble_hs_id_infer_auto esp-idf/bt/libbt.a(ble_hs_id.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +ble_hs_id_reset esp-idf/bt/libbt.a(ble_hs_id.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_id_rnd_reset esp-idf/bt/libbt.a(ble_hs_id.c.obj) +ble_hs_id_set_nrpa_rnd esp-idf/bt/libbt.a(ble_hs_id.c.obj) + esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) +ble_hs_id_set_pseudo_rnd esp-idf/bt/libbt.a(ble_hs_id.c.obj) + esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) +ble_hs_id_set_pub esp-idf/bt/libbt.a(ble_hs_id.c.obj) + esp-idf/bt/libbt.a(ble_hs_startup.c.obj) +ble_hs_id_set_rnd esp-idf/bt/libbt.a(ble_hs_id.c.obj) + esp-idf/bt/libbt.a(addr.c.obj) +ble_hs_id_use_addr esp-idf/bt/libbt.a(ble_hs_id.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_hs_init esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_is_enabled esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_hs_is_parent_task esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) +ble_hs_is_rpa esp-idf/bt/libbt.a(ble_hs_id.c.obj) + esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) +ble_hs_lock esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_store.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + esp-idf/bt/libbt.a(ble_hs_id.c.obj) +ble_hs_lock_nested esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(ble_hs_flow.c.obj) +ble_hs_log esp-idf/bt/libbt.a(ble_hs_log.c.obj) +ble_hs_log_flat_buf esp-idf/bt/libbt.a(ble_hs_log.c.obj) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_store_config.c.obj) + esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) +ble_hs_log_mbuf esp-idf/bt/libbt.a(ble_hs_log.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) +ble_hs_max_attrs esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_hs_max_client_configs esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_hs_max_services esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_hs_mbuf_acl_pkt esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci.c.obj) +ble_hs_mbuf_att_pkt esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_hs_mbuf_bare_pkt esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) +ble_hs_mbuf_from_flat esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_hs_mbuf_l2cap_pkt esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_hs_mbuf_pullup_base esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) +ble_hs_mbuf_to_flat esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +ble_hs_misc_conn_chan_find esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_hs_misc_conn_chan_find_reqd esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_hs_misc_null_addr esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + esp-idf/bt/libbt.a(ble_hs_id.c.obj) +ble_hs_misc_own_addr_type_to_id esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_hs_id.c.obj) +ble_hs_misc_peer_addr_type_to_id esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_hs_misc_restore_irks esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_notifications_sched esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_hs_process_rx_data_queue esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_pvcy_add_entry esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + esp-idf/bt/libbt.a(ble_store.c.obj) +ble_hs_pvcy_default_irk esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) +ble_hs_pvcy_enabled esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) +ble_hs_pvcy_ensure_started esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + esp-idf/bt/libbt.a(ble_hs_id.c.obj) +ble_hs_pvcy_our_irk esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_hs_pvcy_remove_entry esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_hs_pvcy_rpa_config esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) +ble_hs_pvcy_set_mode esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_hs_pvcy_set_our_irk esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + esp-idf/bt/libbt.a(ble_hs_startup.c.obj) +ble_hs_resolv_deinit esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_resolv_enable esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) +ble_hs_resolv_init esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) +ble_hs_resolv_list_add esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) +ble_hs_resolv_list_clear_all esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) +ble_hs_resolv_list_find esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_hs_resolv_list_rmv esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + esp-idf/bt/libbt.a(ble_store_util.c.obj) +ble_hs_resolv_nrpa_disable esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) +ble_hs_resolv_nrpa_enable esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) +ble_hs_resolv_rpa esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) +ble_hs_resolv_set_rpa_tmo esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) +ble_hs_sched_reset esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) +ble_hs_sched_start esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_start esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_startup_go esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_stats esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_stop esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + esp-idf/bt/libbt.a(nimble_port.c.obj) +ble_hs_stop_deinit esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_stop_init esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_sync_state esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) +ble_hs_synced esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_hs_timer_resched esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_hs_tx_data esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci.c.obj) +ble_hs_unlock esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_store.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + esp-idf/bt/libbt.a(ble_hs_id.c.obj) +ble_hs_unlock_nested esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(ble_hs_flow.c.obj) +ble_hs_util_ensure_addr esp-idf/bt/libbt.a(addr.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +ble_hs_wakeup_tx esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) +ble_l2cap_chan_alloc esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_l2cap_chan_free esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) +ble_l2cap_chan_pool esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) +ble_l2cap_connect esp-idf/bt/libbt.a(ble_l2cap.c.obj) +ble_l2cap_create_server esp-idf/bt/libbt.a(ble_l2cap.c.obj) +ble_l2cap_disconnect esp-idf/bt/libbt.a(ble_l2cap.c.obj) +ble_l2cap_enhanced_connect esp-idf/bt/libbt.a(ble_l2cap.c.obj) +ble_l2cap_get_chan_info esp-idf/bt/libbt.a(ble_l2cap.c.obj) +ble_l2cap_get_conn_handle esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_l2cap_init esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_l2cap_is_mtu_req_sent esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +ble_l2cap_parse_hdr esp-idf/bt/libbt.a(ble_l2cap.c.obj) +ble_l2cap_prepend_hdr esp-idf/bt/libbt.a(ble_l2cap.c.obj) +ble_l2cap_reconfig esp-idf/bt/libbt.a(ble_l2cap.c.obj) +ble_l2cap_recv_ready esp-idf/bt/libbt.a(ble_l2cap.c.obj) +ble_l2cap_remove_rx esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) +ble_l2cap_rx esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) +ble_l2cap_send esp-idf/bt/libbt.a(ble_l2cap.c.obj) +ble_l2cap_sig_cmd_get esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) +ble_l2cap_sig_conn_broken esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_l2cap_sig_create_chan esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) +ble_l2cap_sig_hdr_parse esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) +ble_l2cap_sig_init esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + esp-idf/bt/libbt.a(ble_l2cap.c.obj) +ble_l2cap_sig_reject_invalid_cid_tx esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) +ble_l2cap_sig_reject_tx esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) +ble_l2cap_sig_timer esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_l2cap_sig_tx esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) +ble_l2cap_sig_update esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_l2cap_stats esp-idf/bt/libbt.a(ble_l2cap.c.obj) +ble_l2cap_tx esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +ble_ll_get_adv_txed_cnt /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +ble_ll_get_scan_rxed_cnt /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +ble_ll_qa_test_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +ble_ll_reset_rand_addr /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +ble_ll_scan_set_perfer_addr /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +ble_master_soft_rst /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) +ble_mqueue_deinit esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_mqueue_get esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_mqueue_init esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_mqueue_put esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_port_mutex esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +ble_rpa_find_peer_dev_rec esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_store_util.c.obj) +ble_rpa_get_num_peer_dev_records esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) +ble_rpa_get_peer_dev_records esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) +ble_rpa_remove_peer_dev_rec esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_store_util.c.obj) +ble_rpa_replace_peer_params_with_rl esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) +ble_rpa_resolv_add_peer_rec esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_rpa_set_num_peer_dev_records esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) +ble_scan_txpwr_get_inter /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) +ble_sm_alg_c1 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) +ble_sm_alg_ecc_init esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) +ble_sm_alg_encrypt esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) +ble_sm_alg_f4 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) +ble_sm_alg_f5 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) +ble_sm_alg_f6 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) +ble_sm_alg_g2 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) +ble_sm_alg_gen_dhkey esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) +ble_sm_alg_gen_key_pair esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) +ble_sm_alg_s1 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) +ble_sm_cmd_get esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_sm_connection_broken esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_sm_create_chan esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) +ble_sm_enc_change_rx esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) +ble_sm_enc_initiate esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_sm_enc_key_refresh_rx esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) +ble_sm_gen_pair_rand esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) +ble_sm_ia_ra esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) +ble_sm_init esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_l2cap.c.obj) +ble_sm_inject_io esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_sm_ioact_state esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) +ble_sm_lgcy_confirm_exec esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_sm_lgcy_io_action esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_sm_lgcy_random_exec esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_sm_lgcy_random_rx esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_sm_ltk_req_rx esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) +ble_sm_num_procs esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_sm_our_pair_rand esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) +ble_sm_pair_initiate esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_sm_peer_pair_rand esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) +ble_sm_proc_can_advance esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) +ble_sm_proc_find esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) +ble_sm_process_result esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_sm_sc_confirm_exec esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_sm_sc_dhkey_check_exec esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_sm_sc_dhkey_check_rx esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_sm_sc_init esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_sm_sc_io_action esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_sm_sc_oob_confirm esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_sm_sc_oob_data_check esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_sm_sc_oob_generate_data esp-idf/bt/libbt.a(ble_sm_sc.c.obj) +ble_sm_sc_public_key_exec esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_sm_sc_public_key_rx esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_sm_sc_random_exec esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_sm_sc_random_rx esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_sm_slave_initiate esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_sm_timer esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_sm_tx esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_store_clear esp-idf/bt/libbt.a(ble_store.c.obj) +ble_store_config_cccds esp-idf/bt/libbt.a(ble_store_config.c.obj) +ble_store_config_delete esp-idf/bt/libbt.a(ble_store_config.c.obj) +ble_store_config_init esp-idf/bt/libbt.a(ble_store_config.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +ble_store_config_num_cccds esp-idf/bt/libbt.a(ble_store_config.c.obj) +ble_store_config_num_our_secs esp-idf/bt/libbt.a(ble_store_config.c.obj) +ble_store_config_num_peer_secs esp-idf/bt/libbt.a(ble_store_config.c.obj) +ble_store_config_our_secs esp-idf/bt/libbt.a(ble_store_config.c.obj) +ble_store_config_peer_secs esp-idf/bt/libbt.a(ble_store_config.c.obj) +ble_store_config_read esp-idf/bt/libbt.a(ble_store_config.c.obj) +ble_store_config_write esp-idf/bt/libbt.a(ble_store_config.c.obj) +ble_store_delete esp-idf/bt/libbt.a(ble_store.c.obj) + esp-idf/bt/libbt.a(ble_store_util.c.obj) +ble_store_delete_cccd esp-idf/bt/libbt.a(ble_store.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_store_delete_our_sec esp-idf/bt/libbt.a(ble_store.c.obj) +ble_store_delete_peer_sec esp-idf/bt/libbt.a(ble_store.c.obj) +ble_store_full_event esp-idf/bt/libbt.a(ble_store.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_store_iterate esp-idf/bt/libbt.a(ble_store.c.obj) + esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + esp-idf/bt/libbt.a(ble_store_util.c.obj) +ble_store_key_from_value esp-idf/bt/libbt.a(ble_store.c.obj) +ble_store_key_from_value_cccd esp-idf/bt/libbt.a(ble_store.c.obj) + esp-idf/bt/libbt.a(ble_store_config.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_store_key_from_value_sec esp-idf/bt/libbt.a(ble_store.c.obj) + esp-idf/bt/libbt.a(ble_store_config.c.obj) +ble_store_overflow_event esp-idf/bt/libbt.a(ble_store.c.obj) +ble_store_read esp-idf/bt/libbt.a(ble_store.c.obj) +ble_store_read_cccd esp-idf/bt/libbt.a(ble_store.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_store_read_our_sec esp-idf/bt/libbt.a(ble_store.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_store_read_peer_sec esp-idf/bt/libbt.a(ble_store.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_store_util_bonded_peers esp-idf/bt/libbt.a(ble_store_util.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_store_util_count esp-idf/bt/libbt.a(ble_store_util.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_store_util_delete_all esp-idf/bt/libbt.a(ble_store_util.c.obj) +ble_store_util_delete_oldest_peer esp-idf/bt/libbt.a(ble_store_util.c.obj) +ble_store_util_delete_peer esp-idf/bt/libbt.a(ble_store_util.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +ble_store_util_status_rr esp-idf/bt/libbt.a(ble_store_util.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +ble_store_write esp-idf/bt/libbt.a(ble_store.c.obj) +ble_store_write_cccd esp-idf/bt/libbt.a(ble_store.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +ble_store_write_our_sec esp-idf/bt/libbt.a(ble_store.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_store_write_peer_sec esp-idf/bt/libbt.a(ble_store.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) +ble_svc_gap_device_appearance esp-idf/bt/libbt.a(ble_svc_gap.c.obj) +ble_svc_gap_device_appearance_set esp-idf/bt/libbt.a(ble_svc_gap.c.obj) +ble_svc_gap_device_name esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +ble_svc_gap_device_name_set esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +ble_svc_gap_init esp-idf/bt/libbt.a(ble_svc_gap.c.obj) +ble_svc_gap_set_chr_changed_cb esp-idf/bt/libbt.a(ble_svc_gap.c.obj) +ble_transport_alloc_acl_from_hs esp-idf/bt/libbt.a(transport.c.obj) +ble_transport_alloc_acl_from_ll esp-idf/bt/libbt.a(transport.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) +ble_transport_alloc_cmd esp-idf/bt/libbt.a(transport.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) +ble_transport_alloc_evt esp-idf/bt/libbt.a(transport.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) +ble_transport_deinit esp-idf/bt/libbt.a(transport.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) +ble_transport_free esp-idf/bt/libbt.a(transport.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +ble_transport_hs_init esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(nimble_port.c.obj) +ble_transport_init esp-idf/bt/libbt.a(transport.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) +ble_transport_register_put_acl_from_ll_cb esp-idf/bt/libbt.a(transport.c.obj) + esp-idf/bt/libbt.a(ble_hs_flow.c.obj) +ble_transport_to_hs_acl_impl esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) +ble_transport_to_hs_evt_impl esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) +ble_txpwr_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + esp-idf/bt/libbt.a(bt.c.obj) +ble_txpwr_set /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + esp-idf/bt/libbt.a(bt.c.obj) +ble_txpwr_set_inter /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +ble_uuid_cmp esp-idf/bt/libbt.a(ble_uuid.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_uuid_copy esp-idf/bt/libbt.a(ble_uuid.c.obj) +ble_uuid_flat esp-idf/bt/libbt.a(ble_uuid.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +ble_uuid_init_from_att_buf esp-idf/bt/libbt.a(ble_uuid.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_uuid_init_from_att_mbuf esp-idf/bt/libbt.a(ble_uuid.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_uuid_init_from_buf esp-idf/bt/libbt.a(ble_uuid.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_hs_adv.c.obj) +ble_uuid_length esp-idf/bt/libbt.a(ble_uuid.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_uuid_to_any esp-idf/bt/libbt.a(ble_uuid.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_uuid_to_mbuf esp-idf/bt/libbt.a(ble_uuid.c.obj) + esp-idf/bt/libbt.a(ble_hs_adv.c.obj) +ble_uuid_to_str esp-idf/bt/libbt.a(ble_uuid.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +ble_uuid_u16 esp-idf/bt/libbt.a(ble_uuid.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_svc_gap.c.obj) +block_absorb_post_hook esp-idf/heap/libheap.a(tlsf.c.obj) +bootloader_ana_clock_glitch_reset_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_atexit esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_clock_get_rated_freq_mhz esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) +bootloader_common_check_chip_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) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_flash_execute_command_common esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_get_spi_mode esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_get_wp_pin esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +bootloader_flash_gpio_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_flash_is_octal_mode_enabled esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_read esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_flash_read_sfdp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_reset_chip esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_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) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_flash_xmc_startup esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_image_hdr esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_init_mem esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_init_spi_flash esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_load_image esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_load_image_no_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_mmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_mmap_get_free_pages esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_munmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_random_disable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_random_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) +bootloader_read_flash_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_finish esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_flash_contents esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_sha256_hex_to_str esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_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) +bredr_sco_datapath_set /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sco.o) + esp-idf/bt/libbt.a(bt.c.obj) +bredr_txpwr_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + esp-idf/bt/libbt.a(bt.c.obj) +bredr_txpwr_set /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + esp-idf/bt/libbt.a(bt.c.obj) +bredr_txpwr_set_inter /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +bt_bb_init_cmplx_reg /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) +bt_bb_to_index /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bt_cmplx_hq_re /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +bt_cmplx_hq_wr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +bt_cmplx_lq_re /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +bt_cmplx_lq_wr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +bt_correct_bbgain /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bt_dgmixer_fstep_250k /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +bt_dig_gain_force /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bt_esp_vs_evt_desc /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_msg.o) +bt_get_i2c_data /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_i2c_read_mem /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_i2c_read_set /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_i2c_set_wifi_data /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_i2c_write_set /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_index_to_bb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +bt_mode_wifibb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bt_opt_2480 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bt_osi_mem_calloc esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + esp-idf/bt/libbt.a(transport.c.obj) + esp-idf/bt/libbt.a(os_msys_init.c.obj) +bt_osi_mem_calloc_internal esp-idf/bt/libbt.a(bt_osi_mem.c.obj) +bt_osi_mem_free esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(transport.c.obj) + esp-idf/bt/libbt.a(os_msys_init.c.obj) + esp-idf/bt/libbt.a(mem.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +bt_osi_mem_malloc esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(mem.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) +bt_osi_mem_malloc_internal esp-idf/bt/libbt.a(bt_osi_mem.c.obj) +bt_plf_log_hex /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(btdm_log.o) +bt_pwr_cap_sum /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_pwr_cap_sum_old /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_pwr_freq_old /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_pwr_track_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_rfoffset_en /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +bt_rxfilt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +bt_track_pll_cap /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(intc.o) +bt_track_tx_power /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_tx_gain_cal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bt_tx_pwctrl_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bt_txdc_cal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bt_txfilt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +bt_txiq_cal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bt_txpwr_backoff /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bt_util_buf_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) +bt_util_buf_lmp_tx_stored_clear /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_lmppdu.o) +bt_util_buf_lmp_tx_stored_clear_all /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) +bt_util_buf_lmp_tx_stored_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_lmppdu.o) +bt_util_buf_lmp_tx_stored_set /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_lmppdu.o) +bt_wifi_chan_data /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +btdm_app_ref_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +btdm_controller_compile_version_check /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +btdm_controller_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + esp-idf/bt/libbt.a(bt.c.obj) +btdm_controller_disable /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + esp-idf/bt/libbt.a(bt.c.obj) +btdm_controller_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + esp-idf/bt/libbt.a(bt.c.obj) +btdm_controller_enable_sleep /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + esp-idf/bt/libbt.a(bt.c.obj) +btdm_controller_get_compile_version /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + esp-idf/bt/libbt.a(bt.c.obj) +btdm_controller_get_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + esp-idf/bt/libbt.a(bt.c.obj) +btdm_controller_get_sleep_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + esp-idf/bt/libbt.a(bt.c.obj) +btdm_controller_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + esp-idf/bt/libbt.a(bt.c.obj) +btdm_controller_scan_duplicate_list_clear /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + esp-idf/bt/libbt.a(bt.c.obj) +btdm_controller_set_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +btdm_controller_set_sleep_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + esp-idf/bt/libbt.a(bt.c.obj) +btdm_controller_sleep_enabled /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +btdm_controller_task /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +btdm_disable_adv_delay /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +btdm_dispatch_work_to_controller /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + esp-idf/bt/libbt.a(bt.c.obj) +btdm_enable_scan_forever /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +btdm_env_p /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sco.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) +btdm_get_power_state /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +btdm_get_prevent_sleep_flag /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) +btdm_in_wakeup_requesting_set /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + esp-idf/bt/libbt.a(bt.c.obj) +btdm_lpclk_select_src /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + esp-idf/bt/libbt.a(bt.c.obj) +btdm_lpclk_set_div /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + esp-idf/bt/libbt.a(bt.c.obj) +btdm_osi_funcs_register /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(osi.o) + esp-idf/bt/libbt.a(bt.c.obj) +btdm_power_state_active /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + esp-idf/bt/libbt.a(bt.c.obj) +btdm_pwr_state /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +btdm_r_btdm_option_data_p_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +btdm_r_btdm_rom_version_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +btdm_r_import_rf_phy_func_p_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +btdm_r_ip_func_p_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +btdm_r_modules_func_p_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +btdm_r_plf_func_p_set /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +btdm_rf_bb_init_phase1 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) +btdm_rf_bb_init_phase2 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + esp-idf/bt/libbt.a(bt.c.obj) +btdm_rom_ref_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +btdm_slp_err /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +btdm_task_post /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +btdm_task_post_from_isr /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(intc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +btdm_task_recycle /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +btdm_wakeup_request /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + esp-idf/bt/libbt.a(bt.c.obj) +btpwr_atten_offset /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +btpwr_backoff /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +btpwr_pll_track /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +btpwr_tsen_flag /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +btpwr_tsen_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +btpwr_tsen_old /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +btpwr_tsens_track /home/djordje/Data/Documents/Espressif/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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + esp-idf/newlib/libnewlib.a(heap.c.obj) +cJSON_AddArrayToObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_AddBoolToObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_AddFalseToObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_AddItemReferenceToArray esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_AddItemReferenceToObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_AddItemToArray esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +cJSON_AddItemToObject esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +cJSON_AddItemToObjectCS esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_AddNullToObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_AddNumberToObject esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +cJSON_AddObjectToObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_AddRawToObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_AddStringToObject esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +cJSON_AddTrueToObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_Compare esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateArray esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +cJSON_CreateArrayReference esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateBool esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateDoubleArray esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateFalse esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateFloatArray esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateIntArray esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateNull esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateNumber esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateObject esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +cJSON_CreateObjectReference esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateRaw esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateString esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +cJSON_CreateStringArray esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateStringReference esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateTrue esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_Delete esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +cJSON_DeleteItemFromArray esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_DeleteItemFromObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_DeleteItemFromObjectCaseSensitive esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_DetachItemFromArray esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_DetachItemFromObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_DetachItemFromObjectCaseSensitive esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_DetachItemViaPointer esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_Duplicate esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +cJSON_GetArrayItem esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_GetArraySize esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_GetErrorPtr esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_GetNumberValue esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_GetObjectItem esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_GetObjectItemCaseSensitive esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_GetStringValue esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_HasObjectItem esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_InitHooks esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_InsertItemInArray esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_IsArray esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_IsBool esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_IsFalse esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_IsInvalid esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_IsNull esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_IsNumber esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_IsObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_IsRaw esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_IsString esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_IsTrue esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_Minify esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_Parse esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_ParseWithLength esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_ParseWithLengthOpts esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_ParseWithOpts esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_Print esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +cJSON_PrintBuffered esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_PrintPreallocated esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_PrintUnformatted esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_ReplaceItemInArray esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_ReplaceItemInObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_ReplaceItemInObjectCaseSensitive esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_ReplaceItemViaPointer esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_SetNumberHelper esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_SetValuestring esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_Version esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_free esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_malloc esp-idf/json/libjson.a(cJSON.c.obj) +cache_flash_mmu_set_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.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/spi_flash/libspi_flash.a(cache_utils.c.obj) +cache_hal_suspend esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +calculate_update_time esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) +call_start_cpu0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +call_start_cpu1 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +call_user_start esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +calloc esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.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(esp_scan.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.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_wpa_main.c.obj) + esp-idf/lwip/liblwip.a(mem.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/esp_phy/libesp_phy.a(phy_init.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/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +candidate_monitor_timer_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +candidate_monitor_timer_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +cannel_scan_connect_state /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ccmp /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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) +ceil /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_ceil.o) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) +cfg_sdio_volt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +cfree esp-idf/newlib/libnewlib.a(heap.c.obj) +chan14_mic_cfg /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chan14_mic_en /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chan14_mic_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +chan14_mic_flag /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +chan14_mic_most_power /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +chan_to_freq /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +check_bss_queue /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chip7_phy_api_ctrl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +chip7_phy_init_ctrl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chip7_sleep_params /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chip_disable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chip_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chip_post_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chip_sleep_prot_dis /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chip_sleep_prot_en /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chip_v7_adc_wr_dly /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chip_v7_rxmax_ext /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +chip_v7_rxmax_ext_ana /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chip_v7_rxmax_ext_dig /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +chip_v7_set_chan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) +chip_v7_set_chan_ana /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +chip_v7_set_chan_misc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chip_v7_set_chan_nomac /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +chip_v7_set_chan_offset /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +chm_acquire_lock /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chm_cancel_op /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chm_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chm_end_op /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +chm_end_op_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +chm_get_chan_info /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +chm_get_current_channel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chm_get_home_channel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +chm_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chm_is_at_home_channel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +chm_mhz2num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +chm_release_lock /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +chm_return_home_channel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chm_set_current_channel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +chm_set_home_channel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +chm_start_op /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chnl_map_check /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) +cipher_map_net80211_to_public_cipher /home/djordje/Data/Documents/Espressif/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_glue /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) +cleanup_peer_list /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +clear_bss_queue /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/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/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) +cmd_apply_config__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +cmd_apply_config__free_unpacked esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +cmd_apply_config__get_packed_size esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +cmd_apply_config__init esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +cmd_apply_config__pack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +cmd_apply_config__pack_to_buffer esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +cmd_apply_config__unpack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +cmd_ctrl_reprov__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +cmd_ctrl_reprov__free_unpacked esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +cmd_ctrl_reprov__get_packed_size esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +cmd_ctrl_reprov__init esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +cmd_ctrl_reprov__pack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +cmd_ctrl_reprov__pack_to_buffer esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +cmd_ctrl_reprov__unpack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +cmd_ctrl_reset__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +cmd_ctrl_reset__free_unpacked esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +cmd_ctrl_reset__get_packed_size esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +cmd_ctrl_reset__init esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +cmd_ctrl_reset__pack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +cmd_ctrl_reset__pack_to_buffer esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +cmd_ctrl_reset__unpack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +cmd_get_status__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +cmd_get_status__free_unpacked esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +cmd_get_status__get_packed_size esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +cmd_get_status__init esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +cmd_get_status__pack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +cmd_get_status__pack_to_buffer esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +cmd_get_status__unpack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +cmd_scan_result__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +cmd_scan_result__free_unpacked esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +cmd_scan_result__get_packed_size esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +cmd_scan_result__init esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +cmd_scan_result__pack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +cmd_scan_result__pack_to_buffer esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +cmd_scan_result__unpack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +cmd_scan_start__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +cmd_scan_start__free_unpacked esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +cmd_scan_start__get_packed_size esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +cmd_scan_start__init esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +cmd_scan_start__pack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +cmd_scan_start__pack_to_buffer esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +cmd_scan_start__unpack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +cmd_scan_status__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +cmd_scan_status__free_unpacked esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +cmd_scan_status__get_packed_size esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +cmd_scan_status__init esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +cmd_scan_status__pack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +cmd_scan_status__pack_to_buffer esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +cmd_scan_status__unpack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +cmd_set_config__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +cmd_set_config__free_unpacked esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +cmd_set_config__get_packed_size esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +cmd_set_config__init esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +cmd_set_config__pack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +cmd_set_config__pack_to_buffer esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +cmd_set_config__unpack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +cnx_add_rc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_add_to_blacklist /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_assoc_timeout /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_assoc_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +cnx_auth_done /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_auth_timeout /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) +cnx_auth_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +cnx_beacon_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +cnx_bss_alloc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_bss_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_can_do_obss_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_check_bssid_in_blacklist /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_clear_blacklist /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +cnx_connect_next_ap /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_connect_timeout /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_connect_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +cnx_csa_fn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_csa_fn_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +cnx_get_authtype_strength /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_handshake_timeout /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_handshake_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +cnx_node_alloc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +cnx_node_is_existing /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +cnx_node_join /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +cnx_node_leave /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +cnx_node_remove /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_node_search /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +cnx_obss_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_obss_scan_done_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_obss_scan_timeout /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_rc_search /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_rc_update_age /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_rc_update_rssi /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +cnx_rc_update_state_metric /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_remove_all_rc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +cnx_remove_from_blacklist /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_remove_rc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_remove_rc_except /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_sta_associated /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_sta_connect_cmd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +cnx_sta_connect_led_timer_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_sta_leave /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_sta_pm /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_sta_scan_cmd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +cnx_start_handoff_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_start_obss_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +cnx_stop_obss_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +cnx_update_bss /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_update_bss_more /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_validate_owe_bss /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +co_default_bdaddr /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) +co_null_bdaddr /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_hci.o) +coef_B /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ecc_p256.o) +coex_arbit_clean_overtime /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_arbit_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_arbit_delete /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_arbit_dump /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) +coex_arbit_first /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_arbit_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_arbit_insert /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_arbit_next /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_bb_reset_lock /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + esp-idf/bt/libbt.a(bt.c.obj) +coex_bb_reset_unlock /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + esp-idf/bt/libbt.a(bt.c.obj) +coex_bb_rst_mux /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) +coex_ble_lld_last_active_evt_counter_set /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) +coex_ble_lld_last_terminate_evt_wait_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) +coex_ble_lld_last_terminate_evt_wait_set /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +coex_ble_scan_abort_set /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) +coex_bt_high_prio /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +coex_bt_release /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + esp-idf/bt/libbt.a(bt.c.obj) +coex_bt_request /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + esp-idf/bt/libbt.a(bt.c.obj) +coex_core_bb_reset_lock /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_bb_reset_unlock /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_disable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_event_duration_get /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_pre_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_register_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_register_start_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_release /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_request /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_status_get /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_ts_end /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_core_ts_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +coex_disable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) +coex_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) +coex_env /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_event_duration_get /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +coex_force_wifi_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_fwm_mux /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) +coex_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) +coex_pre_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +coex_preference_set /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + esp-idf/esp_coex/libesp_coex.a(coexist.c.obj) +coex_prio_tab /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_register_bt_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + esp-idf/bt/libbt.a(bt.c.obj) +coex_register_start_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +coex_register_wifi_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) +coex_register_wifi_channel_change_callback /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + esp-idf/bt/libbt.a(bt.c.obj) +coex_schm_all_default /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_a2dp_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_a2dp_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_a2dp_wifi_default /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_a2dp_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_default_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_default_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_default_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_idle_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_idle_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_idle_wifi_default /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_idle_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_idle_bt_idle_wifi_default /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_a2dp_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_a2dp_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_a2dp_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_conn_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_conn_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_conn_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_default_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_default_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_default_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_iscan_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_iscan_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_iscan_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_sniff_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_sniff_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_sniff_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_a2dp_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_a2dp_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_a2dp_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_conn_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_conn_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_conn_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_default_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_default_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_default_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_iscan_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_iscan_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_iscan_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_sniff_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_sniff_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_sniff_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_a2dp_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_a2dp_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_a2dp_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_conn_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_conn_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_conn_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_default_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_default_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_default_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_iscan_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_iscan_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_iscan_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_sniff_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_sniff_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_sniff_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_scan_start /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) +coex_schm_ble_scan_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) +coex_schm_ble_scan_stop_interval_num_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +coex_schm_bt_a2dp_paused_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_a2dp_paused_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_a2dp_paused_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_a2dp_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_a2dp_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_a2dp_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_conn_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_conn_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_conn_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_default_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_default_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_default_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_idle_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_idle_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_idle_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_iscan_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_iscan_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_iscan_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_sniff_wifi_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_sniff_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_sniff_wifi_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_btdm_callback_v1 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +coex_schm_btdm_callback_v2 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +coex_schm_btdm_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) +coex_schm_curr_period_get /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) +coex_schm_curr_phase_get /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) +coex_schm_curr_phase_idx_get /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_curr_phase_idx_set /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_disable_flag_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) +coex_schm_env /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_get_phase_by_idx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_schm_interval_get /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) +coex_schm_interval_set /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +coex_schm_lock /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_phase_end_ts_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) +coex_schm_process /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +coex_schm_process_in_active /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +coex_schm_process_restart /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +coex_schm_register_callback /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) +coex_schm_set_afh_ch_class /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) +coex_schm_status_bit_clear /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) +coex_schm_status_bit_set /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) +coex_schm_status_get /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_unlock /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_wakeup_flag_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +coex_schm_wifi_channel_change_btdm_set_afh /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +coex_schm_wifi_channel_changed_flag_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +coex_schm_wifi_channel_changed_flag_set /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +coex_status_get /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +coex_sw_event_from_isr /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) +coex_time_diff /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_time_is_in_time /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_time_is_past /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) +coex_time_now /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_time_now_ms /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) +coex_timer_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_timer_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_timer_ts_end_alarm /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_timer_ts_end_disalarm /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_timer_ts_end_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_timer_ts_start_alarm /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_timer_ts_start_disalarm /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_timer_ts_start_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_ts_end_timer_dislarmed /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_ts_start_timer_dislarmed /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_unforce_wifi_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +coex_update_lpclk_interval /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) +coex_version_get /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + esp-idf/esp_coex/libesp_coex.a(coexist.c.obj) +coex_wifi_channel_change_btdm_callback /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +coex_wifi_channel_get /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + esp-idf/bt/libbt.a(bt.c.obj) +coex_wifi_channel_set /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +coex_wifi_register_update_lpclk_callback /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) +coex_wifi_release /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +coex_wifi_request /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +coexist_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) +comeback_token_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) +config_bt_util_buf_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_bt_util_sp_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_sp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_co_utils_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(co_utils.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_dbg_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_ea_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +config_get_wifi_ampdu_rx_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +config_get_wifi_ampdu_tx_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +config_get_wifi_amsdu_tx_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +config_get_wifi_beacon_max_len /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) +config_get_wifi_cache_tx_buffer_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +config_get_wifi_coexist_task_stack_size /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +config_get_wifi_csi_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +config_get_wifi_dynamic_rx_buffer_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +config_get_wifi_dynamic_tx_buffer_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +config_get_wifi_espnow_max_encrypt_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +config_get_wifi_feature_capabilities /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +config_get_wifi_mgmt_sbuf_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +config_get_wifi_nvs_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +config_get_wifi_pm_task_stack_size /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +config_get_wifi_rx_baw /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +config_get_wifi_sta_disconnected_pm /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +config_get_wifi_static_rx_buffer_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +config_get_wifi_static_tx_buffer_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +config_get_wifi_task_core_id /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +config_get_wifi_task_stack_size /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +config_get_wifi_timer_task_stack_size /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +config_get_wifi_tx_buffer_type /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +config_get_wifi_wpa2_task_stack_size /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +config_get_wifi_wps_task_stack_size /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +config_hci_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_hci_msg_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_msg.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_hci_tl_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_is_cache_tx_buf_enabled /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +config_ke_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_ke_msg_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_msg.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_ke_task_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_lc_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_lc_lmppdu_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_lmppdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_lc_sco_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sco.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_lc_sniff_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sniff.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_lc_task_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_ld_acl_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_ld_fm_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_ld_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_ld_pscan_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_pscan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_ld_sched_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sched.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_ld_sscan_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sscan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_llc_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_llc_hci_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_llc_llcp_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_llc_task_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_llc_util_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_util.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_lld_evt_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_lld_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_lld_pdu_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_lld_util_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_util.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_llm_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_llm_hci_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_llm_task_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_llm_util_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_lm_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_lm_task_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_nvds_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_rf2_espressif_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_rwble_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_rwbt_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +config_rwip_funcs_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) +connect_scan_flag /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +correct_rfpll_offset /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +country_info_24ghz /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) +crc32_le /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) +current_task_is_wifi_task /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +custom_prov_data_handler esp-idf/main/libmain.a(app_main.c.obj) +dac_out /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +dac_pad_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +dbg_assert_block /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +dbg_cnt_lmac_drop /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +dbg_default_handler_2 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg.o) +dbg_default_state /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg_task.o) +dbg_ebuf_loc_show /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_his_lmac_eb_show /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_his_lmac_event_show /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_his_lmac_int_show /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_his_lmac_rx_show /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_his_lmac_tx_show /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_hmac_rxtx_statis_dump /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) +dbg_hmac_statis_dump /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +dbg_lmac_diag_statis_dump /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_lmac_get_acs /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +dbg_lmac_hw_statis_dump /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_lmac_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +dbg_lmac_ps_statis_dump /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_lmac_ps_statis_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +dbg_lmac_rxtx_statis_dump /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_lmac_statis_dump /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +dbg_perf_path_set /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_perf_path_show /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_perf_throughput_cal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_rx_all_count /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +dbg_rx_bcn_count /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +dbg_state /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg.o) +default_router_list esp-idf/lwip/liblwip.a(nd6.c.obj) +destination_cache esp-idf/lwip/liblwip.a(nd6.c.obj) +dh_derive_shared esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) +dh_groups_get esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +dh_init esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) +dhcp_append_extra_opts esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_arp_reply esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) +dhcp_cleanup esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcp_coarse_tmr esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +dhcp_fine_timeout_cb esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_fine_tmr esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_inform esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_network_changed esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +dhcp_parse_extra_opts esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_release esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcp_release_and_stop esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_renew esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_rx_options_given esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_rx_options_val esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_search_ip_on_mac esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcp_set_struct esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcp_start esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcp_stop esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcp_supplied_address esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcps_delete esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_dns_getserver esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_dns_setserver esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_new esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_option_info esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_pbuf_alloc esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +dhcps_set_new_lease_cb esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_set_option_info esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_start esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_stop esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +disable_wifi_agc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +discnx_reason_id2str /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +div /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) +dns_clear_cache esp-idf/lwip/liblwip.a(dns.c.obj) +dns_gethostbyname esp-idf/lwip/liblwip.a(dns.c.obj) +dns_gethostbyname_addrtype esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +dns_getserver esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dns_init esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +dns_mquery_v4group esp-idf/lwip/liblwip.a(dns.c.obj) +dns_mquery_v6group esp-idf/lwip/liblwip.a(dns.c.obj) +dns_setserver esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/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/djordje/Data/Documents/Espressif/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) +dup_binstr esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +dutytype2str /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +eTaskGetState esp-idf/freertos/libfreertos.a(tasks.c.obj) +ea_conflict_check /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) +ea_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) +ea_get_current_elt /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +ea_prog_timer /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) +ea_prog_timestamp_latest /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +eb_txdesc_space /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +ecc_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ecc_p256.o) +ecc_point_multiplication_uint8_256 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ecc_p256.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_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) +eif_api /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +eloop_cancel_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +eloop_cancel_timeout_one esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) +eloop_deplete_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) +eloop_destroy esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +eloop_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +eloop_is_timeout_registered esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) +eloop_register_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +eloop_replenish_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) +eloop_run esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) +em_buf_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) +emul_timeout /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +enable_wifi_agc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +environ /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +err_to_errno esp-idf/lwip/liblwip.a(err.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +esf_buf_alloc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +esf_buf_alloc_default_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +esf_buf_alloc_dynamic /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +esf_buf_alloc_dynamic_default_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +esf_buf_free_static /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +esf_buf_recycle /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +esf_buf_recycle_default_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +esf_buf_setdown /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +esf_buf_setup /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +esf_buf_setup_for_mesh /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +esf_buf_setup_static /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +esf_buf_statis_dump /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/djordje/Data/Documents/Espressif/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-idf/protocomm/libprotocomm.a(security1.c.obj) +esp_aes_crypt_ecb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.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(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.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-idf/protocomm/libprotocomm.a(security2.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-idf/protocomm/libprotocomm.a(security2.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-idf/protocomm/libprotocomm.a(security2.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-idf/protocomm/libprotocomm.a(security2.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-idf/protocomm/libprotocomm.a(security2.c.obj) +esp_aes_gcm_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +esp_aes_gcm_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +esp_aes_gcm_update_ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +esp_aes_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) +esp_aes_release_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +esp_aes_setkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.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_ble_adv_aa_setting /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) +esp_ble_clear_rand_addr /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +esp_ble_dis_privacy_err_report /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +esp_ble_disable_adv_delay /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +esp_ble_enable_scan_continue /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +esp_ble_enable_scan_forever /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +esp_ble_qa_get_adv_txed_cnt /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +esp_ble_qa_get_scan_rxed_cnt /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +esp_ble_qa_set_scan_perfer_addr /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +esp_ble_qa_test_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +esp_ble_scan_aa_setting /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) +esp_ble_scan_channel_setting /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) +esp_ble_scan_dupilcate_list_flush esp-idf/bt/libbt.a(bt.c.obj) +esp_ble_switch_phy_coded /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +esp_ble_tx_power_get esp-idf/bt/libbt.a(bt.c.obj) +esp_ble_tx_power_set esp-idf/bt/libbt.a(bt.c.obj) +esp_bredr_sco_datapath_set esp-idf/bt/libbt.a(bt.c.obj) +esp_bredr_tx_power_get esp-idf/bt/libbt.a(bt.c.obj) +esp_bredr_tx_power_set esp-idf/bt/libbt.a(bt.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_bt_controller_deinit esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/bt/libbt.a(nimble_port.c.obj) +esp_bt_controller_disable esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/bt/libbt.a(nimble_port.c.obj) +esp_bt_controller_enable esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/bt/libbt.a(nimble_port.c.obj) +esp_bt_controller_get_status esp-idf/bt/libbt.a(bt.c.obj) +esp_bt_controller_init esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/bt/libbt.a(nimble_port.c.obj) +esp_bt_controller_mem_release esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/bt/libbt.a(nimble_port.c.obj) +esp_bt_controller_set_log_level /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(btdm_log.o) +esp_bt_controller_shutdown /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + esp-idf/bt/libbt.a(bt.c.obj) +esp_bt_mem_release esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) +esp_bt_sleep_disable esp-idf/bt/libbt.a(bt.c.obj) +esp_bt_sleep_enable esp-idf/bt/libbt.a(bt.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(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + esp-idf/esp_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_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_clk_slowclk_cal_set esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +esp_clk_tree_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_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_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-idf/bt/libbt.a(bt.c.obj) +esp_coex_adapter_funcs_md5_check /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) +esp_coex_adapter_register /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + esp-idf/esp_system/libesp_system.a(startup.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_coex_i154_funcs_md5_check /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) +esp_coex_preference_set esp-idf/esp_coex/libesp_coex.a(coexist.c.obj) +esp_coex_status_bit_clear /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) +esp_coex_status_bit_set /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) +esp_coex_version_get esp-idf/esp_coex/libesp_coex.a(coexist.c.obj) + esp-idf/bt/libbt.a(bt.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/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(cpu.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_cpu_reset esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) +esp_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/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +esp_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_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-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_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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.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/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/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/bt/libbt.a(hli_api.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(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_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/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_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-idf/wifi_provisioning/libwifi_provisioning.a(manager.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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/main/libmain.a(app_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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.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(app_main.c.obj) +esp_event_loop_delete esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_loop_delete_default esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_loop_run esp-idf/esp_event/libesp_event.a(esp_event.c.obj) +esp_event_post esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.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-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.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/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_flash_encryption_init_checks esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_flash_encryption_set_release_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_flash_erase_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_erase_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_flash_get_chip_write_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_io_mode esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_physical_size esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_protectable_regions esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_protected_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_size esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_init esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_init_default_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_flash_init_main esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_init_main_bus_lock esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +esp_flash_init_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_noos_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_read esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_flash_read_chip_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_read_encrypted esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_flash_read_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_read_unique_chip_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_registered_chips esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_set_chip_write_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_set_io_mode esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_set_protected_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_suspend_cmd_init esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_write esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_flash_write_encrypted esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_flash_write_protect_crypt_cnt esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_get_ble_isr_err_counter /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) +esp_get_bt_isr_err_counter /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) +esp_get_deep_sleep_wake_stub esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_get_flash_encryption_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_get_free_heap_size esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_get_free_internal_heap_size esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_get_idf_version esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +esp_get_minimum_free_heap_size esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +esp_get_random esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) +esp_gpio_is_pin_reserved esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.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_handle_beacon_probe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.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(gpio.c.obj) + esp-idf/bt/libbt.a(hli_api.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(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) +esp_intr_dump esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_enable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_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(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) +esp_intr_free esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/bt/libbt.a(hli_api.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-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) +esp_ipc_call esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/bt/libbt.a(bt.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/bt/libbt.a(bt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_ipc_func esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) +esp_ipc_func_arg esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) +esp_ipc_isr_asm_call esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_ipc_isr_asm_call_blocking esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_ipc_isr_end_fl esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) +esp_ipc_isr_handler esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +esp_ipc_isr_init esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +esp_ipc_isr_release_other_cpu esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_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/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_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/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.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/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(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(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(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/driver/libdriver.a(touch_sensor_common.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(lib_printf.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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(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_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.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(mac_addr.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/esp_mm/libesp_mm.a(esp_mmu_map.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(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.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/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(nimble_port.c.obj) + esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) + esp-idf/protocomm/libprotocomm.a(security0.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/main/libmain.a(app_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/newlib/libnewlib.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(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.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/driver/libdriver.a(touch_sensor_common.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(lib_printf.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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(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_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.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(mac_addr.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.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(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.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/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(nimble_port.c.obj) + esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + esp-idf/bt/libbt.a(ble_hs_misc.c.obj) + esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_hs_startup.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) + esp-idf/protocomm/libprotocomm.a(security0.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/newlib/libnewlib.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(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(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_log_writev esp-idf/log/liblog.a(log.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_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_mbo_update_non_pref_chan esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +esp_md5_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +esp_md5_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +esp_md5_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +esp_md5_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +esp_md5_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) +esp_md5_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +esp_md5_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +esp_mesh_add_conflict_root /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_allow_root_conflicts /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_ap_enqueue /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_clear /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_clear_expire /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_clear_invalid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) +esp_mesh_ap_list_find /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_find_expire /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_find_invalid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_update_invalid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_appie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_available_txupQ_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_best_effort_tx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_channel_enable_jp /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_check_multi_redundant_ack /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_check_nonassociated_children /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_check_vnd_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_clear_parent /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_clear_parent_candidate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_combine_multi_redundant_ack /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_compute_my_votes /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_compute_votes /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_conn_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_conn_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_connect /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_copy_mgmt_announce /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_create_context /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_create_mbox /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_decrypt_vnd_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_delete_group_addr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_delete_group_id /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_delete_sub_children /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_delivery_toDS /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_delivery_toSelf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_disable_ps /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_discard_context /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_disconnect /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_enable_ps /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_encrypt_vnd_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_find_conflict_root /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_fix_root /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_flush_scan_result /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +esp_mesh_flush_tcpip_queue /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_flush_upstream_packets /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_force_txupQ_pending /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_forward_check_active /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_forward_packet /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_free_context /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_free_mbox /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_active_duty_cycle /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_announce_interval /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_ap_assoc_expire /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_get_ap_authmode /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_ap_connections /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_attempts /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_beacon_interval /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_capacity_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_child_idx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_get_child_idx_lock /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_get_child_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_get_config /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_conflict_root_state /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_get_group_list /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_group_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_id /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_ie_crypto_key /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_layer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_max_layer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_network_duty_cycle /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_non_mesh_connections /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_optlen /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_get_parent_bssid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_get_parent_candidate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_get_parent_monitor_config /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_get_passive_scan_time /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_root_addr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_root_healing_delay /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_router /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_router_bssid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_get_routing_table /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_get_routing_table_size /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_get_rssi_threshold /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_rssi_threshold_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_running_active_duty_cycle /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +esp_mesh_get_rx_pending /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_self_organized /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_storage /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_sub_capacity /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_get_subnet_nodes_list /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_subnet_nodes_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_switch_parent_paras /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_topology /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_total_children_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_get_total_node_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_tsf_time /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +esp_mesh_get_tx_pending /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_get_type /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_vnd_ext_assoc_len /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_get_vnd_roots_len /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_get_vnd_ssid_len /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_get_vote_percentage /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_xon_qsize /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_ie_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_ie_monitor /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ie_update_capacity /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ie_update_rssi /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_insert_child /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_insert_group_addr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_io_sem_signal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_io_sem_wait /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_is_device_active /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_is_my_group /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_is_my_ie_encrypted /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_is_nwk_inited /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_is_nwk_running /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_is_ps_enabled /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_is_root /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_is_root_conflicts_allowed /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_is_root_fixed /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_is_roots_found /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_is_rt_change_debug /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_is_same_router /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +esp_mesh_is_scan_allowed /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_is_start_pm_now /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_is_switch_parent /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_look_for_network /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_lookup_route /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_lookup_sub_route /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_map_change_beacon_interval /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_map_deauth /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_mesh_map_probe_response /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_map_reject_connection /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_map_stop_beacon /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_match_self /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_mcast_cover_node /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_monitor_nonassociated_children /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_monitor_parent_candidate_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_monitor_parent_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_monitor_vote_candidate_rssi /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_nvs_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_nvs_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_nvs_operate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) +esp_mesh_nvs_set_assoc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_nvs_set_layer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_nwk_redundant_route /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_nwk_task_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_nwk_task_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_operation_rxseqno /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +esp_mesh_pack_multi_routing_table /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_pack_rmv_announcement /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_parent_reselect /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_parent_select /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_parse_beacon /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_parse_conflict_assoc_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_parse_conflict_roots_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_parse_ext_assoc_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_parse_ps_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_pm_go_to_sleep /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_pm_go_to_wake /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_pm_rx_beacon_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_pm_tbtt_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_pm_tx_data_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_pm_tx_null_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_post_toDS_state /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_print_route_table /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_print_rxQ_waiting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_print_scan_result /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_print_txQ_waiting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +esp_mesh_process_bcast /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_process_mcast /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_process_options /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_process_ps_awake /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_process_ps_type /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_process_redundant_subchildren /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_process_txupQ_pending /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_process_ucast /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_ps_control_check_awake /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_ps_duty /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_ps_duty_cycle_get_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_ps_duty_cycle_set_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_ps_duty_ext_get_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_ps_duty_signaling /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_ps_get_duties /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_ps_get_ext_duty /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_push_to_ack_state_queue /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_push_to_myself_queue /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_push_to_nwk_queue /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_push_to_ps_tx_queue /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_push_to_rx_queue /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +esp_mesh_push_to_tcpip_queue /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_push_to_tx_queue /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_push_to_wnd_queue /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_push_to_xmit_state_queue /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_quick_funcs /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_quick_funcs_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_quick_funcs_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_recv /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_recv_release /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_recv_toDS /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_recv_xon /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +esp_mesh_refresh_routing_table /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_remove_child /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_remove_children /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_remove_conflict_root /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_remove_nonassociated_children /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_revote_root /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_root_process_duty_duration_expire /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_route_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_route_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_rt_change_debug /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_rx_task_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_rx_task_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_scan_done /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_scan_done_get_channel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_scan_done_vote /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_scan_get_ap_ie_len /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_scan_get_ap_record /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_send /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_send_add_announcement /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_send_block_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_send_block_event /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_send_block_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_send_block_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_send_block_time /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_send_mgmt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_send_rmv_announcement /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_send_root_switch /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_send_rtable_ack /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_send_rtable_request /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_send_sem_signal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_send_sem_wait /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_send_stop_vote /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_send_xon /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_set_6m_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +esp_mesh_set_active_duty_cycle /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_announce_interval /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ap_assoc_expire /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_set_ap_authmode /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ap_connections /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ap_password /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_attempts /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_beacon_interval /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_capacity_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_config /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_group_id /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_id /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_ie_crypto_funcs /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ie_crypto_funcs_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ie_crypto_key /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ie_crypto_key_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_max_layer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_network_duty_cycle /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_network_duty_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_set_non_mesh_connections /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_parent /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_parent_candidate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_parent_candidate_config /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_parent_monitor_config /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_passive_scan_time /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_root_healing_delay /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_router /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_router_bssid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_set_rssi_threshold /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_rssi_threshold_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_self_organized /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_switch_parent_paras /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_topology /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_type /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_vote_percentage /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_xon_qsize /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_sta_connect /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_sta_disassoc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_sta_disconnect /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_sta_monitor_rssi /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_stop_parent_reconnection /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_switch_channel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_switch_channel_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_sync_interface_tsf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +esp_mesh_tx_task_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_tx_task_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_tx_tid_flush /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_txupQ_pending /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_txupQ_pending_clear_xonseq /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_txupQ_pending_delete_child /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_txupQ_pending_get_cidx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_txupQ_pending_get_xonseq /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_txupQ_pending_insert_child /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_update_conflict_root /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_waive_root /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_wifi_recv_cb /home/djordje/Data/Documents/Espressif/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_a_add_b_mod_c esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) +esp_mpi_a_exp_b_mod_c esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) +esp_mpi_a_mul_b_mod_c esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) +esp_mpi_ctx_free esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) +esp_mpi_ctx_new esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.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_free esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) +esp_mpi_get_rand esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.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_mpi_new esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) +esp_mpi_new_from_bin esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) +esp_mpi_new_from_hex esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) +esp_mpi_sizeof esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) +esp_mpi_to_bin esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_nan_internal_datapath_req /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_nan_internal_datapath_resp /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_nan_internal_publish_service /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_nan_internal_send_followup /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_nan_internal_subscribe_service /home/djordje/Data/Documents/Espressif/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 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_attach esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_attach_wifi_ap esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_attach_wifi_station esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_create_default_wifi_ap esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_create_default_wifi_mesh_netifs esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_create_default_wifi_sta esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +esp_netif_create_ip6_linklocal esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_create_wifi esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_deinit esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_destroy esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_destroy_default_wifi esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_dhcpc_get_status esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_dhcpc_option esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcpc_option_api esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcpc_start esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_dhcpc_stop esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_dhcps_get_clients_by_mac esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcps_get_status esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcps_option esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcps_option_api esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcps_start esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcps_stop esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_down esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_free_rx_buffer esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) +esp_netif_get_all_ip6 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_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_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.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-idf/wifi_provisioning/libwifi_provisioning.a(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(app_main.c.obj) +esp_netif_ip6_get_addr_type esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_is_netif_listed esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_is_netif_up esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_is_valid_static_ip esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_join_ip6_multicast_group esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_leave_ip6_multicast_group esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_list_lock esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_list_unlock esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_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_receive esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_remove_from_list esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_remove_ip6_address esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_set_default_netif esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_dns_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_driver_config esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_set_hostname esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_ip4_addr esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_ip_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_link_speed esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_mac esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_set_mac_api esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_old_ip_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_start esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_stop esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_str_to_ip4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_str_to_ip6 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_tcpip_exec esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_transmit esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) +esp_netif_transmit_wrap esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) +esp_netif_up esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_newlib_init esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_newlib_locks_init esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +esp_newlib_time_init esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_nimble_deinit esp-idf/bt/libbt.a(nimble_port.c.obj) +esp_nimble_disable esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) +esp_nimble_enable esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) +esp_nimble_hci_deinit esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + esp-idf/bt/libbt.a(nimble_port.c.obj) +esp_nimble_hci_init esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + esp-idf/bt/libbt.a(nimble_port.c.obj) +esp_nimble_init esp-idf/bt/libbt.a(nimble_port.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_partition_find_first esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +esp_partition_get esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_get_sha256 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_partition_iterator_release esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_main_flash_region_safe esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +esp_partition_mmap esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_munmap esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_next esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_read esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_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_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/djordje/Data/Documents/Espressif/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-idf/bt/libbt.a(bt.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-idf/bt/libbt.a(bt.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-idf/bt/libbt.a(bt.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-idf/bt/libbt.a(bt.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-idf/bt/libbt.a(bt.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_qrcode_generate esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +esp_qrcode_print_console esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + esp-idf/main/libmain.a(app_main.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-idf/bt/libbt.a(bt.c.obj) +esp_read_mac esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/bt/libbt.a(bt.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-idf/esp_system/libesp_system.a(startup.c.obj) +esp_register_freertos_idle_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_register_freertos_idle_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_register_freertos_tick_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_register_freertos_tick_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) +esp_register_shutdown_handler esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/bt/libbt.a(bt.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(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +esp_restart_noos_dig esp-idf/esp_system/libesp_system.a(esp_system_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/wpa_supplicant/libwpa_supplicant.a(wpa.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/bt/libbt.a(bt.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/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.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(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/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.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/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/bt/libbt.a(hli_api.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/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(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(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_set_cpu_ticks_per_us esp-idf/esp_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(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_set_clock_baudrate 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_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_scan_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +esp_scan_init esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.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_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_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_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_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_srp_exchange_proofs esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.c.obj) +esp_srp_free esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.c.obj) +esp_srp_get_session_key esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.c.obj) +esp_srp_init esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.c.obj) +esp_srp_set_salt_verifier esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.c.obj) +esp_srp_srv_pubkey esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) +esp_srp_srv_pubkey_from_salt_verifier esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.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_handle_scan_done_evt esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.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_reconfigure esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_reset esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_reset_user esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_restart esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_status esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_stop esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_time_impl_get_boot_time esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +esp_time_impl_get_time esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +esp_time_impl_get_time_since_boot esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +esp_time_impl_init esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +esp_time_impl_set_boot_time esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +esp_timer_create esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +esp_timer_deinit esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_delete esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.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-idf/bt/libbt.a(npl_os_freertos.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_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.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-idf/bt/libbt.a(npl_os_freertos.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-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +esp_timer_start_periodic esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +esp_timer_stop esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +esp_tx_state_out /home/djordje/Data/Documents/Espressif/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-idf/bt/libbt.a(bt.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_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_vhci_host_check_send_available esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) +esp_vhci_host_register_callback esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) +esp_vhci_host_send_packet esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) +esp_wake_deep_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_wifi_80211_tx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +esp_wifi_action_tx_req /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_ap_deauth_internal /home/djordje/Data/Documents/Espressif/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_wifi_ap_get_max_sta_conn /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ap_get_sta_list /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_ap_is_sta_sae_reauth_node /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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-idf/bt/libbt.a(bt.c.obj) +esp_wifi_bt_power_domain_on esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) +esp_wifi_build_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_clear_ap_list /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_config_11b_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_config_80211_tx_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_config_espnow_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_connect /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +esp_wifi_connectionless_module_set_wake_interval /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +esp_wifi_deauthenticate_internal /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_disarm_sta_connection_timer_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_disconnect /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +esp_wifi_eb_tx_status_success_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_enable_sta_privacy_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_ftm_end_session /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_end_session_local /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_initiate_session /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_resp_set_offset /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_resp_set_offset_local /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_ant /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_ant_gpio /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_appie_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_get_assoc_bssid_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_get_auto_connect /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_bandwidth /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_beacon_interval /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_wifi_get_channel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_config /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +esp_wifi_get_config_channel_local /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_config_sae_pwe_h2e_internal /home/djordje/Data/Documents/Espressif/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_wifi_get_country /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_country_code /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_event_mask /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +esp_wifi_get_hostap_private_internal /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_inactive_time_local /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_key_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_get_mac /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +esp_wifi_get_macaddr_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_get_max_tx_power /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +esp_wifi_get_negotiated_bw_local /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_negotiated_channel_local /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_pmf_config_internal /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_promiscuous_ctrl_filter /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_promiscuous_filter /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_protocol /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_ps /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_get_spp_attrubute_internal /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) +esp_wifi_get_user_init_flag_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_get_wps_status_internal /home/djordje/Data/Documents/Espressif/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_wifi_get_wps_type_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_improve_contention_ability /home/djordje/Data/Documents/Espressif/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(app_main.c.obj) +esp_wifi_init_internal /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_crypto_funcs_md5_check /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_esp_wifi_he_md5_check /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_esp_wifi_md5_check /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_free_rx_buffer /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_fix_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_log /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_mib /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +esp_wifi_internal_get_negotiated_bandwidth /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_negotiated_channel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_rts /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +esp_wifi_internal_ioctl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_issue_disconnect /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +esp_wifi_internal_on_coex_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +esp_wifi_internal_osi_funcs_md5_check /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_reg_netstack_buf_cb /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_reg_rxcb /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +esp_wifi_internal_set_fix_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_set_log_level /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_set_msdu_lifetime /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +esp_wifi_internal_set_retry_counter /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +esp_wifi_internal_set_rts /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +esp_wifi_internal_set_spp_amsdu /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_set_sta_ip /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_internal_tx /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +esp_wifi_internal_tx_is_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +esp_wifi_internal_update_light_sleep_default_params /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_update_mac_time /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_wifi_type_md5_check /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ipc_internal /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +esp_wifi_is_btm_enabled_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_is_ft_enabled_internal /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_is_rm_enabled_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_mesh_reg_rxcb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +esp_wifi_mesh_tx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + 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/djordje/Data/Documents/Espressif/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_wpa2_cb_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_restart /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_restore /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +esp_wifi_scan_get_ap_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +esp_wifi_scan_get_ap_records /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +esp_wifi_scan_get_cur_ap_info /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +esp_wifi_scan_get_cur_ap_record /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +esp_wifi_scan_sort_ap_records /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_scan_sort_get_cur_ap_info /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_scan_sort_get_cur_ap_record /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_scan_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +esp_wifi_scan_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_send_deauth_local /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_send_mgmt_frm_internal /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +esp_wifi_set_ant /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_ant_gpio /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_ap_key_internal /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_set_auto_connect /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_bandwidth /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_beacon_interval /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_wifi_set_channel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_config /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +esp_wifi_set_country /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +esp_wifi_set_country_code /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_csi /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_csi_config /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_csi_rx_cb /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_event_mask /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_home_channel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_igtk_internal /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_inactive_time_local /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_keep_alive_time /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_key_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_set_mac /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_max_tx_power /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +esp_wifi_set_non_mesh_connections /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_set_promiscuous /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_promiscuous_ctrl_filter /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_promiscuous_filter /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_promiscuous_rx_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_protocol /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_ps /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_set_rssi_threshold /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_set_sleep_delay_time /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_sta_key_internal /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_storage /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +esp_wifi_set_tx_done_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_vendor_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_vendor_ie_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_wpa2_ent_state_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_set_wps_cb_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_set_wps_start_flag_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_set_wps_status_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) +esp_wifi_set_wps_type_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_skip_supp_pmkcaching /home/djordje/Data/Documents/Espressif/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_disable_sae_pk_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_sta_disable_wpa2_authmode_internal /home/djordje/Data/Documents/Espressif/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_get_aid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_aid_local /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_ap_info /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) +esp_wifi_sta_get_ap_info_prof_pmk_internal /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_negotiated_phymode_local /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_pairwise_cipher_internal /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_sta_get_prof_ssid_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 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/djordje/Data/Documents/Espressif/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_rssi /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_sae_identifier_internal /home/djordje/Data/Documents/Espressif/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_get_use_h2e_internal /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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_pmf_enabled /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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_send_mgmt_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_sta_set_reset_param_internal /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_sta_wpa2_ent_enable_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +esp_wifi_statis_dump /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_stop /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_unregister_wpa3_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_unregister_wpa_cb_internal /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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_common.c.obj) +esp_wifi_vnd_lora_disable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +esp_wifi_vnd_lora_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +esp_wifi_vnd_mesh_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_vnd_mesh_get /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_vnd_mesh_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_vnd_mesh_set /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_vnd_roots_get /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_vnd_roots_set /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_wpa_ptk_init_done_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +esp_wnm_send_bss_transition_mgmt_query esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +esp_wpa3_free_sae_data esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +etharp_cleanup_netif esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +etharp_find_addr esp-idf/lwip/liblwip.a(etharp.c.obj) +etharp_get_entry esp-idf/lwip/liblwip.a(etharp.c.obj) +etharp_input esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) +etharp_output esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) +etharp_query esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +etharp_request esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.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_printf /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(osi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sco.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(btdm_log.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + esp-idf/bt/libbt.a(npl_os_freertos.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) +event_empty /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +fclose /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +fcntl esp-idf/newlib/libnewlib.a(syscalls.c.obj) +fe_reg_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ferror /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +fflush /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) +fgets /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +floor /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a(lib_a-s_floor.o) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) +fopen /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +force_bt_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +force_bttx_gain /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +force_txrxoff /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +force_wifi_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) +force_wifi_mode_on /home/djordje/Data/Documents/Espressif/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(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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + 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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + 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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +fread /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +free esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.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_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/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(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/esp_phy/libesp_phy.a(phy_init.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/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) + esp-idf/protocomm/libprotocomm.a(security0.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + esp-idf/bt/libbt.a(hli_api.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.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_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +free_bss_info /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +freq_i2c_addr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +frexp /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +fseek /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +fseeko /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) +fsync esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) +ftell /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +ftello /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) +ftruncate esp-idf/vfs/libvfs.a(vfs.c.obj) +fwrite /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/esp_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) +gChmCxt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +gNanSm /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +gScanStruct /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/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_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +g_allowed_groups esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +g_beacon_eb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) +g_beacon_idx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) +g_bt_plf_log_level /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(btdm_log.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(osi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sco.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +g_chm /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +g_cnxMgr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +g_cnx_probe_rc_list_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +g_coa_funcs_p /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_scheme.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +g_coex_adapter_funcs esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +g_coex_adapter_funcs_md5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) +g_coex_i154_funcs_md5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) +g_coex_param /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_core.o) +g_coex_swisr_queue /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +g_def_2g_channels /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +g_dynamic_cs /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +g_eb_list_desc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +g_esp_wifi_he_md5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_esp_wifi_md5 /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +g_ic /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_intr_lock_mux /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_is_mesh_started /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +g_is_root_fixed /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +g_is_standalone_sta /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +g_is_wifi_connected /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_is_wifi_connecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_is_wifi_disconnecting /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_lmac_cnt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +g_log_level /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_log_mod /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_mac_deinit_count /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +g_mac_deinit_rxing /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +g_mac_deinit_txing /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +g_mac_sleep_en /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +g_mesh_ann_interval /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_cfg_attemps /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_cfg_switch_parent /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +g_mesh_cfg_vote_percent /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_chain /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_conn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +g_mesh_current_parent /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_mesh_dfs_compensation_ms /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +g_mesh_ext_cfg /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +g_mesh_ext_vote_state /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_mesh_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +g_mesh_init_ps_type /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +g_mesh_is_root /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_mesh_is_started /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +g_mesh_manual_nwk /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +g_mesh_max_layer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +g_mesh_monitor_parent_beacon_count /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_mesh_nvs_settings /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_packet_lifetime /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +g_mesh_passive_scan_time /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_rmv_opt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +g_mesh_root_conflicts_allowed /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_mesh_root_healing_delay /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_rt_capacity /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +g_mesh_self_map_addr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_self_organized /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +g_mesh_self_sta_addr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +g_mesh_stop_event_group /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_stop_reconnection /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_mesh_topology /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_mesh_xon_cfg_qsize /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +g_misc_nvs /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/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_msys_pool_list esp-idf/bt/libbt.a(os_mbuf.c.obj) +g_os_mempool_list esp-idf/bt/libbt.a(os_mempool.c.obj) +g_osi_funcs_p /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.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_pd_mac_in_light_sleep /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +g_phyFuns /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +g_pm /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +g_pm_cfg /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +g_pm_cnt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +g_pp_timer_info /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +g_pp_tx_pkt_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +g_qa_test_config /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.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_rw_controller_task_handle /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +g_rw_init_sem /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +g_rw_schd_queue /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +g_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +g_scan_forever /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +g_sleep_exception /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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_waking_sleeping_sem /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +g_wdev_csi_rx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +g_wdev_csi_rx_ctx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +g_wdev_last_desc_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +g_wdev_nan_is_in_dw_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +g_wifi_crypto_funcs_md5 /home/djordje/Data/Documents/Espressif/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) +g_wifi_default_wpa_crypto_funcs esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +g_wifi_event_mask /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +g_wifi_feature_caps esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +g_wifi_global_lock /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_wifi_he_type_md5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_wifi_improve_contention_ability /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_wifi_mac_time_delta /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +g_wifi_menuconfig /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +g_wifi_nvs /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/djordje/Data/Documents/Espressif/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(app_main.c.obj) +g_wifi_osi_funcs_md5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_wifi_supplicant_funcs_md5 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +g_wifi_type_md5 /home/djordje/Data/Documents/Espressif/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_supp esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +gatt_svr_init esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +gatt_svr_register_cb esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +get_bbgain_db /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +get_be16 esp-idf/bt/libbt.a(endian.c.obj) +get_be24 esp-idf/bt/libbt.a(endian.c.obj) +get_be32 esp-idf/bt/libbt.a(endian.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) +get_be64 esp-idf/bt/libbt.a(endian.c.obj) +get_chan_pwr_index /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +get_i2c_read_mask /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +get_i2c_write_data /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +get_iav_key /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) +get_le16 esp-idf/bt/libbt.a(endian.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_uuid.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +get_le24 esp-idf/bt/libbt.a(endian.c.obj) +get_le32 esp-idf/bt/libbt.a(endian.c.obj) + esp-idf/bt/libbt.a(ble_uuid.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) +get_le64 esp-idf/bt/libbt.a(endian.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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +get_phy_version_str /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +get_rate_target_power /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +get_rf_freq_cap /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +get_rf_freq_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +get_target_power_offset /home/djordje/Data/Documents/Espressif/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_total_scan_time /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +get_vdd33 /home/djordje/Data/Documents/Espressif/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_ctrl_handlers esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +get_wifi_internal_state /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +get_wifi_prov_handlers esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +get_wifi_scan_handlers esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +gettimeofday /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +global_hapd esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +gmtime /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +gmtime_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_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_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) +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) +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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_agreement_clr_rx_ba /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_agreement_del_rx_ba /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_attenna_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +hal_ba_session_restore /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_ba_session_store /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_crypto_clr_key_entry /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_crypto_disable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_crypto_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +hal_crypto_get_key_entry /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_crypto_get_using_key_idx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) +hal_crypto_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +hal_crypto_is_key_valid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_crypto_mgmt_rx_enabled /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_crypto_set_key_entry /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_disable_mac /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_disable_nan_tsf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +hal_disable_sta_tsf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +hal_enable_mac /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_enable_nan_tsf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +hal_enable_sta_tsf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +hal_get_tsf_time /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +hal_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_mac_clr_bssid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +hal_mac_clr_txq_state /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_mac_disable_low_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_enable_low_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_get_txq_pmd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_get_txq_state /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_mac_interrupt_clr_event /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_interrupt_clr_watchdog /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_interrupt_get_event /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_is_low_rate_enabled /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +hal_mac_is_txq_enabled /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_rate_autoack_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +hal_mac_rx_disable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +hal_mac_rx_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +hal_mac_rx_get_end_info /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_rx_get_end_state /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_rx_get_last_dscr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_rx_is_dscr_reload /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_rx_read_rxdscrlast /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_rx_read_rxdscrnext /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_rx_set_base /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_rx_set_dscr_reload /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_rx_set_policy /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_mac_set_addr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_mac_set_bssid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_mac_set_csi /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_mac_set_rxq_policy /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_mac_set_txq_invalid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_tsf_get_time /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +hal_mac_tsf_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +hal_mac_tsf_set_time /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +hal_mac_tx_config_edca /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_tx_config_timeout /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_tx_get_blockack /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_tx_is_cbw40 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_tx_set_cca /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_tx_set_ppdu /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_txq_disable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_txq_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_now /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +hal_random /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_rx_disable_bssid_check /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_rx_enable_bssid_check /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_sniffer_disable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_sniffer_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_sniffer_rx_clr_statistics /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_sniffer_rx_set_promis /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hall_sens_amp_read /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +hall_sens_amp_read_full /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +hall_sens_read /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +hall_sens_read_full /home/djordje/Data/Documents/Espressif/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) +hci_bt_acl_bdaddr_registered /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) +hci_cmd_desc_tab_stat_par_esp /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_msg.o) +hci_cmd_desc_tab_vs_esp /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_msg.o) +hci_create_con_cancel_cmd_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +hci_create_con_cancel_cmd_handler_lm /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) +hci_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) +hci_evt_le_desc_tab_esp /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_msg.o) +hci_fc_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) +hci_host_nb_cmp_pkts_cmd_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) +hci_le_rd_rem_used_feats_cmd_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) +hci_look_for_le_evt_desc_esp /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_msg.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) +hci_rd_clk_cmd_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) +hci_rd_rem_ext_feats_cmd_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +hci_refresh_enc_key_cmd_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +hci_set_afh_host_ch_class_cmd_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) +hci_sniff_mode_cmd_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +hci_tl_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) +hci_tl_inc_nb_h2c_cmd_pkts /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg_task.o) +hci_tl_tx_trigger_on_acl_fc /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg_task.o) +hci_user_cfm_req_reply_cmd_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +hci_user_passkey_req_reply_cmd_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +hci_wr_scan_en_cmd_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) +heap_caps_add_region esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) +heap_caps_add_region_with_caps esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_aligned_alloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) +heap_caps_aligned_calloc esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_aligned_free esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_calloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/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/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +heap_caps_calloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_check_add_region_allowed esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_check_integrity esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_check_integrity_addr esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_check_integrity_all esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_dump esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_dump_all esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_enable_nonos_stack_heaps esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +heap_caps_free esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + esp-idf/bt/libbt.a(bt_osi_mem.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.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/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/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/bt/libbt.a(bt_osi_mem.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/bt/libbt.a(hli_api.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.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_default esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) +heap_caps_malloc_extmem_enable esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_malloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_match esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_print_heap_info esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_realloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +heap_caps_realloc_default esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) +heap_caps_realloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_register_failed_alloc_callback esp-idf/heap/libheap.a(heap_caps.c.obj) +hex2byte esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +hexstr2bin esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +hli_c_handler esp-idf/bt/libbt.a(hli_api.c.obj) + esp-idf/bt/libbt.a(hli_vectors.S.obj) +hli_customer_queue_create esp-idf/bt/libbt.a(hli_api.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) +hli_intr_disable esp-idf/bt/libbt.a(hli_api.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) +hli_intr_register esp-idf/bt/libbt.a(hli_api.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) +hli_intr_restore esp-idf/bt/libbt.a(hli_api.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) +hli_queue_create esp-idf/bt/libbt.a(hli_api.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) +hli_queue_delete esp-idf/bt/libbt.a(hli_api.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) +hli_queue_get esp-idf/bt/libbt.a(hli_api.c.obj) +hli_queue_put esp-idf/bt/libbt.a(hli_api.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) +hli_queue_setup esp-idf/bt/libbt.a(hli_api.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) +hli_queue_shutdown esp-idf/bt/libbt.a(hli_api.c.obj) +hli_semaphore_create esp-idf/bt/libbt.a(hli_api.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) +hli_semaphore_give esp-idf/bt/libbt.a(hli_api.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) +hmac_md5 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 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(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(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +hmac_sha256 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 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(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) +host_ch_class /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) +hostap_auth_open /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +hostap_deliver_data /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +hostap_handle_timer_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +hostap_recv_ctl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +hostap_recv_mgmt /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +huart_flow_off /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) +huart_flow_on /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) +huart_read /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) +huart_write /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) +hw_critical_state_status esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +hwaddr_aton2 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +i2c_bbpll_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +i2c_bbtop_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +i2c_bias_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +i2c_bt_filter_set /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +i2c_master_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +i2c_rfpll_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +i2c_rftx_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +i2c_write_master /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +i2c_xtal_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +i2cmst_reg_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +ic_add_rx_ba /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ic_ampdu_op /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ic_bb_check_noise_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_beacon_monitor_configure /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_connectionless_module_set_wake_interval /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_create_wifi_task /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_csi_set_config /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_del_key /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_del_key_all /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_del_rx_ba /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ic_delete_wifi_task /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_disable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_disable_crypto /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_disable_rx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_disable_sniffer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_ebuf_alloc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) +ic_ebuf_recycle_rx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ic_ebuf_recycle_tx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_enable_rx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_enable_sniffer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_get_80211_tx_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ic_get_G6M_sched /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +ic_get_addr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ic_get_default_sched /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ic_get_espnow_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ic_get_fix_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_get_key /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_get_next_tbtt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_get_pp_hdl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_get_promis_ctrl_filter /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_get_promis_filter /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_get_ptk_alg /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ic_get_random /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +ic_get_rssi /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_get_trc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ic_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_interface_enabled /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_is_mgmt_hwdecr_enabled /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_is_pure_sta /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_mac_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_mac_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_obtain_key /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ic_pp_post /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_register_config_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_register_csi_rx_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_register_ftm_callbacks /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_register_michael_mic_failure_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ic_register_nan_callbacks /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +ic_register_net80211_tx_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ic_register_pm_tx_null_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_register_pp_tx_done_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_register_promis_rx_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_register_rx_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ic_register_timer_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_register_timer_post_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_register_tx_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ic_reset_rx_ba /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ic_reset_tbtt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_rx_disable_bssid_check /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_rx_enable_bssid_check /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_set_80211_tx_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_set_ac_param /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) +ic_set_bar_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_set_beacon_int /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_set_bssid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_set_csi /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_set_current_channel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +ic_set_espnow_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_set_fix_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_set_interface /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ic_set_keep_alive_time /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_set_key /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_set_mac /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_set_promis_ctrl_filter /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_set_promis_filter /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_set_rx_policy /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_set_rx_policy_ubssid_check /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_set_sleep_delay_time /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_set_sta /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +ic_set_sta_auth_flag /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_set_trc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +ic_set_vif /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_stop_hw_txq /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_stop_sw_txq /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_trc_set_per_pkt_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_trc_update_def_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_trc_update_ifx_phy_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +ic_tx_is_idle /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_tx_pkt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_txq_empty /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_update_light_sleep_default_params /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_add_action_vendor_spec_esp /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_add_assoc_req_ies /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_assoc_resp_ies /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_beacon_app_ies /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_countryie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_csa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_dsparams /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_extcap /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_htcap /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +ieee80211_add_htcap_vendor /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_htinfo /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_htinfo_body /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_add_htinfo_vendor /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_ie_esp_mesh_head /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_ie_vendor_esp_freq_annon /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_ie_vendor_esp_head /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_add_ie_vendor_esp_manufacturer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_ie_vendor_esp_mesh_group /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_ie_vendor_esp_now /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_add_ie_vendor_esp_simple_pair /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_ie_vendor_esp_ssid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_mesh_assoc_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_duty_signaling /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_ext_assoc_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_ps_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_roots_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_ssid_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_probe_req_ies /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_probe_resp_app_ies /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_rates /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +ieee80211_add_wme_param /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_xrates /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_adjust_2nd_chan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_align_eb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_alloc_action_vendor_spec /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_alloc_challenge /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_alloc_deauth /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_alloc_proberesp /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_alloc_tx_buf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_ampdu_age_all /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +ieee80211_ampdu_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_ampdu_reorder /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_ampdu_request /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_ampdu_start_age_timer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_ampdu_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_amsdu_adjust_head /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_amsdu_adjust_last_length /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_amsdu_encap_check /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_amsdu_length_check /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_amsdu_negotiate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_amsdu_send_check /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_assoc_req_construct /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_assoc_resp_construct /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_auth_construct /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_beacon_alloc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_beacon_construct /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_better_rsn_pairwise_cipher /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +ieee80211_cal_tx_pps /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_ccmp_decrypt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_ccmp_encrypt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_classify /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_cnx_attach /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_copy_eb_header /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_crypto_aes_128_cmac_decrypt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_crypto_aes_128_cmac_encrypt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_crypto_attach /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_crypto_available /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) +ieee80211_crypto_decap /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_crypto_encap /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_crypto_gmac_decrypt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_crypto_setkey /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) +ieee80211_deauth_construct /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_decap /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_decap1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_decap_amsdu /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_decrypt_espnow_pkt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_deliver_data /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +ieee80211_disassoc_construct /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_empty_txq /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_encap_amsdu /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_encap_esfbuf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_encap_null_data /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_espnow_get_init_flag /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_espnow_set_init_flag /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_ethbroadcast /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_find_elem /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_find_elem_match /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_find_ext_elem /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_find_ext_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_find_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_find_ie_match /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_free_beacon_eb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_freedom_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_freedom_inside_cb /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_get_key /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_get_mac_addr_from_frame /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_get_ptk /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_get_spp /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_get_sta_gtk_index /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_getbcnframe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_getcapinfo /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_getmgtframe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_gettid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_gpsq_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_has_ht40_bss /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_hostap_attach /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_hostap_send_beacon_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +ieee80211_hostapd_beacon_txcb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +ieee80211_hostapd_data_txcb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +ieee80211_hostapd_ps_txcb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_ht_attach /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_ht_deattach /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_ht_node_cleanup /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_ht_node_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_ht_updatehtcap /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_ht_updateparams /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_ifattach /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_ifdetach /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_init_mesh_assoc_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +ieee80211_ioctl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_ioctl_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_ioctl_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_ioctl_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_is_11b_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +ieee80211_is_40mhz_valid_bw /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_is_bufferable_mmpdu /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_is_ht_cipher /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_is_lr_only /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_is_mesh_roots_announce /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_announce_used /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_fixed /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_gone /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_valid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_yield /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_yield_used /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_support_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +ieee80211_is_tx_allowed /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_iserp_rateset /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) +ieee80211_mesh_quick_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_mesh_quick_get /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_mesh_quick_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_mesh_quick_set /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_mgmt_output /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_mlme_connect_bss /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_mt_key_clear_mask /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_mt_key_is_mask /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_mt_key_is_mask_zero /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_mt_key_set_mask /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_node_pwrsave /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_nvs_set_default_ssid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +ieee80211_opcap /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_output /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_output_do /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_output_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_output_pending_eb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_output_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_output_raw_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_parse_action /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_parse_beacon /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_parse_htcap /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_parse_obss_scan_param /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_parse_rsn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_parse_wapi /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_parse_wmeparams /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_parse_wpa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_phy_2nd_chan_is_valid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_phy_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_phy_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_phy_mode_show /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_phy_type_get /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +ieee80211_pm_tx_null_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_post_hmac_tx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) +ieee80211_proto_attach /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_psq_cleanup /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_psq_drop_one_pkt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_psq_find_max_bss /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_psq_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_psq_is_buff_pkt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_psq_send_one_pkt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_psq_take_head /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_psq_take_tail /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_public_action_recv_mesh_awake /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +ieee80211_public_action_send_mesh_awake /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_pwrsave /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_pwrsave_node_cleanup /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_pwrsave_txcb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_rate_ref_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_raw_frame_sanity_check /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_recv_action /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_recv_action_register /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_recv_action_unregister /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) +ieee80211_recv_action_vendor_spec /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_recv_bar /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_recv_mesh_duty_signaling /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_recycle_cache_eb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_reg_encap_amsdu_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_reg_netstack_buf_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_ap_max_chan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_ap_min_chan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_chan_in_range /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_regdomain_chan_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) +ieee80211_regdomain_get_country /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_regdomain_is_active_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_regdomain_max_chan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_max_tx_power /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) +ieee80211_regdomain_min_chan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_policy /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_update /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) +ieee80211_regdomain_update_in_connect /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_regdomain_update_in_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_register_hostap_timer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_register_wapi_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_rfid_locp_recv /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_rfid_locp_recv_close /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) +ieee80211_rfid_locp_recv_open /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) +ieee80211_rfid_locp_recv_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_rsn_cipher_priority /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +ieee80211_scan_attach /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_scan_deattach /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_search_node /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_send_action /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_send_action_register /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_send_action_unregister /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) +ieee80211_send_action_vendor_spec /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_send_deauth /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_send_mgmt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_send_nulldata /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_send_probereq /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_send_proberesp /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_send_setup /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +ieee80211_set_appie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_gtk /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_set_hmac_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_key /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_set_max_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_set_phy_2nd_chan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_phy_bw /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_set_phy_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_shortslottime /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_set_sta_gtk_index /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_set_tim /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_set_tx_desc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_set_user_sup_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +ieee80211_setup_basic_htrates /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_setup_htrates /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +ieee80211_setup_lr_rates /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_setup_phy_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_setup_pmf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_setup_rates /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_setup_rateset /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_setup_ratetable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +ieee80211_setup_robust_mgmtframe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_sta_connect /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_sta_disconnect /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_sta_is_connected /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_sta_new_state /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_sta_scan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_timer_do_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_timer_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_tx_mgt_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) +ieee80211_unregister_wapi_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_update_channel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_update_phy_country /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_user_ie_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_vnd_ie_set /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_vnd_ie_size /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_vnd_lora_ie_set /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_vnd_lora_ie_size /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_vnd_mesh_fully_associated /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_vnd_mesh_quick_get /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_vnd_mesh_quick_set /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_vnd_mesh_roots_get /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_vnd_mesh_roots_set /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_vnd_mesh_update_beacon /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_wme_initparams /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) +ieee80211_wme_standard_ac_to_esp_ac /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_wme_updateparams /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211w_get_active_igtk_key_id /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) +ieee80211w_get_igtk_from_keyidx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.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/djordje/Data/Documents/Espressif/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_blacklist_flag /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +in_rssi_adjust /home/djordje/Data/Documents/Espressif/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) +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) +intr_matrix_set /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(intc.o) +io_cfg2str /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/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) +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_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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +is_esp_mesh_duty_signaling /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +is_esp_mesh_ext_assoc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +is_esp_mesh_ps /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +is_lc_free_and_used_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) +is_lc_lmp_rx_flooding /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_msg.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +is_lmac_idle /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +is_mesh_child /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +is_mesh_last_parent /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +is_my_ie_encrypted /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +is_rd_rem_ext_feats_sent_cs /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +is_self_mac_greater /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +is_set_afh_pending /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +iswspace /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) +iswspace_l /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace_l.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) +itoa /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-itoa.o) + esp-idf/newlib/libnewlib.a(assert.c.obj) + esp-idf/newlib/libnewlib.a(abort.c.obj) +ke_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_msg.o) +ke_handler_search /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) +ke_lmp_rx_flooding_detect /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_msg.o) +ke_task_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) +l2cap_start /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) +lc_acl_disc_ind_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lc_acl_rx_ind_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lc_afh_update_ind_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lc_cmd_cmp_bd_addr_send /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lc_default_state_tab_p_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lc_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) +lc_get_sniff_timing_control_flag /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +lc_hci_cmd_handler_tab_p_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lc_lmp_msg_stored_num /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_msg.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) +lc_lmp_rx_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lc_lmp_tx_cfm_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lc_lmp_tx_stored /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_lmppdu.o) +lc_lmp_tx_stored_clear /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_lmppdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +lc_lmp_tx_stored_send /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_lmppdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lc_pwr_decr_ind_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lc_pwr_incr_ind_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lc_pwr_max_ind_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lc_reset_hci_cmd_handler_table_funcs /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lc_reset_lc_default_state_funcs /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lc_sco_data_path_config /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sco.o) +lc_sco_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sco.o) +lc_set_encap_pdu_data_p192 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lc_set_encap_pdu_data_p256 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lc_sync_rx_ind_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +ld_acl_all_in_sniff /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) +ld_acl_clk_isr /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) +ld_acl_clk_isr_hack /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) +ld_acl_end /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +ld_acl_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +ld_acl_evt_canceled_cbk /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +ld_acl_evt_start_cbk /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +ld_acl_evt_stop_cbk /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +ld_acl_frm_cbk /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +ld_acl_frm_isr /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) +ld_acl_resched /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) +ld_acl_rsw_end /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +ld_acl_rsw_frm_cbk /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +ld_acl_rsw_frm_cbk_wrapper /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) +ld_acl_rx /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +ld_acl_rx_no_sync /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +ld_acl_rx_sync /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +ld_acl_rx_sync2 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +ld_acl_sched /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +ld_acl_sco_rsvd_check /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +ld_acl_sniff_frm_cbk /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) +ld_acl_sniff_sched /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +ld_acl_test_mode_update /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) +ld_acl_tx /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +ld_acl_tx_packet_type_select /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +ld_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_pscan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_inq.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +ld_fm_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) +ld_fm_fifo_empty /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) +ld_fm_fix_no_sent_buf /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) +ld_include_highint_hdl esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +ld_include_hli_vectors_bt esp-idf/bt/libbt.a(hli_vectors.S.obj) +ld_inq_end /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_inq.o) +ld_inq_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_inq.o) +ld_inq_frm_cbk /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) +ld_inq_frm_isr_wrapper /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_inq.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) +ld_inq_sched /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_inq.o) +ld_lmp_embuf_free /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +ld_lmp_rx_flooding_search /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) +ld_pscan_assert_err_handle /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_pscan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) +ld_pscan_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_pscan.o) +ld_pscan_frm_cbk /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) +ld_sched_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sched.o) +ld_sched_link_in_sniff /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sched.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +ld_sco_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +ld_sco_frm_cbk /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) +ld_sco_frm_isr_wrapper /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) +ld_sco_modify /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +ld_sniff_cntl_offset_adjust /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) +ld_sniff_cntl_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sched.o) +le_scan_duplicate_option /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +le_send_adv_reserved_func /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) +libcoexist_reversion_git /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) +libcore_reversion_git /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) +libmesh_reversion_git /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +libnet80211_reversion_git /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +libnet80211_reversion_remote /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +libpp_reversion_git /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +llc_defalut_state_tab_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_task.o) +llc_default_state_tab_p_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_task.o) +llc_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_util.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) +llc_get_hci_pending_pkts /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) +llc_hci_acl_data_tx_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_task.o) +llc_hci_cmd_handler_tab_p_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) +llc_hci_pending_pkts_inc /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) +llc_peer_conn_param_req_not_support_clear /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) +llc_peer_conn_param_req_not_support_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) +llc_peer_conn_param_req_not_support_set /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) +llcp_channel_map_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) +llcp_con_up_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) +llcp_defalut_state_tab_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) +llcp_length_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) +llcp_length_rsp_pre_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) +llcp_pdu_handler_tab_p_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) +llcp_unknown_rsp_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) +lld_adjust_after_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) +lld_adv_to_connected /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) +lld_con_llcp_ind /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) +lld_con_llcp_ind_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) +lld_con_term_info /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) +lld_con_term_info_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) +lld_elt_prog_is_empty /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) +lld_evt_adv_delay_time /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +lld_evt_deferred_elt_pop /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +lld_evt_deferred_elt_push /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +lld_evt_elt_remove /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +lld_evt_elt_wait_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +lld_evt_end_run_flag_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +lld_evt_end_run_flag_set /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) +lld_evt_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +lld_evt_get_next_free_slot /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +lld_evt_slave_time_compute /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +lld_pdu_get_tx_flush_nb /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +lld_pdu_is_retry_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) +lld_pdu_is_retry_set /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +lld_pdu_llcp_pk_desc_tab /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) +lld_pdu_pack /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) +lld_pdu_refresh_rem_proc_state /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) +lld_pdu_tx_flush_list /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) +lld_pdu_tx_prog_llcp /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) +lld_retry_tx_prog /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(intc.o) +lld_scan_to_connected /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) +llm_ble_update_adv_flow_control /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg_task.o) +llm_default_state_tab_p_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_task.o) +llm_elt /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +llm_hci_cmd_handler_tab_p_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_hci.o) +llm_hci_cmd_handler_tab_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_hci.o) +llm_init_ble_adv_report_flow_contol /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg_task.o) +llm_le_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +llm_reset_scan_procedure /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +llm_set_long_adv_data /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg_task.o) +llm_task_default_state_tab_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_task.o) +llm_update_duplicate_scan_exceptional_list /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg_task.o) +lm_afh_to_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) +lm_cmd_cmp_send /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) +lm_default_state_tab_p_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) +lm_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) +lm_get_auth_method /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lm_hci_cmd_handler_tab_p_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) +lm_inq_res_ind_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) +lm_n192_mod_add /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_sp.o) +lm_n192_mod_mul /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_sp.o) +lm_n192_mod_sub /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_sp.o) +lm_page_end_ind_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) +lm_page_scan_end_ind_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) +lm_reset_hci_cmd_handler_tab /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) +lm_reset_lm_default_state_funcs /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) +lmacAdjustTimestamp /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacConfMib /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacDisableTransmit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacDiscardAgedMSDU /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacDiscardFrameExchangeSequence /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacDiscardMSDU /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacEndFrameExchangeSequence /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacEndRetryAMPDUFail /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacGetTxFrame /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacInit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +lmacInitAc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacIsIdle /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +lmacIsLongFrame /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacMSDUAged /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacPostTxComplete /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +lmacProcessAckTimeout /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessAllTxTimeout /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +lmacProcessCollision /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessCollisions /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +lmacProcessCollisions_task /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacProcessCtsTimeout /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessLongFrameSuccess /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessLongRetryFail /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessRxSucData /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +lmacProcessShortFrameSuccess /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessShortRetryFail /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessTBSuccess /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessTxComplete /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacProcessTxError /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessTxRtsError /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessTxSuccess /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessTxTimeout /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacProcessTxopSuccess /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessTxseckiderr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacReachLongLimit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacReachShortLimit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacRecycleMPDU /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacRetryTxFrame /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacRxDone /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +lmacSetAcParam /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +lmacSetTxFrame /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacTxDone /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacTxFrame /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmac_record_txtime /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmac_stop_hw_txq /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +lmac_update_tx_statistic /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmp_accepted_ext_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_accepted_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_aurand_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_aurand_handler_hack /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_auto_rate_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_ch_class_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_ch_class_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_clk_adj_ack_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_clk_adj_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_clk_adj_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_clk_off_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_clk_off_res_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_combkey_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_decr_pwr_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_detach_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_dhkey_chk_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_enc_key_size_mask_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_enc_key_size_mask_res_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_enc_key_size_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_enc_mode_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_encaps_hdr_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_esco_link_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_feats_req_ext_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_feats_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_feats_res_ext_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_feats_res_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_host_con_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_incr_pwr_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_inrand_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_io_cap_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_io_cap_res_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_keypress_notif_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_max_pwr_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_max_slot_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_max_slot_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_min_pwr_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_name_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_name_res_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_not_accepted_ext_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_num_comparison_fail_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_oob_fail_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_page_mode_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_page_scan_mode_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_passkey_fail_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_pause_enc_aes_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_pause_enc_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_ping_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_ping_res_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_pkt_type_tbl_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_pref_rate_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_pwr_ctrl_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_pwr_ctrl_res_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_qos_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_qos_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_resume_enc_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_rmv_esco_link_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_rmv_sco_link_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_sco_link_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_set_afh_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_setup_cmp_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_slot_off_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_sniff_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_sp_cfm_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_sp_nb_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_sres_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_ssr_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_ssr_res_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_start_enc_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_stop_enc_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_supv_to_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_switch_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_tempkey_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_temprand_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_test_activate_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_test_ctrl_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_timing_accu_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_timing_accu_res_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_tx_stored /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) +lmp_unitkey_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_unsniff_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_use_semi_perm_key_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_ver_req_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +lmp_ver_res_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +localeconv /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) +localtime_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + esp-idf/log/liblog.a(log_freertos.c.obj) +lr_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/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/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +mac_last_rxbuf_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +mac_last_rxbuf_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +mac_rxbuf_disable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +mac_rxbuf_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +mac_tx_set_duration /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +mac_tx_set_htsig /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +mac_tx_set_plcp0 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +mac_tx_set_plcp1 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +mac_tx_set_plcp2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +mac_txrx_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +main /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o +mallinfo esp-idf/newlib/libnewlib.a(heap.c.obj) +malloc esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_op.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 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(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_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/json/libjson.a(cJSON.c.obj) + esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) + esp-idf/protocomm/libprotocomm.a(security0.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +malloc_stats esp-idf/newlib/libnewlib.a(heap.c.obj) +malloc_trim esp-idf/newlib/libnewlib.a(heap.c.obj) +malloc_usable_size esp-idf/newlib/libnewlib.a(heap.c.obj) +mallopt esp-idf/newlib/libnewlib.a(heap.c.obj) +map_assoc_expire /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/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) +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) +mbedtls_asn1_get_alg 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(pkcs5.c.obj) +mbedtls_asn1_get_alg_null esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.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) +mbedtls_asn1_get_bitstring_null esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.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) +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/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_asn1_get_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) +mbedtls_asn1_get_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_asn1_get_sequence_of esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) +mbedtls_asn1_get_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_asn1_sequence_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) +mbedtls_asn1_store_named_data esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_traverse_sequence_of esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) +mbedtls_asn1_write_algorithm_identifier esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_asn1_write_bitstring esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_bool esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_enum esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_ia5_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_asn1_write_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_asn1_write_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_asn1_write_named_bitstring esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_null esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_octet_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_asn1_write_oid esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_asn1_write_printable_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_raw_buffer esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_asn1_write_tagged_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_utf8_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_base64_decode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) +mbedtls_base64_encode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) +mbedtls_base64_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) +mbedtls_calloc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.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(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +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) +mbedtls_cipher_auth_encrypt_ext 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) + esp-idf/bt/libbt.a(ble_sm_alg.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) + esp-idf/bt/libbt.a(ble_sm_alg.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) + esp-idf/bt/libbt.a(ble_sm_alg.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) +mbedtls_cipher_definitions esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) +mbedtls_cipher_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) +mbedtls_cipher_info_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) +mbedtls_cipher_info_from_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_info_from_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) +mbedtls_cipher_info_from_values esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) +mbedtls_cipher_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) +mbedtls_cipher_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_reset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) +mbedtls_cipher_set_iv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) +mbedtls_cipher_set_padding_mode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) +mbedtls_cipher_setkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) +mbedtls_cipher_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) +mbedtls_cipher_supported esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) +mbedtls_cipher_update_ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_write_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cmac_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) +mbedtls_ct_base64_dec_value esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) +mbedtls_ct_base64_enc_char esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) +mbedtls_ct_hmac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) +mbedtls_ct_memcmp esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) +mbedtls_ct_memcpy_if_eq esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) +mbedtls_ct_memcpy_offset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) +mbedtls_ct_mpi_uint_cond_assign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_ct_mpi_uint_lt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_ct_mpi_uint_mask esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_ct_rsaes_pkcs1_v15_unpadding esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_ct_size_bool_eq esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_ct_size_mask esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) +mbedtls_ct_size_mask_ge esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) +mbedtls_ct_uint_if esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) +mbedtls_ct_uint_mask esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) +mbedtls_ctr_drbg_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) +mbedtls_ctr_drbg_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) +mbedtls_ctr_drbg_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) +mbedtls_ctr_drbg_random_with_add esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_reseed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_seed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) +mbedtls_ctr_drbg_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_set_entropy_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_set_nonce_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_set_prediction_resistance esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_set_reseed_interval esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_update_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_write_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ecc_group_of_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecdh_calc_secret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecdh_can_do esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecdh_compute_shared esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) +mbedtls_ecdh_enable_restart esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecdh_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.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) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) +mbedtls_ecdh_get_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecdh_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) +mbedtls_ecdh_make_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecdh_make_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecdh_read_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecdh_read_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecdh_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) +mbedtls_ecdsa_can_do esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.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_from_keypair 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_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/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 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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_ecdsa_restart_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_ecdsa_restart_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_ecdsa_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecdsa_sign_det_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecdsa_sign_det_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_ecdsa_sign_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_ecdsa_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecdsa_verify_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.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_budget esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecp_check_privkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_ecp_check_pub_priv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_ecp_check_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) +mbedtls_ecp_copy esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.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/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) +mbedtls_ecp_gen_keypair esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecp_gen_keypair_base esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_gen_privkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_get_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_group_copy esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.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(psa_crypto.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_load esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.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/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) +mbedtls_ecp_grp_id_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_ecp_is_zero esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_keypair_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) +mbedtls_ecp_keypair_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) +mbedtls_ecp_mul esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecp_mul_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_muladd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecp_muladd_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecp_point_cmp esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecp_point_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) +mbedtls_ecp_point_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) +mbedtls_ecp_point_read_binary esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) +mbedtls_ecp_point_read_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_point_write_binary esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) +mbedtls_ecp_read_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_restart_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_restart_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_restart_is_enabled esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecp_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_set_max_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_ecp_set_zero esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_tls_read_group esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_tls_read_group_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_tls_read_point esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_tls_write_group esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_tls_write_point esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_write_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_entropy_add_source esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) +mbedtls_entropy_func esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) +mbedtls_entropy_gather esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) +mbedtls_entropy_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_source_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_update_manual esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_update_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_write_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.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(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_free_keypair esp-idf/bt/libbt.a(ble_sm_alg.c.obj) +mbedtls_get_unaligned_uint16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) +mbedtls_get_unaligned_uint32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) +mbedtls_get_unaligned_uint64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) +mbedtls_hardware_poll esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_hash_info_get_block_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) +mbedtls_hash_info_get_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_hash_info_md_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_hash_info_psa_from_md esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_hmac_drbg_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_hmac_drbg_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_hmac_drbg_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_hmac_drbg_random_with_add esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_reseed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_seed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_seed_buf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_hmac_drbg_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_set_entropy_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_set_prediction_resistance esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_set_reseed_interval esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_update_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_write_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_internal_sha1_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) +mbedtls_internal_sha256_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_internal_sha512_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) +mbedtls_md esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_md5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md5_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md5_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) +mbedtls_md_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) +mbedtls_md_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_get_name esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_get_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) +mbedtls_md_get_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_hmac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_hmac_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_hmac_reset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) +mbedtls_md_hmac_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_hmac_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_info_from_ctx esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 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/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_mpi_add_abs esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) +mbedtls_mpi_add_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_add_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) +mbedtls_mpi_bitlen esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_cmp_abs esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_cmp_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_cmp_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_copy esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/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(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_mpi_core_add esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_add_if esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_bigendian_to_host esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_bitlen esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_check_zero_ct esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_clz esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_cond_assign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) +mbedtls_mpi_core_cond_swap esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) +mbedtls_mpi_core_exp_mod esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_exp_mod_working_limbs esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_fill_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_from_mont_rep esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_get_mont_r2_unsafe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_lt_ct esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_mla esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) +mbedtls_mpi_core_montmul esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_montmul_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_read_be esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_read_le esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_shift_r esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_sub esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_sub_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_to_mont_rep esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_uint_le_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_write_be esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_write_le esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_div_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_mpi_div_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) +mbedtls_mpi_exp_mod esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/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(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) +mbedtls_mpi_fill_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) +mbedtls_mpi_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) +mbedtls_mpi_gcd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_gen_prime esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_get_bit esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_grow esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) +mbedtls_mpi_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) +mbedtls_mpi_inv_mod esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.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_is_prime_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) +mbedtls_mpi_lsb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) +mbedtls_mpi_lset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) +mbedtls_mpi_lt_mpi_ct esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_mpi_mod_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_mod_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) +mbedtls_mpi_mul_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_mul_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.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(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) +mbedtls_mpi_read_binary_le esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_read_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_read_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) +mbedtls_mpi_safe_cond_assign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_safe_cond_swap esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_set_bit esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_shift_l esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_shift_r esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.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) +mbedtls_mpi_shrink esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) +mbedtls_mpi_sub_abs esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_sub_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_sub_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/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(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_swap esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_write_binary esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/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(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) +mbedtls_mpi_write_binary_le esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_mpi_write_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_write_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) +mbedtls_oid_get_attr_short_name esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) +mbedtls_oid_get_certificate_policies esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) +mbedtls_oid_get_cipher_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_oid_get_ec_grp esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_oid_get_extended_key_usage esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) +mbedtls_oid_get_md_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.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) +mbedtls_oid_get_oid_by_ec_grp esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_oid_get_oid_by_md esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_oid_get_oid_by_pk_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_oid_get_oid_by_sig_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) +mbedtls_oid_get_pk_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_oid_get_pkcs12_pbe_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_oid_get_sig_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) +mbedtls_oid_get_sig_alg_desc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) +mbedtls_oid_get_x509_ext_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) +mbedtls_pem_free 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(pem.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/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/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_check_pair esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_debug esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_get_bitlen esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_get_name esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_get_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_info_from_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_load_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pk_parse_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(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/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_parse_public_keyfile esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pk_parse_subpubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_psa_rsa_sign_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_restart_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_restart_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_setup_rsa_alt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +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) +mbedtls_pk_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_verify_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_verify_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_write_key_der esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_write_key_pem esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_pk_write_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_write_pubkey_der esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_write_pubkey_formatted esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_write_pubkey_pem esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_pkcs12_derivation esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) +mbedtls_pkcs12_pbe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pkcs5_pbes2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pkcs5_pbkdf2_hmac_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_pkcs5_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_platform_set_calloc_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) +mbedtls_platform_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) +mbedtls_platform_teardown esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) +mbedtls_platform_zeroize esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) +mbedtls_psa_aead_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_aead_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_aead_decrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_aead_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_aead_encrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_aead_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_aead_set_lengths esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_aead_set_nonce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_aead_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_aead_update_ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_asymmetric_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_asymmetric_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_cipher_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_cipher_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_cipher_decrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_cipher_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_cipher_encrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_cipher_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_cipher_set_iv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_cipher_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_crypto_configure_entropy_sources esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_crypto_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecdsa_sign_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecdsa_verify_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecp_export_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_psa_ecp_export_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecp_generate_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecp_import_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecp_load_public_part esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecp_load_representation 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_get_stats esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +mbedtls_psa_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_hash_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_hash_compute esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_hash_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_hash_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_hash_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_interruptible_set_max_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_key_agreement_ecdh esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_mac_compute esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_mac_sign_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_mac_sign_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_mac_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_mac_verify_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_mac_verify_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_random_state esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_psa_rsa_export_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_psa_rsa_export_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_generate_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_import_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_load_representation esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_sign_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_verify_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_sign_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_sign_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_sign_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_sign_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_verify_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_verify_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_verify_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_verify_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_put_unaligned_uint16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) +mbedtls_put_unaligned_uint32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) +mbedtls_put_unaligned_uint64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) +mbedtls_rsa_alt_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_check_privkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_check_pub_priv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_check_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_rsa_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_rsa_copy esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_deduce_crt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_deduce_primes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_deduce_private_exponent esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_export esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_rsa_export_crt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_rsa_export_raw esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_gen_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_get_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_get_md_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_get_padding_mode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_import esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_rsa_import_raw esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_rsa_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_pkcs1_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_pkcs1_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_pkcs1_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_pkcs1_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_private esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsaes_oaep_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_rsaes_oaep_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_rsaes_pkcs1_v15_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsaes_pkcs1_v15_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pkcs1_v15_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pkcs1_v15_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pss_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_rsassa_pss_sign_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pss_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pss_verify_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_set_padding esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_validate_crt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_validate_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_sha1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha1_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha1_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha1_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha1_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha1_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha1_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) +mbedtls_sha1_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha1_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha224_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha224_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) +mbedtls_sha256 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) +mbedtls_sha256_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha256_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha256_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha256_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha256_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha256_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) +mbedtls_sha256_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha256_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha384_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha384_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) +mbedtls_sha512 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) +mbedtls_sha512_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha512_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) +mbedtls_to_psa_error esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_xor esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) +mbo_add_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +mbrtowc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) +md5_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.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_init_mbuf_pool esp-idf/bt/libbt.a(mem.c.obj) + esp-idf/bt/libbt.a(os_msys_init.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci.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_malloc_mbuf_pool esp-idf/bt/libbt.a(mem.c.obj) +mem_malloc_mbufpkt_pool esp-idf/bt/libbt.a(mem.c.obj) +mem_malloc_mempool esp-idf/bt/libbt.a(mem.c.obj) +mem_malloc_mempool_ext esp-idf/bt/libbt.a(mem.c.obj) +mem_pullup_obj esp-idf/bt/libbt.a(mem.c.obj) +mem_split_frag esp-idf/bt/libbt.a(mem.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci.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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) +memcmp /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_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) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.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(esp_scan.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + 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(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/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_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.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) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ecc_p256.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_sp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_store_config.c.obj) + esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + esp-idf/bt/libbt.a(ble_uuid.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_store.c.obj) + esp-idf/bt/libbt.a(ble_hs_id.c.obj) + esp-idf/bt/libbt.a(ble_store_util.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +memcpy /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-utoa.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + /home/djordje/Data/Documents/Espressif/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(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) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.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(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.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_common.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(pbuf.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(sockets.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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.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/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + esp-idf/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/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ecc_p256.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_sp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vflash.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(sdk_config.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_inq.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_lmppdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(nimble_port.c.obj) + esp-idf/bt/libbt.a(ble_store_config.c.obj) + esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) + esp-idf/bt/libbt.a(ble_uuid.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_store.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + esp-idf/bt/libbt.a(ble_hs_id.c.obj) + esp-idf/bt/libbt.a(ble_store_util.c.obj) + esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) + esp-idf/bt/libbt.a(hli_api.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.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(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) +memmove /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/lwip/liblwip.a(def.c.obj) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_store_config.c.obj) + esp-idf/bt/libbt.a(ble_hs_resolv.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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.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(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.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(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.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(dns.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) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_arbit.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.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/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ecc_p256.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_sp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vflash.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sniff.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sco.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(btdm_log.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/newlib/libnewlib.a(abort.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +memspi_host_erase_block esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_erase_chip esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_erase_sector esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_flush_cache esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_init_pointers esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +memspi_host_program_page esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_read esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_read_data_slicer esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_read_id_hs esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_read_status_hs esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_set_write_protect esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_write_data_slicer esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +mesh_add_invalid_rc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_add_option /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_adjust_passive_scan_time /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_bcn_change_timeout /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_bcn_change_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_bcn_change_timer_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_candidate_monitor_timeout /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_candidate_monitor_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_chain_header_add_ttl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_check_conflict_beacon /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_check_last_rcandidate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_check_rc_expire /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_check_tid_mbox_full /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_child_clr_ps_duty /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_child_set_ps_duty /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_clear_parent_candidate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_coding_ie_key /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_conn_leave /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_conn_mutex /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_connect_to_candidate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_connect_to_router /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_construct_rmv_announcement /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_create_task /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) +mesh_csa_set_bssid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_deinit_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_disable_parent_switch_monitor /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_encrypt_ie_plain_key /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_fill_rmv_sub_child /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_find_root_competitor /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_flush_txQ /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_flush_upstream_packets /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_free /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_get_parent_candidate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_get_parent_monitor_config /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_get_rssi_threshold /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_get_sub_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_get_subnet_nodes_list /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_get_subnet_nodes_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_get_tx_pending /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_get_vnd_roots_len /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_ie_monitor_timeout /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_ie_monitor_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_ie_type2str /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_init_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_init_rcandidate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_ioctl_sem /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_is_better_parent /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_is_ie_ignored /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_is_last_rc_existing /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_is_new_found_conflict_root /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_is_new_root_found /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_is_new_root_invalid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_is_yield_root /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_look_for_network /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_malloc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_malloc_rmv_announcement /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_multi_recv_ack /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_multi_send_ack /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_mutex_lock /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_mutex_unlock /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_myself_mbox /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_node_process_cycle /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_node_process_disconnect /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_node_process_healing /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_add_conflict_roots /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_change_layer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_check_conflict_roots /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_check_layer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_check_no_parent_found /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +mesh_nwk_delete_timers /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_duty_check_allowed /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_duty_check_duration_expire /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_duty_clr_master_identity /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_duty_clr_remaining /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_duty_master_is_root /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_duty_post_event /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_duty_process_remaining /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_duty_set_master_identity /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_duty_set_remaining /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_find_conflict_roots /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_io_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_manual_networking /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_nwk_process_allow_switch /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_child_event /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_conflict_discnx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_disconnected /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_ie_change /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_leaf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_look_for_network /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_no_parent /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_nvs_settings /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_reselect /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_rootless /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_scan_done /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_scan_request /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_vote_done /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_yield_roots_announce /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_yield_roots_monitor /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_remove_conflict_roots /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_task_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_task_main /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_pack_rmv_announcement /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_parent_check_root_conflict /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_parent_insert_candidate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_parent_select_done /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_parse_conflict_roots_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_parse_option /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_parse_ps_entire_rule /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_parse_ps_uplink_rule /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_pm_set_null /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +mesh_pm_tbtt_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +mesh_post_parent_assoc_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_post_parent_switch_candidate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_post_parent_weak_rssi /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_print_txQ_waiting /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_process_child_macconnected /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_process_mcast_cover_node /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_process_mgmt_announce /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_process_mgmt_root_switch /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_process_mgmt_root_waive /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_process_mgmt_routing_table /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_process_parent_organized /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +mesh_process_root_candidate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_process_roots_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_process_roots_ie_ttl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_process_same_root_candidate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_ps_control_get_min_duty /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_ps_control_set_awake /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_ps_control_set_sleep /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_ps_control_timeout /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_ps_control_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_ps_get_duties /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_ps_keep_cnx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +mesh_ps_set_new_duty /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_ps_tx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_recv /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_recv_add_option /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_recv_process_flag /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_register_timer_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_remove_myself_from_forwarding /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_root_connect_timeout /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_root_connect_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_root_connect_timer_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_root_process_connect /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_root_process_disconnect /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_root_process_roots_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_route_announce_timeout /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_rt_change_timeout /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_rt_change_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_rt_change_timer_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_rx_task_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +mesh_rx_task_main /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +mesh_rxcb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +mesh_scan_done_process_weak /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_is_better_parent /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_parent /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_parent_compute_rank /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_parent_limit_layer2_cap /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_parent_try_layer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_parent_try_rssi /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_router /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_set_ignore /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_self_xonseq /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_send_block_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_send_block_main /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_send_process_flag /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_send_process_topo /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_send_roots_fixed /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_send_roots_gone /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_send_roots_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_send_stop_vote /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_set_default_rssi_threshold /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_set_id /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_set_ie_crypto_config /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_set_ie_crypto_funcs /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_set_ie_crypto_key /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_set_io_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_set_parent /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_set_parent_candidate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_set_parent_monitor_config /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_set_root_candidate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_set_root_candidate_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_set_router /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_set_rssi_threshold /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_set_self_organized /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_set_type /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_sta_auth_expire_time /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_stop_recv /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_switch_channel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_tcpip_mbox /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_timer_bcn_change /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_candidate_monitor /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_do_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_timer_info /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_mie_monitor /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_ps_control /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_root_connect /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_route_announce /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_rt_change /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_topo_get_ttl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_tx_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_tx_task_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_tx_task_main /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_tx_tid_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_update_current_parent /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_update_ie_rssi /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_update_rcandidate_rssi /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_update_route_table /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_vote_root_candidate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_waive_root /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_wifi_event_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_wifi_event_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_wifi_event_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_xmit_state_mbox /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_xon /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_xon_deliver_packet /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_xon_flush_packets /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_xon_process_disconnected /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_xon_process_expired /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_xon_process_no_wnd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_xon_task_main /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mgd_probe_send_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +misc_nvs_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +misc_nvs_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +misc_nvs_load /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) +misc_nvs_restore /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mkdir esp-idf/vfs/libvfs.a(vfs.c.obj) +mktime /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +mld6_input esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) +mld6_joingroup esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +mld6_joingroup_netif esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/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) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +mmu_hal_unmap_region esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +mmu_hal_vaddr_to_paddr esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +modem_domain_pd_allowed esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + 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) +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) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_aligned_alloc_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_aligned_alloc_impl_offs esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_aligned_free esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_check esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_dump esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_free esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_free_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_free_size esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_free_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_allocated_size esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_get_allocated_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_block_address esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_block_address_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_block_owner esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_first_block esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_info esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_get_info_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_next_block esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_internal_lock esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_internal_unlock esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_is_free esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_malloc esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_malloc_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_minimum_free_size esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_minimum_free_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_realloc esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_realloc_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_register esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +multi_heap_register_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_set_lock esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +nan /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_nan.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +nan_action_frames_queued /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_all_wildcard_filter /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_alloc_action /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_alloc_beacon /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_alloc_sdf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_am_event_hdlr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_cancel_service /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_compute_service_hash /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_construct_followup_sdf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_construct_ndp_confirm /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_construct_ndp_req /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_construct_ndp_resp /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_construct_ndp_terminate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_construct_publish_sdf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_construct_sdea /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_construct_subscribe_sdf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_datapath_end /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_datapath_send_req /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_datapath_send_resp /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_disc_disable_rx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_disc_enable_rx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_dp_alloc_ndl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_alloc_ndp /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_alloc_node /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_chan_from_bitmap /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_confirm_peer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_construct_device_caps /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_dp_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_dp_delete_peer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_get_attr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_get_peer_ndl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_get_peer_ndp /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_indicate_faw_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_dp_indicate_ndc_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_dp_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_dp_node_exists /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_parse_availability /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_parse_dev_caps /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_parse_elem_container /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_parse_ndca /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_parse_ndla /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_parse_ndpa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_parse_time_bitmap /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_post_tx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +nan_dp_remove_node /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_schedule_ndc_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_dp_schedule_next_faw /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_dp_search_node /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +nan_dp_send_confirm_event /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_send_indication_event /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_send_terminated_event /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_setup_peer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dw_end_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_dw_start_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_faw_end_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_faw_start_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_flush_action_q /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_get_clust_id /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_get_random_byte /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_get_random_word /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_get_service_by_id /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_get_service_by_index /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_get_service_idx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_get_tsf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_in_transit_event_hdlr /home/djordje/Data/Documents/Espressif/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_is_in_dw /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_master_event_hdlr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_match_filters /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_mgmt_txcb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_naf_txcb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_ndc_start_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_ndp_resp_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_nmns_event_hdlr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_nms_event_hdlr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_parse_ndp_confirm /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_parse_ndp_req /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_parse_ndp_resp /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_parse_ndp_terminate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_post_event /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_rx_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +nan_rx_naf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_rx_sdf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_scan_event_hdlr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_scan_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_sched_add_entry /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sched_alloc_conditional /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sched_alloc_time_slots /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sched_allocate_crbs /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sched_avail_entries_len /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_sched_construct_availability /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_sched_get_chan_bitmap /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sched_in_ndc_slot /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sched_init_availability /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sched_is_peer_available /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sched_parse_avail_entries /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_sched_reset_avail_flags_sdf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_schedule_disc_bcn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_sd_parse_availability /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_sd_parse_dev_caps /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_sd_parse_sdea /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_sd_receive_ctrl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_sdf_txcb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_send_action_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_send_disc_bcn_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_send_discovery_result /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_send_followup_msg /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_send_ndp_confirm /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_send_ndp_req /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_send_ndp_resp /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_send_ndp_terminate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_send_receive_event /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_send_replied_event /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_send_started_event /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_send_static_sdfs /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_send_sync_bcn_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_services_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_services_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_set_config_local /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_set_trc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_set_update_sdf_pending /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sm_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_sm_handle_event_internal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_sm_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_sm_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_sm_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_start_publish_service /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_start_subscribe_service /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_state_str /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_static_sdfs_present /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_tolower /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_transmit_action /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_transmit_bcn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_tx_action_frame /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_tx_queued_action_frames /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_update_static_sdfs /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_update_tsf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_warmup_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nanf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +nd6_adjust_mld_membership esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +nd6_cleanup_netif esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +nd6_clear_destination_cache esp-idf/lwip/liblwip.a(nd6.c.obj) +nd6_find_route esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +nd6_get_destination_mtu esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +nd6_get_next_hop_addr_or_queue esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ethip6.c.obj) +nd6_input esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) +nd6_reachability_hint esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +nd6_restart_netif esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +nd6_tmr esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +ndp_rxcb /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +net80211_funcs_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +net80211_funcs_init /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +net80211_softap_funcs_init /home/djordje/Data/Documents/Espressif/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) +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) +nimble_host_task esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +nimble_port_deinit esp-idf/bt/libbt.a(nimble_port.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +nimble_port_freertos_deinit esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +nimble_port_freertos_init esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +nimble_port_get_dflt_eventq esp-idf/bt/libbt.a(nimble_port.c.obj) + esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +nimble_port_init esp-idf/bt/libbt.a(nimble_port.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +nimble_port_run esp-idf/bt/libbt.a(nimble_port.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +nimble_port_stop esp-idf/bt/libbt.a(nimble_port.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +node_remove_from_list esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +noise_array /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +noise_check_loop /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +noise_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +noise_timeout_flag /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +npl_freertos_callout_deinit esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_callout_get_ticks esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_callout_init esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_callout_is_active esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_callout_mem_reset esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_callout_remaining_ticks esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_callout_reset esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_callout_set_arg esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_callout_stop esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_event_deinit esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_event_get_arg esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_event_init esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_event_is_queued esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_event_reset esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_event_run esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_event_set_arg esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_eventq_deinit esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_eventq_get esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_eventq_init esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_eventq_is_empty esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_eventq_put esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_eventq_remove esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_funcs_deinit esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(nimble_port.c.obj) +npl_freertos_funcs_get esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_funcs_init esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(nimble_port.c.obj) +npl_freertos_get_current_task_id esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_get_time_forever esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_hw_enter_critical esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_hw_exit_critical esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_hw_is_in_critical esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_mempool_deinit esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_mempool_init esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(nimble_port.c.obj) +npl_freertos_mutex_deinit esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_mutex_init esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_mutex_pend esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_mutex_release esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_os_started esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_sem_deinit esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_sem_get_count esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_sem_init esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_sem_pend esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_sem_release esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_time_delay esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_time_get esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_time_ms_to_ticks esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_time_ms_to_ticks32 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_time_ticks_to_ms esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_freertos_time_ticks_to_ms32 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +npl_funcs esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(ble_hs_stop.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(os_mempool.c.obj) + esp-idf/bt/libbt.a(nimble_port.c.obj) + esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_hs_flow.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +npl_funcs_ro esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +nvds_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) +nvds_erase /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) +nvds_init_memory /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) +nvds_magic_number /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) +nvds_null_erase /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) +nvds_null_read /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) +nvds_null_write /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) +nvds_read /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) +nvds_write /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) +nvs_close esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +nvs_commit esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +nvs_dump esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_entry_find esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_entry_info esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_entry_next esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_erase_all esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +nvs_erase_key esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +nvs_flash_deinit esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_deinit_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_erase esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/main/libmain.a(app_main.c.obj) +nvs_flash_erase_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_erase_partition_ptr esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_generate_keys esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_generate_keys_v2 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_get_default_security_scheme esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_init esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/main/libmain.a(app_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_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.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/djordje/Data/Documents/Espressif/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_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.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_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +offchan_in_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +offchan_recv_action /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +offchan_send_action_tx_status /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +offchan_txop_end /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +offchan_txop_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/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) +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) +one_bits /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(co_utils.o) +opendir esp-idf/vfs/libvfs.a(vfs.c.obj) +opt_11b_resart /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +opt_type2str /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +optype2str /home/djordje/Data/Documents/Espressif/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(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(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(esp_scan.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.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_mbuf_adj esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(mem.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +os_mbuf_append esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +os_mbuf_appendfrom esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(mem.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +os_mbuf_cmpf esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) +os_mbuf_cmpm esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) +os_mbuf_concat esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) +os_mbuf_copydata esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) + esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_uuid.c.obj) + esp-idf/bt/libbt.a(ble_hs_log.c.obj) + esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_att.c.obj) +os_mbuf_copyinto esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) +os_mbuf_dup esp-idf/bt/libbt.a(os_mbuf.c.obj) +os_mbuf_extend esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_uuid.c.obj) + esp-idf/bt/libbt.a(ble_att_cmd.c.obj) +os_mbuf_free esp-idf/bt/libbt.a(os_mbuf.c.obj) +os_mbuf_free_chain esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_sm_sc.c.obj) + esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) + esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + esp-idf/bt/libbt.a(mem.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_att_cmd.c.obj) + esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_att_clt.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +os_mbuf_get esp-idf/bt/libbt.a(os_mbuf.c.obj) +os_mbuf_get_pkthdr esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(transport.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci.c.obj) +os_mbuf_len esp-idf/bt/libbt.a(os_mbuf.c.obj) +os_mbuf_off esp-idf/bt/libbt.a(os_mbuf.c.obj) +os_mbuf_pack_chains esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_l2cap.c.obj) +os_mbuf_pool_init esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(transport.c.obj) + esp-idf/bt/libbt.a(mem.c.obj) +os_mbuf_prepend esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci.c.obj) +os_mbuf_prepend_pullup esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_l2cap.c.obj) +os_mbuf_pullup esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(mem.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) +os_mbuf_trim_front esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(mem.c.obj) +os_mbuf_widen esp-idf/bt/libbt.a(os_mbuf.c.obj) +os_memblock_from esp-idf/bt/libbt.a(os_mempool.c.obj) + esp-idf/bt/libbt.a(transport.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) +os_memblock_get esp-idf/bt/libbt.a(os_mempool.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(transport.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +os_memblock_put esp-idf/bt/libbt.a(os_mempool.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(transport.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +os_memblock_put_from_cb esp-idf/bt/libbt.a(os_mempool.c.obj) + esp-idf/bt/libbt.a(ble_hs_flow.c.obj) +os_memdup esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +os_mempool_clear esp-idf/bt/libbt.a(os_mempool.c.obj) + esp-idf/bt/libbt.a(transport.c.obj) +os_mempool_ext_clear esp-idf/bt/libbt.a(os_mempool.c.obj) + esp-idf/bt/libbt.a(transport.c.obj) +os_mempool_ext_init esp-idf/bt/libbt.a(os_mempool.c.obj) + esp-idf/bt/libbt.a(transport.c.obj) + esp-idf/bt/libbt.a(mem.c.obj) +os_mempool_info_get_next esp-idf/bt/libbt.a(os_mempool.c.obj) +os_mempool_init esp-idf/bt/libbt.a(os_mempool.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_hs_conn.c.obj) + esp-idf/bt/libbt.a(transport.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(mem.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_gap.c.obj) + esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) + esp-idf/bt/libbt.a(ble_gattc.c.obj) + esp-idf/bt/libbt.a(ble_hs.c.obj) +os_mempool_is_sane esp-idf/bt/libbt.a(os_mempool.c.obj) +os_mempool_module_init esp-idf/bt/libbt.a(os_mempool.c.obj) + esp-idf/bt/libbt.a(nimble_port.c.obj) +os_mempool_unregister esp-idf/bt/libbt.a(os_mempool.c.obj) +os_mktime esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +os_mqueue_get esp-idf/bt/libbt.a(os_mbuf.c.obj) +os_mqueue_init esp-idf/bt/libbt.a(os_mbuf.c.obj) +os_mqueue_put esp-idf/bt/libbt.a(os_mbuf.c.obj) +os_msys_buf_alloc esp-idf/bt/libbt.a(os_msys_init.c.obj) + esp-idf/bt/libbt.a(transport.c.obj) +os_msys_buf_free esp-idf/bt/libbt.a(os_msys_init.c.obj) + esp-idf/bt/libbt.a(transport.c.obj) +os_msys_count esp-idf/bt/libbt.a(os_mbuf.c.obj) +os_msys_get esp-idf/bt/libbt.a(os_mbuf.c.obj) +os_msys_get_pkthdr esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) +os_msys_init esp-idf/bt/libbt.a(os_msys_init.c.obj) + esp-idf/bt/libbt.a(nimble_port.c.obj) +os_msys_num_free esp-idf/bt/libbt.a(os_mbuf.c.obj) +os_msys_register esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(os_msys_init.c.obj) +os_msys_reset esp-idf/bt/libbt.a(os_mbuf.c.obj) + esp-idf/bt/libbt.a(os_msys_init.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(scan.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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/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) +patch_hci_look_for_dbg_evt_desc /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_msg.o) +patch_lc_auth_cmp /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) +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_rx_dco_cal_1step /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/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/freertos/libfreertos.a(port.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pend_flag_periodic_cal /home/djordje/Data/Documents/Espressif/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/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) +periph_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +periph_module_reset esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +phy_ant_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_bt_pll_track /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) +phy_bt_pll_track_en /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_bt_power_track /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) +phy_bt_power_track_en /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_bttx_low_power /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_byte_to_word /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_chan_dump_cfg /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +phy_chan_filt_set /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +phy_chan_gain_table /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_chan_pwr_index /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_chan_target_power /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_change_channel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) +phy_change_channel_nomac /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +phy_close_pa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_close_rf /home/djordje/Data/Documents/Espressif/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_dig_reg_backup /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_dis_hw_set_freq /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_dis_pwdet_one /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_disable_low_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +phy_en_hw_set_freq /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_enable_low_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +phy_enter_critical esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_exit_critical esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_force_wifi_chan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +phy_force_wifi_chan_en /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_freq_correct_opt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_freq_offset /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_freq_wifi_only /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_get_adc_rand /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_get_bb_freqoffset /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_get_fetx_delay /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +phy_get_most_tpw /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +phy_get_rf_cal_version /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_get_romfuncs /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_get_rx_freq /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_get_tx_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_get_txpwr_param /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_in_most_power /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_in_most_power_bk /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_in_vdd33_offset /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_init_flag /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_init_pwr_print /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_meas_noise_floor /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_pwdet_always_en /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_pwdet_onetime_en /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_pwdet_onetime_flag /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_reg_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_rfcal_data_check /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_rx11blr_cfg /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_rx_sense_set /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_rxbb_dc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_rxrf_dc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_set_bbfreq_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_set_bt_dig_gain /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_set_most_tpw /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +phy_set_most_tpw_disbg /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_set_most_tpw_flag /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_set_most_tpw_index /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_sw_set_chan_en /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_tx_power_out /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_tx_pwr_error /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_unforce_wifi_chan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +phy_version_print /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_version_str /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_wakeup_init /home/djordje/Data/Documents/Espressif/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_pll_track /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_wifi_pll_track_en /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +pll_correct_dcap /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +pm_active_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_allow_tx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_attach /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_beacon_misc_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_beacon_monitor_configure /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_beacon_monitor_tbtt_allowed /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_beacon_monitor_tbtt_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_beacon_monitor_tbtt_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_beacon_monitor_tbtt_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_beacon_monitor_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_beacon_timestamp_statistic /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_check_state /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +pm_coex_schm_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_coex_schm_process_restart /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_coex_separate_connectionless_window /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_coex_slice_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_coex_tbtt_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_connectionless_module_set_wake_interval /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_connectionless_wake_interval_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_connectionless_wake_window_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_deattach /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_disable_disconnected_sleep_delay_timer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_disable_dream_timer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_disable_sleep_delay_timer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_disconnected_sleep /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_disconnected_sleep_delay_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_disconnected_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_disconnected_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_disconnected_wake /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_dream /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_dream_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_enable_active_timer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_enable_disconnected_sleep_delay_timer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_enable_dream_timer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_enable_sleep_delay_timer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_enable_sta_disconnected_power_management /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_force_scan_unlock /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_get_connectionless_status /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_get_idle_wait_time /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_get_sleep_type /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +pm_go_to_sleep /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +pm_go_to_wake /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +pm_hmac_rx_data_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +pm_is_dream /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +pm_is_in_wifi_slice_threshold /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_is_open /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +pm_is_sleeping /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +pm_is_waked /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_keep_alive /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_mac_sleep /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_mac_wakeup /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_mesh_set_next_tbtt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_noise_check /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_noise_check_disable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_noise_check_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_noise_check_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_off_channel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +pm_on_beacon_rx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_on_channel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +pm_on_coex_schm_process_restart /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +pm_on_coex_schm_status_config /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +pm_on_coex_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_on_data_rx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_on_data_tx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_on_data_tx_done /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_on_probe_resp_rx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +pm_parse_beacon /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_pend_noise_check /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_process_tim /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_register_connectionless_wake_window /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_register_pm_tx_null_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_rx_beacon_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_rx_data_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_scan_lock /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_scan_unlock /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_send_nullfunc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +pm_send_probe_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +pm_send_probe_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +pm_send_sleep_null_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_send_wake_null_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_set_keep_alive_time /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_set_next_tbtt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_set_sleep_delay_time /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_set_sleep_type /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_sleep /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_sleep_delay_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_sleep_for /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +pm_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +pm_tbtt_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_try_scan_unlock /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_tx_data_done_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_tx_data_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_tx_null_data_done_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +pm_unregister_connectionless_wake_window /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_update_by_connectionless_status /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_update_light_sleep_default_params /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_update_next_tbtt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_update_params /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_wake_done /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_wake_up /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppAdd2AMPDUTail /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppAddTimCount /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppAssembleAMPDU /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppAssembleMicHdr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppCalFrameTimes /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppCalSubFrameLength /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppCalTkipMic /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppCalTxAMPDULength /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppCheckIsConnTraffic /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppCheckTxAMPDUlength /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppCheckTxConnTrafficIdle /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +ppCheckTxIdle /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ppCheckTxQIdle /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +ppClearRxFragment /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ppClearTxq /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppDequeueRxq_Locked /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppDequeueTxDone_Locked /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppDequeueTxQ /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppDirectRecycleAmpdu /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppDisableQueue /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppDiscardMPDU /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppEmptyDelimiterLength /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppEnableQueue /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppEnqueueRxq /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppEnqueueTxDone /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppFetchTxQFirstAvail /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppFillAMPDUBar /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppGetTaskHdl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppGetTxQFirstAvail_Locked /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppGetTxframe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppInitTxq /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppInstallKey /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ppMapTxQueue /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppMapWaitTxq /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppMessageInQ /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppPauseTxAMPDU /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppPrepareBarFrame /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppProcTxCallback /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppProcTxDone /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppProcTxSecFrame /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppProcessRxPktHdr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppProcessTxQ /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppProcessWaitQ /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppProcessWaitingQueue /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +ppReSendBar /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppRecordBarRRC /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppRecycleAmpdu /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppRecycleRxPkt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppRecycleTxBuf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppRegisterPromisRxCallback /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppRegisterRxCallback /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppRegisterTxCallback /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppRegisterTxDoneUserActionCallback /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppRegressAmpdu /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppResortTxAMPDU /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppResumeTxAMPDU /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppRollBackTxQ /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppRxFragmentProc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppRxPkt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppRxProtoProc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppSearchTxQueue /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppSearchTxframe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppSelectNextQueue /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppSetBarRate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppSetInterface /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppSubFromAMPDU /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppTask /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppTxPkt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +ppTxProtoProc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppTxqEmpty /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppTxqUpdateBitmap /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppUnregisterTxCallback /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_allow_cut_sevt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_attach /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_can_cut_evt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_can_cut_sevt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_coex_tx_release /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_coex_tx_request /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_create_task /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_deattach /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_default_event_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_delete_task /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_gettid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_hdrsize /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_need_cut_rx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_post /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_register_config_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_register_michael_mic_failure_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_register_net80211_tx_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_register_timer_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_register_tx_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +pp_set_cut_evt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_set_cut_rx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_sig_cnt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_stop_sw_txq /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_timer_do_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_timer_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pp_timer_register_post_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_unregister_tx_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +print_roots_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +print_sta_pmk /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +print_txupQ_pending /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +printf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) + esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) + esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +printf_decode esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +printf_encode esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +protobuf_c_buffer_simple_append esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) +protobuf_c_empty_string esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) +protobuf_c_enum_descriptor_get_value esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) +protobuf_c_enum_descriptor_get_value_by_name esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) +protobuf_c_message_check esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) +protobuf_c_message_descriptor_get_field esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) +protobuf_c_message_descriptor_get_field_by_name esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) +protobuf_c_message_free_unpacked esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +protobuf_c_message_get_packed_size esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +protobuf_c_message_init esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) +protobuf_c_message_pack esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +protobuf_c_message_pack_to_buffer esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +protobuf_c_message_unpack esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +protobuf_c_service_descriptor_get_method_by_name esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) +protobuf_c_service_destroy esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) +protobuf_c_service_generated_init esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) +protobuf_c_service_invoke_internal esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) +protobuf_c_version esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) +protobuf_c_version_number esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) +protocomm_add_endpoint esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +protocomm_ble_start esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) +protocomm_ble_stop esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) +protocomm_close_session esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) +protocomm_delete esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +protocomm_new esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +protocomm_open_session esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) +protocomm_remove_endpoint esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +protocomm_req_handle esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) +protocomm_security0 esp-idf/protocomm/libprotocomm.a(security0.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +protocomm_security1 esp-idf/protocomm/libprotocomm.a(security1.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +protocomm_security2 esp-idf/protocomm/libprotocomm.a(security2.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +protocomm_set_security esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +protocomm_set_version esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +protocomm_unset_security esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) +protocomm_unset_version esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) +prvTaskPriorityRaise esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +prvTaskPriorityRestore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +psa_aead_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_decrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_encrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_generate_nonce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_set_lengths esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_set_nonce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_update_ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_allocate_buffer_to_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_asymmetric_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_asymmetric_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_can_do_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_decrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_encrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_generate_iv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_set_iv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_close_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +psa_copy_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_copy_key_material_into_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +psa_crypto_driver_pake_get_cipher_suite esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_driver_pake_get_password esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_driver_pake_get_password_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_driver_pake_get_peer esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_driver_pake_get_peer_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_driver_pake_get_role esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_driver_pake_get_user esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_driver_pake_get_user_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_destroy_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +psa_destroy_persistent_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_aead_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_aead_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_aead_decrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_aead_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_aead_encrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_aead_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_aead_set_lengths esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_aead_set_nonce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_aead_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_aead_update_ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_aead_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_asymmetric_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_asymmetric_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_cipher_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_cipher_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_cipher_decrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_cipher_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_cipher_encrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_cipher_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_cipher_set_iv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_cipher_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_copy_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_export_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_export_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_generate_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_get_builtin_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +psa_driver_wrapper_get_key_buffer_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_get_key_buffer_size_from_key_data esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_hash_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_hash_compute esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_hash_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_hash_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_hash_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_import_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_key_agreement esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_mac_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_mac_compute esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_mac_sign_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_mac_sign_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_mac_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_mac_verify_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_mac_verify_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_pake_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_pake_get_implicit_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +psa_driver_wrapper_pake_input esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +psa_driver_wrapper_pake_output esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +psa_driver_wrapper_pake_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_sign_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_sign_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_sign_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_sign_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_sign_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_sign_message esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_verify_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_verify_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_verify_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_verify_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_verify_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_verify_message esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_export_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_export_key_internal esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +psa_export_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_export_public_key_internal esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +psa_format_key_data_for_storage esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_free_persistent_key_data esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +psa_generate_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_generate_key_internal esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +psa_generate_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_generic_status_to_mbedtls esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +psa_get_and_lock_key_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_get_empty_key_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_get_key_attributes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_get_key_domain_parameters esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) +psa_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) +psa_hash_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_hash_compare esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_hash_compute esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) +psa_hash_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) +psa_hash_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) +psa_hash_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) +psa_hash_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_import_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +psa_import_key_into_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +psa_initialize_key_slots esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_interruptible_get_max_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_interruptible_set_max_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_is_key_present_in_storage esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_is_valid_key_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_its_get esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_its_get_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_its_remove esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_its_set esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_key_agreement_raw_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +psa_key_derivation_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_get_capacity esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_input_bytes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_input_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_key_agreement esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_output_bytes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_output_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_set_capacity esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_load_persistent_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +psa_mac_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_compute esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_sign_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_sign_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_verify_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_verify_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_open_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +psa_pake_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_pake_get_implicit_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_pake_input esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_pake_output esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_pake_set_password_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_pake_set_peer esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_pake_set_role esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_pake_set_user esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_pake_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_parse_key_data_from_storage esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_pk_status_to_mbedtls esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +psa_purge_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +psa_raw_key_agreement esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_remove_key_data_from_memory esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_reset_key_attributes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_save_persistent_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_set_key_domain_parameters esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +psa_sign_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +psa_sign_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_hash_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +psa_sign_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_message esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_message_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +psa_status_to_mbedtls esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +psa_to_lms_errors esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +psa_to_pk_rsa_errors esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +psa_unlock_key_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_validate_key_location esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_validate_key_persistence esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_validate_unstructured_key_bit_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_hash_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +psa_verify_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_message esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_message_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +psa_wipe_all_key_slots esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_wipe_key_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +pthread_attr_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_getdetachstate esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_getstacksize esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_init esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_setdetachstate esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_setstacksize esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_cancel esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_cond_broadcast esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_cond_destroy esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_cond_init esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_cond_signal esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_cond_timedwait esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_cond_wait esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_condattr_init esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_condattr_setclock esp-idf/newlib/libnewlib.a(pthread.c.obj) +pthread_create esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_detach esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_equal esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_exit esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_getspecific esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_lazy_init_lock esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_mutex_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_mutex_init esp-idf/pthread/libpthread.a(pthread.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_mutex_lock esp-idf/pthread/libpthread.a(pthread.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_mutex_timedlock esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_trylock esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_mutex_unlock esp-idf/pthread/libpthread.a(pthread.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_alloc.o) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_mutexattr_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutexattr_gettype esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutexattr_init esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutexattr_settype esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_once esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_rwlock_destroy esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_init esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_rdlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) +pthread_setspecific esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/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) +put_be16 esp-idf/bt/libbt.a(endian.c.obj) +put_be24 esp-idf/bt/libbt.a(endian.c.obj) +put_be32 esp-idf/bt/libbt.a(endian.c.obj) +put_be64 esp-idf/bt/libbt.a(endian.c.obj) +put_le16 esp-idf/bt/libbt.a(endian.c.obj) + esp-idf/bt/libbt.a(ble_att_svr.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) + esp-idf/bt/libbt.a(ble_hs_hci.c.obj) + esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/bt/libbt.a(ble_l2cap.c.obj) + esp-idf/bt/libbt.a(ble_uuid.c.obj) +put_le24 esp-idf/bt/libbt.a(endian.c.obj) +put_le32 esp-idf/bt/libbt.a(endian.c.obj) + esp-idf/bt/libbt.a(ble_hs_adv.c.obj) + esp-idf/bt/libbt.a(ble_uuid.c.obj) +put_le64 esp-idf/bt/libbt.a(endian.c.obj) +putc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) +putchar /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) +putle32 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +puts /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_api.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.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(port_common.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +pwrdet_offset /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +pxCurrentTCB 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) +pxTaskGetNext esp-idf/freertos/libfreertos.a(tasks.c.obj) +pxTaskGetStackStart esp-idf/freertos/libfreertos.a(tasks.c.obj) +qrcodegen_calcSegmentBufferSize esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) +qrcodegen_encodeBinary esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) +qrcodegen_encodeSegments esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) +qrcodegen_encodeSegmentsAdvanced esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) +qrcodegen_encodeText esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) +qrcodegen_getModule esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) +qrcodegen_getSize esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) +qrcodegen_isAlphanumeric esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) +qrcodegen_isNumeric esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) +qrcodegen_makeAlphanumeric esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) +qrcodegen_makeBytes esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) +qrcodegen_makeEci esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) +qrcodegen_makeNumeric esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) +qsort /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) +r_LM_AddSniff /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sniff.o) +r_LM_GetLocalNameSeg /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) +r_assert esp-idf/bt/libbt.a(bt.c.obj) +r_assert_err /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_assert_param /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_assert_warn /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_bt_util_buf_acl_rx_alloc /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) +r_bt_util_buf_acl_rx_alloc_wrapper /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) +r_bt_util_buf_acl_rx_free /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) +r_bt_util_buf_acl_rx_free_wrapper /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) +r_bt_util_buf_acl_tx_alloc /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) +r_bt_util_buf_acl_tx_alloc_wrapper /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) +r_bt_util_buf_acl_tx_free /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) +r_bt_util_buf_acl_tx_free_wrapper /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) +r_bt_util_buf_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) +r_bt_util_buf_lmp_tx_alloc /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) +r_bt_util_buf_lmp_tx_alloc_wrapper /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) +r_bt_util_buf_lmp_tx_free /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) +r_bt_util_buf_lmp_tx_free_wrapper /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) +r_btdm_option_data /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld.o) +r_co_nb_good_channels /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(co_utils.o) +r_dbg_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg.o) +r_dump_data /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_ea_alarm_set /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) +r_ea_elt_insert /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) +r_ea_finetimer_isr /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) +r_ea_interval_duration_req /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) +r_ea_time_get_halfslot_rounded /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) +r_ecc_generate_key256_with_check /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ecc_p256.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +r_eif_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +r_eif_finish_transfers /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_eif_flow_off /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +r_eif_flow_on /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +r_eif_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_eif_isr /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_eif_recv /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +r_eif_send /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +r_emi_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(emi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_flash_erase /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vflash.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_flash_identify /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vflash.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_flash_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vflash.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_flash_read /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vflash.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_flash_write /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vflash.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_get_stack_usage /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_global_int_disable /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ll.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_global_int_restore /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ll.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_global_int_start /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ll.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_global_int_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ll.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_hci_acl_tx_data_alloc /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) +r_hci_bt_acl_bdaddr_register_hack /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) +r_hci_bt_acl_bdaddr_unregister_hack /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) +r_hci_look_for_cmd_desc /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_msg.o) +r_hci_look_for_cmd_desc_hack /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_msg.o) +r_hci_look_for_dbg_evt_desc /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_msg.o) +r_hci_send_2_host /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) +r_hci_send_2_host_hack /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) +r_hci_tl_send /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) +r_huart_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) +r_huart_finish_transfers /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) +r_huart_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) +r_huart_isr /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) +r_huart_trans_isr /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) +r_intc_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(intc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_ip_funcs_p /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(intc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_sp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_util.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_util.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sscan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sched.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_pscan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_inq.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sniff.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sco.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_lmppdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_msg.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +r_ke_msg_send /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_msg.o) +r_ke_task_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) +r_lc_afh_start /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) +r_lc_auth_cmp /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) +r_lc_calc_link_key /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) +r_lc_end_of_sniff_nego /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) +r_lc_enter_sniff_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) +r_lc_hl_connect /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) +r_lc_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) +r_lc_init_hack /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) +r_lc_mutual_auth_end2 /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) +r_lc_ptt_cmp /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) +r_lc_rem_sniff /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) +r_lc_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) +r_lc_reset_hack /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) +r_lc_sco_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sco.o) +r_lc_sco_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sco.o) +r_lc_send_lmp /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_lmppdu.o) +r_lc_start /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) +r_lc_start_hack /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) +r_ld_acl_data_tx /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +r_ld_acl_lmp_flush /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +r_ld_acl_slot_offset_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +r_ld_acl_sniff /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +r_ld_acl_sniff_wrapper /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +r_ld_acl_ssr_set /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +r_ld_acl_start /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +r_ld_acl_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +r_ld_fm_clk_isr /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) +r_ld_fm_frame_isr /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) +r_ld_fm_prog_push /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) +r_ld_fm_rx_isr /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) +r_ld_fm_sket_isr /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) +r_ld_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld.o) +r_ld_init_hark /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld.o) +r_ld_pscan_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_pscan.o) +r_ld_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld.o) +r_ld_reset_hark /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld.o) +r_ld_sched_sniff_add /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sched.o) +r_ld_sched_sniff_add_wrapper /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sched.o) +r_ld_sched_sniff_remove /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sched.o) +r_ld_sco_audio_isr /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +r_ld_sco_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +r_ld_sscan_start /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sscan.o) +r_ld_sscan_start_hark /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sscan.o) +r_led_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(led.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_led_set_all /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(led.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_llc_common_nb_of_pkt_comp_evt_send /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) +r_llc_llcp_recv_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) +r_llc_llcp_recv_handler_hack /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) +r_llc_pdu_defer /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_util.o) +r_llc_start /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) +r_llc_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) +r_llc_stop_hack /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) +r_llc_util_bw_mgt /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_util.o) +r_llc_util_get_free_conhdl /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_util.o) +r_llc_util_set_auth_payl_to_margin /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_util.o) +r_lld_adv_start /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) +r_lld_adv_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) +r_lld_adv_stop_hack /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) +r_lld_con_start /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) +r_lld_con_update_after_param_req /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) +r_lld_evt_deffered_elt_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +r_lld_evt_elt_delete /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +r_lld_evt_end /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +r_lld_evt_end_isr /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +r_lld_evt_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +r_lld_evt_init_evt /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +r_lld_evt_init_wrapper /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +r_lld_evt_move_to_slave /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +r_lld_evt_restart /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +r_lld_evt_rx /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +r_lld_evt_schedule /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +r_lld_evt_schedule_next /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +r_lld_evt_schedule_next_instant_hack /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +r_lld_evt_update_create /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) +r_lld_get_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) +r_lld_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) +r_lld_move_to_master_hack /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) +r_lld_move_to_slave_hack /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) +r_lld_pdu_check /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) +r_lld_pdu_rx_handler /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) +r_lld_pdu_tx_flush /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) +r_lld_pdu_tx_prog /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) +r_lld_scan_start /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) +r_lld_scan_start_hack /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) +r_lld_scan_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) +r_lld_scan_stop_hack /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) +r_lld_util_instant_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_util.o) +r_llm_con_req_ind /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) +r_llm_con_req_tx_cfm /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) +r_llm_create_con /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) +r_llm_end_evt_defer /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) +r_llm_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) +r_llm_init_hack /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) +r_llm_le_adv_report_ind /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) +r_llm_pdu_defer /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) +r_llm_set_adv_en /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) +r_llm_set_adv_param /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) +r_llm_set_scan_en /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) +r_llm_set_scan_param /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) +r_llm_test_mode_start_rx /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) +r_llm_test_mode_start_tx /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) +r_lm_dhkey_calc_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_sp.o) +r_lm_err_data_rep_en_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) +r_lm_get_nb_acl /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) +r_lm_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) +r_lm_init_wrap /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) +r_modules_funcs_p /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ecc_p256.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_util.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_pscan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_inq.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sniff.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sco.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_lmppdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_msg.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(co_utils.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +r_nvds_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) +r_osi_funcs_p /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(osi.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ll.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(intc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(dbg_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(config_funcs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +r_platform_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_plf_funcs_p /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(intc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(bt_util_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vflash.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(nvds.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_util.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_llcp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_sched.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_pscan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_inq.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sniff.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_lmppdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_msg.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci_tl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +r_plf_funcs_ro /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +r_rf_rw_bt_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +r_rf_rw_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) +r_rf_rw_le_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +r_rw_main /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_rw_schedule /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +r_rw_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +r_rwble_isr /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) +r_rwbt_isr /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) +r_rwbt_sleep_wakeup /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) +r_rwbtdm_isr /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(intc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_rwip_eif_get /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_rwip_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) +r_rwip_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) +r_rwip_reset_ext /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) +r_rwip_sleep /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) +r_rwip_wakeup /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) +r_rwip_wakeup_end /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) +r_syscntl_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(syscntl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +r_vhci_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) +r_vhci_finish_transfers /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) +r_vhci_init /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) +r_vhci_isr /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) +r_wfi /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ll.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(plf_funcs.o) +raise esp-idf/newlib/libnewlib.a(syscalls.c.obj) +ram_bb_bss_bw_40_en /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_bb_bss_cbw40_dig /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_bb_tx_ht20_cen /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_cbw2040_cfg /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_check_noise_floor /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_chip_i2c_readReg /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_chip_i2c_writeReg /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_dc_iq_est /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_disable_agc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_en_pwdet /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_enable_agc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_gen_rx_gain_table /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_get_fm_sar_dout /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_index_to_txbbgain /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_iq_est_disable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_iq_est_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_lld_pdu_tx_flush /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) +ram_meas_tone_pwr_db /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_pbus_debugmode /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_pbus_force_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_pbus_force_test /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_pbus_rx_dco_cal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_pbus_xpd_tx_on /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_phy_get_noisefloor /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_phy_get_vdd33 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_read_sar_dout /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_restart_cal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_rfcal_pwrctrl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_rfpll_reset /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_rfpll_set_freq /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_set_chan_cal_interp /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_set_noise_floor /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_set_pbus_mem /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_set_rxclk_en /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_set_txcap_reg /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_set_txclk_en /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_spur_coef_cfg /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_start_tx_tone /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_tx_pwctrl_bg_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_tx_pwr_backoff /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +ram_txbbgain_to_index /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_txcal_work_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_txdc_cal_v70 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_txiq_cover /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +ram_txiq_get_mis_pwr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_wait_rfpll_cal_end /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_write_gain_mem /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +rand /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +range_read_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +range_write_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +raw_bind esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_bind_netif esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +raw_connect esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_disconnect esp-idf/lwip/liblwip.a(raw.c.obj) +raw_input esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +raw_netif_ip_addr_changed esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +raw_new esp-idf/lwip/liblwip.a(raw.c.obj) +raw_new_ip_type esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_recv esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_remove esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_send esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_sendto esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_sendto_if_src esp-idf/lwip/liblwip.a(raw.c.obj) +rc11BSchedTbl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rc11GSchedTbl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rc11NSchedTbl /home/djordje/Data/Documents/Espressif/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(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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcAttach /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +rcClearCurAMPDUSched /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcClearCurSched /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcClearCurStat /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcGet11BHighestRateIdx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcGet11GHighestRateIdx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcGet11NHighestRateIdx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcGetAmpduSched /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +rcGetDefaultHigestRateIdx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcGetHighestRateIdx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcGetRate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +rcGetSched /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +rcLoRaRate2SchedIdx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcLoRaSchedTbl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcLowerSched /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcP2P11GSchedTbl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcP2P11NSchedTbl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcReachRetryLimit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +rcSetBarRate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +rcSetTxAmpduLimit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcTxUpdatePer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcUpSched /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcUpdateAMPDUParam /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rcUpdateAckSnr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcUpdatePhyMode /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rcUpdateRate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcUpdateRxDone /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +rcUpdateTxDone /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +rcUpdateTxDoneAmpdu2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +rc_cal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +rc_disable_trc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_disable_trc_by_interface /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_enable_trc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_get_G6M_sched /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_get_default_sched /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_get_fix_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_get_mask /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rc_get_sta_trc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rc_get_trc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_get_trc_by_index /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_get_trc_default /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rc_only_sta_trc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rc_set_fix_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_set_per_conn_fix_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +re_entry /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +readdir esp-idf/vfs/libvfs.a(vfs.c.obj) +readdir_r esp-idf/vfs/libvfs.a(vfs.c.obj) +realloc esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/bt/libbt.a(ble_gatts.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +reconnect_flag /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +reconnect_type2str /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +reg_init_begin /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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_empty /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +register_chipv7_phy_init_param /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +register_ieee80211_action_vendor_get_key_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +register_ieee80211_action_vendor_spec_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +register_ieee80211_rfid_locp_recv_cb /home/djordje/Data/Documents/Espressif/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.c.obj) +remove /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-remove.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) +rename /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +reset_rf_dig /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +resp_apply_config__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +resp_apply_config__free_unpacked esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +resp_apply_config__get_packed_size esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +resp_apply_config__init esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) +resp_apply_config__pack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +resp_apply_config__pack_to_buffer esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +resp_apply_config__unpack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +resp_ctrl_reprov__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +resp_ctrl_reprov__free_unpacked esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +resp_ctrl_reprov__get_packed_size esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +resp_ctrl_reprov__init esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) +resp_ctrl_reprov__pack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +resp_ctrl_reprov__pack_to_buffer esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +resp_ctrl_reprov__unpack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +resp_ctrl_reset__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +resp_ctrl_reset__free_unpacked esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +resp_ctrl_reset__get_packed_size esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +resp_ctrl_reset__init esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) +resp_ctrl_reset__pack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +resp_ctrl_reset__pack_to_buffer esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +resp_ctrl_reset__unpack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +resp_get_status__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +resp_get_status__free_unpacked esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +resp_get_status__get_packed_size esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +resp_get_status__init esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) +resp_get_status__pack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +resp_get_status__pack_to_buffer esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +resp_get_status__unpack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +resp_scan_result__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +resp_scan_result__free_unpacked esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +resp_scan_result__get_packed_size esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +resp_scan_result__init esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) +resp_scan_result__pack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +resp_scan_result__pack_to_buffer esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +resp_scan_result__unpack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +resp_scan_start__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +resp_scan_start__free_unpacked esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +resp_scan_start__get_packed_size esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +resp_scan_start__init esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) +resp_scan_start__pack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +resp_scan_start__pack_to_buffer esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +resp_scan_start__unpack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +resp_scan_status__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +resp_scan_status__free_unpacked esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +resp_scan_status__get_packed_size esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +resp_scan_status__init esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) +resp_scan_status__pack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +resp_scan_status__pack_to_buffer esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +resp_scan_status__unpack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +resp_set_config__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +resp_set_config__free_unpacked esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +resp_set_config__get_packed_size esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +resp_set_config__init esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) +resp_set_config__pack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +resp_set_config__pack_to_buffer esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +resp_set_config__unpack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +retrans_timer esp-idf/lwip/liblwip.a(nd6.c.obj) +rewinddir esp-idf/vfs/libvfs.a(vfs.c.obj) +rf_cal_data_backup /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +rf_cal_data_recovery /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +rf_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +rfcal_bb_atten_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +rfcal_txiq /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +rfpll_offset_delta /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +rfrx_dcap_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +rfrx_vga_lna_dcap /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +roc_op_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +rotl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +rotr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +roundup2 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) +route_announce_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +route_announce_timer_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +route_announce_timer_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +routetype2str /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +rssi_margin /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rssi_saved /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_32k_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_8md256_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_apb_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_apb_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_apll_coeff_calc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_apll_coeff_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_apll_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_cal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cal_ratio esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_clk_cpu_freq_get_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cpu_freq_mhz_to_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cpu_freq_set_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cpu_freq_set_config_fast esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_cpu_freq_set_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_cmd_wakeup_conf /home/djordje/Data/Documents/Espressif/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) +rtc_dig_clk8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_get_st /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_init_full /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_pad_gpio_wakeup /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_pads_funie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +rtc_pads_funsel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_pads_hold /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_pads_muxsel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +rtc_pads_pd /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +rtc_pads_pu /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +rtc_pads_slpie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +rtc_pads_slpoe /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +rtc_pads_slpsel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_powerdown_rf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_powerup_rf /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_slp_prep_lite_12M /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_soc_clk_ck12m /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +rwip_coex_cfg /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_pdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +rwip_env /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) +rwip_priority /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_inq.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_fm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) +rwip_rf /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_util.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_hci.o) +rx11NRate2AMPDULimit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rx_blocking_set /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +rx_gain_level /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +rxdc_est_min /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +rxmax_ext_level /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +s0_session_cmd__descriptor esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) +s0_session_cmd__free_unpacked esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) +s0_session_cmd__get_packed_size esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) +s0_session_cmd__init esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) +s0_session_cmd__pack esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) +s0_session_cmd__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) +s0_session_cmd__unpack esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) +s0_session_resp__descriptor esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) +s0_session_resp__free_unpacked esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) +s0_session_resp__get_packed_size esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) +s0_session_resp__init esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(security0.c.obj) +s0_session_resp__pack esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) +s0_session_resp__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) +s0_session_resp__unpack esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) +s2_session_cmd0__descriptor esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_cmd0__free_unpacked esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_cmd0__get_packed_size esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_cmd0__init esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_cmd0__pack esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_cmd0__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_cmd0__unpack esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_cmd1__descriptor esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_cmd1__free_unpacked esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_cmd1__get_packed_size esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_cmd1__init esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_cmd1__pack esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_cmd1__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_cmd1__unpack esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_resp0__descriptor esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_resp0__free_unpacked esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_resp0__get_packed_size esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_resp0__init esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.c.obj) +s2_session_resp0__pack esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_resp0__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_resp0__unpack esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_resp1__descriptor esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_resp1__free_unpacked esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_resp1__get_packed_size esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_resp1__init esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.c.obj) +s2_session_resp1__pack esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_resp1__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s2_session_resp1__unpack esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +s_avail_seq /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +s_dp /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +s_fix_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +s_fix_rate_mask /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +s_fragment /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +s_is_6m /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) +s_mesh_beacon_interval /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +s_mesh_running_channel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +s_mesh_send_mutex /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +s_mesh_stop_mutex /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +s_netstack_free /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +s_netstack_ref /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +s_ni /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +s_register_config_driver esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +s_sd /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +s_wifi_api_lock /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +s_wifi_queue /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +s_wifi_task_hdl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_add_probe_ssid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_build_chan_list /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_cancel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +scan_channel_setting /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld.o) +scan_check_hidden /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_connect_state /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_enter_oper_channel_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +scan_fill_wps_scan_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_flush_all_tx_buf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +scan_freq_cal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_get_apnum /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +scan_get_owe_channel_info /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_get_scan_id /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +scan_get_type /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_hidden_ssid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_inter_channel_timeout_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +scan_parse_beacon /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +scan_parse_ht2040_coex /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_pm_channel_op_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_prefer_chan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_profile_check /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_remove_bssid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_remove_probe_ssid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_reset_cipher_and_akm /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_result_print /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +scan_set_act_duration /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_set_desChan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_set_home_chan_dwell_time /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_set_pas_duration /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_set_scan_id /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +scan_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_status2str /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +scan_update_scan_history /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_validate_owe_scenarios /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scannum /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +sched_yield esp-idf/pthread/libpthread.a(pthread.c.obj) +sdk_config_get_bt_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(sdk_config.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rf_espressif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(hci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +sdk_config_get_bt_sleep_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(sdk_config.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +sdk_config_get_bt_sleep_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(sdk_config.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm_util.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ea.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +sdk_config_get_mask /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(sdk_config.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(intc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +sdk_config_get_opts /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(sdk_config.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(intc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(llc_util.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_sco.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(huart.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(coex_schm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +sdk_config_set_bt_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(sdk_config.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +sdk_config_set_bt_sleep_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(sdk_config.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +sdk_config_set_bt_sleep_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(sdk_config.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +sdk_config_set_mask /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(sdk_config.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +sdk_config_set_opts /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(sdk_config.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +sec0_msg_type__descriptor esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) +sec0_payload__descriptor esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) +sec0_payload__free_unpacked esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) +sec0_payload__get_packed_size esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) +sec0_payload__init esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(security0.c.obj) +sec0_payload__pack esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) +sec0_payload__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) +sec0_payload__unpack esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) +sec1_msg_type__descriptor esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +sec1_payload__descriptor esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) +sec1_payload__free_unpacked esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +sec1_payload__get_packed_size esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +sec1_payload__init esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) +sec1_payload__pack esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +sec1_payload__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +sec1_payload__unpack esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +sec2_msg_type__descriptor esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +sec2_payload__descriptor esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) +sec2_payload__free_unpacked esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +sec2_payload__get_packed_size esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +sec2_payload__init esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.c.obj) +sec2_payload__pack esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +sec2_payload__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +sec2_payload__unpack esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) +sec_scheme_version__descriptor esp-idf/protocomm/libprotocomm.a(session.pb-c.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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +session_cmd0__descriptor esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_cmd0__free_unpacked esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_cmd0__get_packed_size esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_cmd0__init esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_cmd0__pack esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_cmd0__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_cmd0__unpack esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_cmd1__descriptor esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_cmd1__free_unpacked esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_cmd1__get_packed_size esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_cmd1__init esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_cmd1__pack esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_cmd1__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_cmd1__unpack esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_data__descriptor esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) +session_data__free_unpacked esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) + esp-idf/protocomm/libprotocomm.a(security0.c.obj) +session_data__get_packed_size esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) + esp-idf/protocomm/libprotocomm.a(security0.c.obj) +session_data__init esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) + esp-idf/protocomm/libprotocomm.a(security0.c.obj) +session_data__pack esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) + esp-idf/protocomm/libprotocomm.a(security0.c.obj) +session_data__pack_to_buffer esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) +session_data__unpack esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(security2.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) + esp-idf/protocomm/libprotocomm.a(security0.c.obj) +session_resp0__descriptor esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_resp0__free_unpacked esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_resp0__get_packed_size esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_resp0__init esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) +session_resp0__pack esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_resp0__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_resp0__unpack esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_resp1__descriptor esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_resp1__free_unpacked esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_resp1__get_packed_size esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_resp1__init esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(security1.c.obj) +session_resp1__pack esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_resp1__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +session_resp1__unpack esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) +set_assoc_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +set_bt_chan_cal_interp /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +set_cca /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +set_chan_dig_gain /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +set_chan_freq_hw_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +set_chan_freq_sw_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +set_chan_reg /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +set_chan_rxcomp /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +set_chanfreq /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) +set_chanfreq_nomac /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) +set_channel_rfpll_freq /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +set_most_pwr_reg /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +set_most_tpw /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +set_rx_gain_cal_iq /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +set_rx_gain_table /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +set_rx_gain_testchip_70 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +set_rx_sense /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +set_tx_dig_gain /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +set_tx_gain_table /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +set_tx_gain_table_bt /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +setbuf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setbuf.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +setlocale /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) +settimeofday esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) +setvbuf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setbuf.o) +sha1_prf esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +sha1_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(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(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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) +sleep esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) +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) +slv_ana_v7_init_empty /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +sms4 /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +snprintf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.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/mbedtls/mbedtls/library/libmbedcrypto.a(oid.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/main/libmain.a(app_main.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_mxic.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_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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + esp-idf/json/libjson.a(cJSON.c.obj) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(btdm_log.o) + esp-idf/bt/libbt.a(ble_uuid.c.obj) +spur_cal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +srand /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) +sscanf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) +sta_auth_ft /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_auth_open /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_auth_sae /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_auth_shared /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_bip_check /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_con_timer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +sta_csa_timer /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +sta_get_beacon_timeout /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +sta_get_owe_data /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +sta_input /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +sta_is_wpa3_enabled /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +sta_michael_mic_failure /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +sta_recv_assoc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_recv_ctl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_recv_mgmt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_reset_beacon_timeout /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +sta_retry_assoc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +sta_rx_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +sta_rx_csa /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +sta_rx_eapol /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_rxcb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +sta_sa_query_process_timeout /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +sta_try_sa_query_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +start_cpu0 esp-idf/esp_system/libesp_system.a(startup.c.obj) +start_cpu_other_cores esp-idf/esp_system/libesp_system.a(startup.c.obj) +start_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) +status__descriptor esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) + esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +str_clear_free esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +strcat /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcat.o) + esp-idf/newlib/libnewlib.a(abort.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +strchr /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) +strcmp /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 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(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) + esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/log/liblog.a(log.c.obj) +strcpy /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +strcspn /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +strdup /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +strerror /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) +strerror_l /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) +strerror_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +strlcat /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcat.o) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +strlcpy /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + 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) + esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) +strlen /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcat.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.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(ieee802_11_common.c.obj) + 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(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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_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/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) + esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm.o) + esp-idf/bt/libbt.a(ble_svc_gap.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) + esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(assert.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/log/liblog.a(log.c.obj) +strncmp /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + esp-idf/lwip/liblwip.a(def.c.obj) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_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/json/libjson.a(cJSON.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +strncpy /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/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) + esp-idf/bt/libbt.a(os_mempool.c.obj) +strndup /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) +strnlen /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) +strrchr /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +strstr /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +strtod /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + esp-idf/json/libjson.a(cJSON.c.obj) +strtod_l /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +strtof /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +strtof_l /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +strtok /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +strtok_r /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok_r.o) +strtol /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +strtol_l /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) +strtoll /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) +strtoll_l /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) +strtoul /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) +strtoul_l /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) +strtoull /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) +strtoull_l /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) +supplicant_sta_conn_handler esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +supplicant_sta_disconn_handler esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +sw_scan_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +sw_to_hw /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ecc_p256.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwbt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(rwble.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lm_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lld_evt.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ld_acl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(lc_task.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(ke_task.o) +swap_buf esp-idf/bt/libbt.a(endian.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/bt/libbt.a(ble_sm.c.obj) + esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) +swap_in_place esp-idf/bt/libbt.a(endian.c.obj) + esp-idf/bt/libbt.a(ble_sm_alg.c.obj) + esp-idf/bt/libbt.a(ble_hs_resolv.c.obj) +sys_arch_mbox_fetch esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_arch_mbox_tryfetch esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +sys_arch_protect esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +sys_arch_sem_wait esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +target_power_backoff_qdb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +task_wdt_timeout_abort_xtensa esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) +tcdrain esp-idf/vfs/libvfs.a(vfs.c.obj) +tcflow esp-idf/vfs/libvfs.a(vfs.c.obj) +tcflush esp-idf/vfs/libvfs.a(vfs.c.obj) +tcgetattr esp-idf/vfs/libvfs.a(vfs.c.obj) +tcgetsid esp-idf/vfs/libvfs.a(vfs.c.obj) +tcp_abandon esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_abort esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_accept esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +tkip_decap /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) +tkip_encap /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) +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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_NeedRTS /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_SetTxAmpduState /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_calc_duration /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_ctl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_get_80211_tx_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_get_espnow_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_isAmpduOn /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_isTxAmpduOperational /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +trc_onAmpduOp /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_onDisconnect /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_onPPTxDone /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +trc_onScanDone /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_onScanStart /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_set_80211_tx_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_set_espnow_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_set_per_pkt_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_tid_isTxAmpduOperational /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +trc_update_def_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_update_ifx_phy_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +tsens_read_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +tx_cap_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +tx_cont_cfg /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +tx_cont_dis /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +tx_cont_en /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +tx_msg_id2str /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +tx_paon_set /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +tx_pwctrl_background /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +tx_pwctrl_cal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +tx_pwctrl_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +tx_pwctrl_init_cal /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +tx_pwctrl_track_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +tx_rf_ana_gain /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +tx_state_id2str /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +tx_task_main /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +tx_wifi_err2str /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) +txcal_debuge_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +txiq_cal_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +txopstart_index /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +txpwr_offset /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +txq_opr2str /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +tzset /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_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_baudrate 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_sclk 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/djordje/Data/Documents/Espressif/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_timer/libesp_timer.a(esp_timer.c.obj) +ulTaskGenericNotifyValueClear esp-idf/freertos/libfreertos.a(tasks.c.obj) +ulTaskNotifyTake esp-idf/freertos/libfreertos.a(tasks.c.obj) +unforce_wifi_mode /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_coex/lib/esp32/libcoexist.a(coexist_hw.o) +ungetc /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) +unload_partitions esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +unregister_ieee80211_action_vendor_get_key_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +unregister_ieee80211_action_vendor_spec_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +unregister_ieee80211_rfid_locp_recv_cb /home/djordje/Data/Documents/Espressif/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/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-utoa.o) +uxListRemove esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxQueueMessagesWaiting esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/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/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +uxQueueMessagesWaitingFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.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/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) +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/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vListInitialiseItem esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vListInsert esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vListInsertEnd esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortAssertIfInISR esp-idf/freertos/libfreertos.a(port.c.obj) +vPortCleanUpCoprocArea esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.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/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.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(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.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_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vPortExitCriticalCompliance esp-idf/freertos/libfreertos.a(port.c.obj) +vPortFree esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vPortSetStackWatchpoint esp-idf/freertos/libfreertos.a(port.c.obj) +vPortSetupTimer esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +vPortYield esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/bt/libbt.a(bt.c.obj) +vPortYieldFromInt esp-idf/freertos/libfreertos.a(portasm.S.obj) +vPortYieldOtherCore esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vQueueDelete esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/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_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vQueueWaitForMessageRestricted esp-idf/freertos/libfreertos.a(queue.c.obj) +vRingbufferDelete esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +vRingbufferDeleteWithCaps esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.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) +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/bt/libbt.a(esp_nimble_hci.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vTaskDelayUntil esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskDelete esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vTaskEndScheduler esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskGenericNotifyGiveFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +vTaskGetSnapshot esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +vTaskInternalSetTimeOutState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/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) +vTaskReleaseKernelLock esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) +vTaskRemoveFromUnorderedEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) +vTaskResume esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskSetThreadLocalStoragePointer esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskSetThreadLocalStoragePointerAndDelCallback esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +vTaskSetTimeOutState esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskStartScheduler esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +vTaskSuspend esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vTaskSuspendAll esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +vTaskSwitchContext esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +vTaskTakeKernelLock esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) +valid_key_length esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +valloc esp-idf/newlib/libnewlib.a(heap.c.obj) +vdd33_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +vfiprintf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) +vflash_mem /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vflash.o) +vfprintf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) +vfs_include_syscalls_impl esp-idf/vfs/libvfs.a(vfs.c.obj) +vhci_flow_off /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) +vhci_flow_on /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) +vhci_notify_host_send_available /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(arch_main.o) +vhci_recv /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) +vhci_send /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(vhci.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a(eif.o) +vote_done2str /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +vote_start2str /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +vprintf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + esp-idf/log/liblog.a(log.c.obj) +vsnprintf /home/djordje/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +wDevCheckBlockError /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +wDevCtrl /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDevMacSleep /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_AppendRxBlocks /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +wDev_Crypto_Disable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_DiscardFrame /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_FetchFirstDesc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_GetNoiseFloor /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_Get_Next_TBTT /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_IndicateAmpdu /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_IndicateCtrlFrame /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_IndicateFrame /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_Insert_KeyEntry /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_Mesh_Disable_Tsf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +wDev_Mesh_Enable_Tsf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +wDev_Mesh_Set_TBTT /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +wDev_ProcessFiq /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_ProcessRxSucData /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_Reset_TBTT /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_RxSecError /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_Rxbuf_Deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_Rxbuf_Init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_SetAuthed /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_SetCurChannel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_Set_Beacon_Int /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wDev_SnifferRxAmpdu /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_SnifferRxData /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_disable_low_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +wDev_enable_low_rate /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +wDev_is_low_rate_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wDev_nan_is_in_dw /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +wDev_record_ftm_data /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_remove_KeyEntry /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_remove_KeyEntry_all_cnx /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_reset_bcnSendTick /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +wdev_bank_load /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_bank_store /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_csi_hw_bug_check /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_csi_len_align /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_csi_rx_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_get_promis_ctrl_filter /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_get_promis_filter /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_is_data_in_rxlist /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_is_mgmt_hwdecr_enabled /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_mac_reg_load /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_mac_reg_store /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_mac_sleep /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wdev_mac_sleep_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wdev_mac_sleep_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wdev_mac_special_reg_load /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_mac_special_reg_store /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_mac_wakeup /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wdev_nan_set_callbacks /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_pop_promis_misc_buf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_process_misc_pkt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +wdev_process_panic_watchdog /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_push_promis_misc_buf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_set_csi_rx_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_set_promis /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_set_promis_ctrl_filter /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_set_promis_ctrl_pkt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_set_promis_filter /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_set_promis_misc_buf /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_set_promis_misc_pkt /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wep_decap /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) +wep_encap /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) +wi_fi_config_msg_type__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +wi_fi_config_payload__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +wi_fi_config_payload__free_unpacked esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) +wi_fi_config_payload__get_packed_size esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) +wi_fi_config_payload__init esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) +wi_fi_config_payload__pack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) +wi_fi_config_payload__pack_to_buffer esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +wi_fi_config_payload__unpack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) +wi_fi_ctrl_msg_type__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +wi_fi_ctrl_payload__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +wi_fi_ctrl_payload__free_unpacked esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) +wi_fi_ctrl_payload__get_packed_size esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) +wi_fi_ctrl_payload__init esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) +wi_fi_ctrl_payload__pack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) +wi_fi_ctrl_payload__pack_to_buffer esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) +wi_fi_ctrl_payload__unpack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) +wi_fi_scan_msg_type__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +wi_fi_scan_payload__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +wi_fi_scan_payload__free_unpacked esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) +wi_fi_scan_payload__get_packed_size esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) +wi_fi_scan_payload__init esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) +wi_fi_scan_payload__pack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) +wi_fi_scan_payload__pack_to_buffer esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +wi_fi_scan_payload__unpack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) +wi_fi_scan_result__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +wi_fi_scan_result__free_unpacked esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +wi_fi_scan_result__get_packed_size esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +wi_fi_scan_result__init esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) +wi_fi_scan_result__pack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +wi_fi_scan_result__pack_to_buffer esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +wi_fi_scan_result__unpack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +wifi_11g_rate_chg /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +wifi_action_tx_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_ant_config_check /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_ant_to_ant_type /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_ant_update /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_ap_pmf_enabled /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_ap_reg_rxcb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_ap_remove_sta_node_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_ap_sta_sae_auth_done_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_apb80m_release /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wifi_apb80m_request /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wifi_api_lock /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_api_unlock /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_auth_mode__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.pb-c.c.obj) +wifi_bbgain_max /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_clear_ap_list_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_configure_wake_window_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_connect_failed_reason__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +wifi_connect_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_connected_state__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +wifi_connected_state__free_unpacked esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) +wifi_connected_state__get_packed_size esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) +wifi_connected_state__init esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) +wifi_connected_state__pack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) +wifi_connected_state__pack_to_buffer esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) +wifi_connected_state__unpack esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) +wifi_create_nan /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_create_sta /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +wifi_crypto_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_crypto_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_csi_set_config /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_ctrl_handler esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_ctrl.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +wifi_deauth_sta_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_deinit_in_caller_task /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_deinit_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_destroy_softap /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_destroy_sta /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_disable_pmf_config_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_disconnect_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_event_id2str /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +wifi_event_post /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +wifi_ftm_start_initiator_process /home/djordje/Data/Documents/Espressif/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(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) +wifi_get_ap_info_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_ap_list_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_bw_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_channel_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_country /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_init_state /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_get_macaddr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_protocol_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_rand_macaddr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +wifi_get_rand_macaddr_keep_oui /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +wifi_get_sta_list_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_tsf_time_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_user_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_gpio_debug /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wifi_hmac_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_hmac_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_hw_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_hw_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_init_completed /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_init_in_caller_task /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_init_key /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_init_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_internal_ioctl_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_ioctl_ht2040_get /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_ioctl_ht2040_set /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_ipc_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_is_started /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +wifi_is_stop_in_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_lmac_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_lmac_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_log /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_malloc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_menuconfig_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_act_duty_signaling_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_assoc_expire_set_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_event_post /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +wifi_mesh_ie_crypto_funcs_set_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_crypto_key_set_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_deinit_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_get_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_init_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_set_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_is_roots_found_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_map_deauth_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_parent_candidate_clear_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_parent_candidate_get_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_parent_candidate_set_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_parent_monitor_get_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_parent_monitor_set_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_ps_duty_cycle_get_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_ps_duty_cycle_set_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_ps_duty_ext_get_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_root_conflicts_set_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_roots_ie_get_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_roots_ie_set_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_router_bssid_get_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_router_bssid_set_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_rssi_threshold_get_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_rssi_threshold_set_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_set_beacon_interval_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_sta_disassoc /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_sta_disassoc_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_switch_channel_progress /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mode_set /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_nan_publish_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_nan_reg_rxcb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_nan_set_config_local /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_nan_subscribe_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_ndp_end_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_ndp_req_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_ndp_resp_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_nvs_ap_restore /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_cfg_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_cfg_item_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_commit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +wifi_nvs_compare_cfg_diff /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_nvs_deinit /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_nvs_get /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_nvs_get_sta_listen_interval /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wifi_nvs_init /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_nvs_reset_current_ap_info /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +wifi_nvs_restore /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_nvs_set /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +wifi_nvs_sta_restore /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_ap_chan /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_ap_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_ap_password /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_ap_ssid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_country /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_sta_listen_interval /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_sta_password /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_on_coex_schm_phase_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_on_coex_start_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_osi_funcs_register /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_osi_ready /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_prov_config_data_handler esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +wifi_prov_mgr_configure_sta esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) +wifi_prov_mgr_deinit esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +wifi_prov_mgr_disable_auto_stop esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +wifi_prov_mgr_done esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) +wifi_prov_mgr_endpoint_create esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +wifi_prov_mgr_endpoint_register esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +wifi_prov_mgr_endpoint_unregister esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +wifi_prov_mgr_get_wifi_disconnect_reason esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) +wifi_prov_mgr_get_wifi_state esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) +wifi_prov_mgr_init esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +wifi_prov_mgr_is_provisioned esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +wifi_prov_mgr_reset_provisioning esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +wifi_prov_mgr_reset_sm_state_for_reprovision esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) +wifi_prov_mgr_reset_sm_state_on_failure esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +wifi_prov_mgr_set_app_info esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +wifi_prov_mgr_start_provisioning esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +wifi_prov_mgr_stop_provisioning esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +wifi_prov_mgr_wait esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +wifi_prov_mgr_wifi_scan_finished esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) +wifi_prov_mgr_wifi_scan_result esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) +wifi_prov_mgr_wifi_scan_result_count esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) +wifi_prov_mgr_wifi_scan_start esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(handlers.c.obj) +wifi_prov_scan_handler esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_scan.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) +wifi_prov_scheme_ble esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +wifi_prov_scheme_ble_event_cb_free_ble esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) +wifi_prov_scheme_ble_event_cb_free_bt esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) +wifi_prov_scheme_ble_event_cb_free_btdm esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +wifi_prov_scheme_ble_set_mfg_data esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) +wifi_prov_scheme_ble_set_service_uuid esp-idf/wifi_provisioning/libwifi_provisioning.a(scheme_ble.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +wifi_realloc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_recycle_rx_pkt /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +wifi_register_mgmt_frame /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_register_user_ie_manufacturer_recv_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_reset_mac /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_restart_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_restore_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_rf_phy_disable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wifi_rf_phy_enable /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wifi_rifs_mode_en /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +wifi_roc_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_scan_start_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_scan_stop_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_send_mgmt_frame /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_set_ant /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_ant_gpio /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_appie_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_set_auto_connect_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_bw_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_chan_range /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_channel_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_config_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_country /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_csi /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_default_ssid /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_dynamic_cs_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_event_mask /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_fix_rate_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_gpio_debug_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +wifi_set_home_channel_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_log_mod_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_mac_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_max_tpw /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_mode_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_phy_2nd_chan_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_promis_ctrl_filter_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_promis_filter_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_promis_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_protocol_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_ps_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_rssi_threshold /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_set_rx_policy /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_rxcb_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_user_ie /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_vnd_ie_cb_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_vnd_ie_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_wps_cb_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_set_wps_start_flag /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_set_wps_status_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_set_wps_type_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_softap_cacl_mac /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_softap_cur_max_ap_bss_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +wifi_softap_deauth /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_softap_get_config /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_softap_get_station_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_softap_max_support_num /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_softap_set_config /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_softap_staconnected_event_policy /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +wifi_softap_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_softap_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_softap_toomany_deny /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +wifi_sta_ap_change_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_sta_disconnect /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_sta_get_prof_password /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +wifi_sta_reg_rxcb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_sta_rx_probe_req /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wifi_sta_set_ap_num_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_start_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_station_ap_check /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_station_get_config /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_station_get_config_default /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_station_get_current_ap_id /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_station_get_reconnect_policy /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +wifi_station_save_ap_channel /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +wifi_station_start /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_station_state__descriptor esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_constants.pb-c.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(wifi_config.pb-c.c.obj) +wifi_station_stop /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_stop_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_stop_sw_txq /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_track_pll_cap /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +wifi_txq_empty /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_unregister_user_ie_manufacturer_recv_cb /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_wpa2_ent_disable_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_wpa2_ent_enable_process /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_wpa2_is_started /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +wifi_wps_is_started /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +wl_clear_ap_no_lr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +wl_is_ap_no_lr /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/djordje/Data/Documents/Espressif/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_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.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_alloc_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.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_bss_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) +wpa_bss_ext_capab esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) +wpa_bss_flush esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) +wpa_bss_get esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) +wpa_bss_get_bssid esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +wpa_bss_get_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +wpa_bss_get_next_bss esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) +wpa_bss_get_vendor_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) +wpa_bss_init esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) +wpa_bss_remove esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) +wpa_bss_update_end esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) +wpa_bss_update_scan_res esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) +wpa_bss_update_start esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.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.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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wpa_crypto_funcs_init /home/djordje/Data/Documents/Espressif/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(wpa.c.obj) +wpa_free_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.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) +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_scan_free_params esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) +wpa_scan_get_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(bss.c.obj) +wpa_scan_results_free esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.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_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_wpa_main.c.obj) +wpa_sm_set_ap_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sm_set_assoc_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_set_key esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_set_pmk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_set_pmk_from_pmksa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_set_state esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_snprintf_hex esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 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_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_req_scan esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.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_supplicant_trigger_scan esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_scan.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(scan.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_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_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(ieee802_11_common.c.obj) + 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(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) +wpabuf_alloc_copy esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.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) +wpabuf_alloc_ext_data esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) +wpabuf_clear_free esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) +wpabuf_concat esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) +wpabuf_dup esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) +wpabuf_free esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 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(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) +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(ieee802_11_common.c.obj) + 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(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) +wpabuf_resize esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) +wpabuf_zeropad esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wps_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +wr_bt_tx_atten /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +wr_bt_tx_gain_mem /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +wr_rf_freq_mem /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +wr_rx_gain_mem /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +write_freq_mem_all /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +write_txrate_power_offset /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +write_wifi_chan_data /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +write_wifi_dig_gain /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +wrong_password_flag /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +xEventGroupClearBits esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +xEventGroupCreate esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +xEventGroupCreateStatic esp-idf/freertos/libfreertos.a(event_groups.c.obj) +xEventGroupGetBitsFromISR esp-idf/freertos/libfreertos.a(event_groups.c.obj) +xEventGroupGetStaticBuffer esp-idf/freertos/libfreertos.a(event_groups.c.obj) +xEventGroupSetBits esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/main/libmain.a(app_main.c.obj) +xEventGroupSync esp-idf/freertos/libfreertos.a(event_groups.c.obj) +xEventGroupWaitBits esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/main/libmain.a(app_main.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/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.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(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.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_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xPortEnterCriticalTimeoutCompliance esp-idf/freertos/libfreertos.a(port.c.obj) +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_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.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/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_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_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/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_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/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xQueueCreateMutexStatic esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) +xQueueCreateSet esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueGenericCreate esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/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/driver/libdriver.a(uart.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +xQueueGenericCreateStatic esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +xQueueGenericGetStaticBuffers esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueGenericReset esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueGenericSend 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/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_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(esp_ipc.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.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) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(hli_api.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/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/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(hli_api.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.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/bt/libbt.a(npl_os_freertos.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) + esp-idf/bt/libbt.a(npl_os_freertos.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) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) +xQueueReceiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.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/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_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/bt/libbt.a(bt.c.obj) + esp-idf/wifi_provisioning/libwifi_provisioning.a(manager.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.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/bt/libbt.a(npl_os_freertos.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) + esp-idf/driver/libdriver.a(uart.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) +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) +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) +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(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/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) + esp-idf/bt/libbt.a(bt.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) +xTaskCreateStaticPinnedToCore esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskDelayUntil esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGenericNotify esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/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) +xTaskGenericNotifyStateClear esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGenericNotifyWait esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskGetAffinity esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +xTaskGetCurrentTaskHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/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/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskGetCurrentTaskHandleForCPU esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +xTaskGetHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGetIdleTaskHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGetIdleTaskHandleForCPU esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +xTaskGetSchedulerState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/bt/libbt.a(npl_os_freertos.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) +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) +xTaskNotifyWait esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskPriorityDisinherit esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskPriorityInherit esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskRemoveFromEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/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/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +xphyQueue /home/djordje/Data/Documents/Espressif/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +xswap /home/djordje/Data/Documents/Espressif/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/bt/libbt.a(hli_vectors.S.obj) +xt_highint5 esp-idf/esp_system/libesp_system.a(highint_hdl.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/bt/libbt.a(hli_api.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/bt/libbt.a(bt.c.obj) + esp-idf/bt/libbt.a(hli_api.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/bt/libbt.a(bt.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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) +xthal_window_spill /home/djordje/Data/Documents/Espressif/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/djordje/Data/Documents/Espressif/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + esp-idf/freertos/libfreertos.a(portasm.S.obj) diff --git a/tools/test_idf_size/expected_output b/tools/test_idf_size/expected_output index 216c441fc4..ac61694b79 100644 --- a/tools/test_idf_size/expected_output +++ b/tools/test_idf_size/expected_output @@ -61,10 +61,10 @@ Used static DRAM: 33464 bytes ( 147272 remain, 18.5% used) Used static IRAM: 181518 bytes ( -50446 remain, 138.5% used) Overflow detected! You can run idf.py size-files for more information. .text size: 180491 bytes .vectors size: 1027 bytes -Used Flash size : 531135 bytes +Used Flash size : 524075 bytes .text : 432171 bytes - .rodata : 98708 bytes -Total image size: 730117 bytes (.bin may be padded larger) + .rodata : 91648 bytes +Total image size: 723057 bytes (.bin may be padded larger) *** Running idf_size.py --archives... @@ -3267,6 +3267,855 @@ Section total: 0 0 .rtc_noinit - Section total: 0 0 +*** +Running idf_size.py on app with nonzero noload sections... +Total sizes: +Used static DRAM: 47596 bytes ( 76984 remain, 38.2% used) + .data size: 21452 bytes + .bss size: 26144 bytes +Used static IRAM: 128706 bytes ( 2366 remain, 98.2% used) + .text size: 127679 bytes + .vectors size: 1027 bytes +Used Flash size : 935695 bytes + .text : 753375 bytes + .rodata : 182064 bytes +Total image size: 1085853 bytes (.bin may be padded larger) + +*** +Running idf_size.py --archives on app with nonzero noload sections... +Total sizes: +Used static DRAM: 47596 bytes ( 76984 remain, 38.2% used) + .data size: 21452 bytes + .bss size: 26144 bytes +Used static IRAM: 128706 bytes ( 2366 remain, 98.2% used) + .text size: 127679 bytes + .vectors size: 1027 bytes +Used Flash size : 935695 bytes + .text : 753375 bytes + .rodata : 182064 bytes +Total image size: 1085853 bytes (.bin may be padded larger) +Per-archive contributions to ELF file: + Archive File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata & .rodata_noload & .appdesc flash_total + libnet80211.a 853 8123 5292 0 14268 113481 13696 8994 0 133322 + libbtdm_app.a 870 2767 30551 0 34188 81524 5274 0 0 118219 + libmbedcrypto.a 64 85 30 0 179 69314 44081 0 0 113489 + liblwip.a 12 2458 0 0 2470 79821 14300 0 0 94133 + libc.a 4 0 0 0 4 82353 4739 0 0 87096 + libbt.a 4770 6356 5032 0 16158 65753 7870 0 0 83425 + libpp.a 2459 1448 18447 0 22354 37598 4735 150 0 63239 + libwpa_supplicant.a 8 1268 0 0 1276 59728 2652 0 0 62388 + libphy.a 1436 715 7782 0 9933 26906 0 0 0 36124 + libwifi_provisioning.a 0 28 0 0 28 14262 15530 0 0 29792 + libprotocomm.a 0 253 0 0 253 13122 13700 0 0 26822 + libfreertos.a 3100 749 14428 0 18277 569 5092 0 0 23189 + libesp_hw_support.a 478 104 5540 0 6122 8699 3215 0 0 17932 + libesp_system.a 561 283 4102 0 4946 7920 4945 0 0 17528 + libnvs_flash.a 0 24 0 0 24 13882 236 0 0 14118 + libheap.a 12 8 5282 0 5302 3397 4531 0 0 13222 + libspi_flash.a 1526 24 8625 0 10175 825 2117 0 0 13093 + libhal.a 1088 8 5767 0 6863 3484 765 0 0 11104 + libprotobuf-c.a 12 0 0 0 12 9754 516 0 0 10282 + libespressif__qrcode.a 0 0 0 0 0 6729 2610 0 0 9339 + libcoexist.a 1685 61 3191 0 4937 4011 425 0 0 9312 + libesp_netif.a 4 33 0 0 37 6361 2475 0 0 8840 + libvfs.a 308 60 0 0 368 6830 715 0 0 7853 + libesp_common.a 0 0 0 0 0 51 7736 0 0 7787 + libesp_wifi.a 480 46 332 0 858 3253 1738 0 0 5803 + libesp_mm.a 12 124 814 0 950 2990 1631 0 0 5447 + libmain.a 0 8 0 0 8 2081 3273 0 0 5354 + libesp_timer.a 32 24 1743 0 1799 1458 1203 0 0 4436 + libesp_event.a 0 4 0 0 4 2920 995 0 0 3915 + libstdc++.a 8 33 0 0 41 2179 1468 0 0 3655 + libxtensa.a 1044 0 1793 424 3261 119 71 0 0 3451 + libesp_phy.a 16 19 173 0 208 1819 1359 0 0 3367 + libdriver.a 56 12 0 0 68 2434 693 0 0 3183 + libjson.a 12 0 0 0 12 2988 50 0 0 3050 + libnewlib.a 239 440 1459 0 2138 1000 340 0 0 3038 + libsoc.a 0 0 33 0 33 39 2161 0 0 2233 + librtc.a 0 4 2215 0 2219 0 0 0 0 2215 + libefuse.a 60 4 0 0 64 1270 805 0 0 2135 + libbootloader_support.a 0 0 1824 0 1824 113 167 0 0 2104 + libesp_partition.a 0 8 0 0 8 1589 508 0 0 2097 + libesp_ringbuf.a 0 0 1012 0 1012 0 697 0 0 1709 + libpthread.a 16 12 0 0 28 1108 468 0 0 1592 + liblog.a 8 272 276 0 556 911 144 0 0 1339 + libm.a 0 0 0 0 0 602 0 0 0 602 + libesp_coex.a 88 0 173 0 261 249 0 0 0 510 + libxt_hal.a 0 0 443 0 443 0 32 0 0 475 + libesp_app_format.a 0 10 0 0 10 186 4 0 256 446 + libcore.a 0 33 0 0 33 255 48 0 0 303 + libapp_update.a 0 4 0 0 4 152 125 0 0 277 + libgcc.a 0 0 0 0 0 89 160 0 0 249 + libesp_rom.a 0 0 206 0 206 0 0 0 0 206 + libcxx.a 0 0 0 0 0 44 0 0 0 44 + (exe) 0 0 0 3 3 3 12 0 0 18 + libnvs_sec_provider.a 0 0 0 0 0 5 0 0 0 5 + libmesh.a 0 0 0 0 0 0 0 0 0 0 + +*** +Running idf_size.py --files on app with nonzero noload sections... +Total sizes: +Used static DRAM: 47596 bytes ( 76984 remain, 38.2% used) + .data size: 21452 bytes + .bss size: 26144 bytes +Used static IRAM: 128706 bytes ( 2366 remain, 98.2% used) + .text size: 127679 bytes + .vectors size: 1027 bytes +Used Flash size : 935695 bytes + .text : 753375 bytes + .rodata : 182064 bytes +Total image size: 1085853 bytes (.bin may be padded larger) +Per-file contributions to ELF file: + Object File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata & .rodata_noload & .appdesc flash_total + ecp_curves.c.obj 28 0 0 0 28 6412 32440 0 0 38880 + wl_cnx.o 2 3951 273 0 4226 13738 1414 2605 0 15427 + ieee80211_output.o 2 21 1989 0 2012 12583 560 0 0 15134 + lib_a-vfprintf.o 0 0 0 0 0 14066 572 0 0 14638 + phy_chip_v7.o 721 614 1634 0 2969 12208 0 0 0 14563 + ieee80211_ioctl.o 4 104 271 0 379 12272 1788 695 0 14335 + lib_a-svfprintf.o 0 0 0 0 0 13606 622 0 0 14228 + pp.o 1154 53 6839 0 8046 5561 637 0 0 14191 + manager.c.obj 0 16 0 0 16 8950 4798 0 0 13748 + ieee80211_sta.o 12 34 1474 0 1520 11117 1011 1901 0 13614 + lc_task.o 32 0 0 0 32 11791 736 0 0 12559 + pm.o 44 488 2940 0 3472 8669 901 0 0 12554 + phy_chip_v7_cal.o 474 53 3499 0 4026 8140 0 0 0 12113 + ieee80211_hostap.o 1 41 0 0 42 10656 1025 498 0 11682 + lld_evt.o 53 104 7023 0 7180 4211 284 0 0 11571 + sae.c.obj 0 0 0 0 0 10562 487 0 0 11049 + nd6.c.obj 8 932 0 0 940 10749 260 0 0 11017 + lld.o 2 0 59 0 61 10345 318 0 0 10724 + ieee80211_scan.o 18 296 0 0 314 10281 362 2199 0 10661 + ieee80211_ht.o 0 4 1147 0 1151 8087 1214 47 0 10448 + protobuf-c.c.obj 12 0 0 0 12 9754 516 0 0 10282 + tasks.c.obj 16 704 8366 0 9086 0 1875 0 0 10257 + lib_a-svfiprintf.o 0 0 0 0 0 9054 1044 0 0 10098 + lib_a-vfiprintf.o 0 0 0 0 0 9414 572 0 0 9986 + tcp_in.c.obj 0 52 0 0 52 8688 1243 0 0 9931 + lib_a-svfscanf.o 0 0 0 0 0 9278 503 0 0 9781 + phy_chip_v7_ana.o 241 48 2649 0 2938 6542 0 0 0 9432 + wpa.c.obj 0 872 0 0 872 8750 19 0 0 8769 + qrcodegen.c.obj 0 0 0 0 0 6323 2305 0 0 8628 + llm.o 0 112 74 0 186 8225 301 0 0 8600 + lib_a-svfiscanf.o 0 0 0 0 0 8250 318 0 0 8568 + ble_gap.c.obj 0 132 0 0 132 7233 1242 0 0 8475 + ecp.c.obj 0 72 0 0 72 7983 395 0 0 8378 + trc.o 664 104 1437 0 2205 5340 912 0 0 8353 + wdev.o 121 133 4099 0 4353 3496 589 0 0 8305 + tcp_out.c.obj 0 0 0 0 0 5686 2165 0 0 7851 + ld_acl.o 0 56 2346 0 2402 4660 825 0 0 7831 + esp_err_to_name.c.obj 0 0 0 0 0 51 7736 0 0 7787 + wpa_auth.c.obj 0 68 0 0 68 7643 82 0 0 7725 + ble_sm.c.obj 0 420 0 0 420 6987 182 0 0 7169 + arch_main.o 472 21 838 0 1331 5174 506 0 0 6990 + protocomm_nimble.c.obj 0 253 0 0 253 3765 3168 0 0 6933 + tlsf.c.obj 0 0 3689 0 3689 1135 1943 0 0 6767 + lmac.o 48 181 1753 0 1982 4196 705 0 0 6702 + ieee80211_api.o 20 19 0 0 39 5611 1067 36 0 6698 + esp_netif_lwip.c.obj 0 21 0 0 21 4886 1806 0 0 6692 + dhcp.c.obj 0 64 0 0 64 5810 792 0 0 6602 + ble_gattc.c.obj 0 268 0 0 268 6066 452 0 0 6518 + tcp.c.obj 2 23 0 0 25 4757 1647 0 0 6406 + ieee80211_input.o 0 0 0 0 0 5844 526 630 0 6370 + ieee80211_nvs.o 4 1284 0 0 1288 4901 1175 0 0 6080 + esp_sha512.c.obj 0 0 0 0 0 5023 768 0 0 5791 + ble_att_svr.c.obj 0 846 0 0 846 5677 51 0 0 5728 + sockets.c.obj 0 608 0 0 608 5046 623 0 0 5669 + bignum.c.obj 0 0 0 0 0 4855 672 0 0 5527 + esp_sha1.c.obj 0 0 0 0 0 5429 64 0 0 5493 + rsa.c.obj 0 0 0 0 0 5378 33 0 0 5411 + app_main.c.obj 0 8 0 0 8 2081 3273 0 0 5354 + esp_mmu_map.c.obj 4 124 755 0 883 2990 1559 0 0 5308 + api_msg.c.obj 0 0 0 0 0 3908 1112 0 0 5020 + bt.c.obj 126 0 803 0 929 2821 1195 0 0 4945 + npl_os_freertos.c.obj 8 1705 3338 0 5051 327 1240 0 0 4913 + security1.c.obj 0 0 0 0 0 2557 2346 0 0 4903 + queue.c.obj 0 0 3176 0 3176 0 1690 0 0 4866 + lm_task.o 0 0 0 0 0 4551 201 0 0 4752 + vfs_uart.c.obj 116 8 0 0 124 4130 417 0 0 4663 + hli_vectors.S.obj 4380 0 281 0 4661 0 0 0 0 4661 + nvs_page.cpp.obj 0 0 0 0 0 4634 0 0 0 4634 + port.c.obj 3084 40 986 0 4110 0 516 0 0 4586 + lld_pdu.o 0 2 3312 0 3314 873 183 0 0 4368 + lib_a-strtod.o 0 0 0 0 0 4222 104 0 0 4326 + netif.c.obj 0 265 0 0 265 3291 1027 0 0 4318 + ble_gatts.c.obj 20 54 0 0 74 4185 27 0 0 4232 + ip6.c.obj 0 0 0 0 0 4038 112 0 0 4150 + ld_fm.o 127 28 3387 0 3542 95 443 0 0 4052 + udp.c.obj 2 4 0 0 6 3742 292 0 0 4036 + lib_a-dtoa.o 0 0 0 0 0 3808 139 0 0 3947 + nvs_storage.cpp.obj 0 0 0 0 0 3898 0 0 0 3898 + esp_flash_api.c.obj 84 0 2794 0 2878 24 968 0 0 3870 + ieee80211_supplicant.o 4 160 0 0 164 3615 200 128 0 3819 + oid.c.obj 0 0 0 0 0 209 3546 0 0 3755 + esp_event.c.obj 0 0 0 0 0 2766 967 0 0 3733 + hal_mac.o 0 0 527 0 527 3189 6 0 0 3722 + esp_sha256.c.obj 0 0 0 0 0 3335 320 0 0 3655 + coexist_scheme.o 1181 60 0 0 1241 2381 22 0 0 3584 + cipher_wrap.c.obj 0 0 0 0 0 646 2904 0 0 3550 + security2.c.obj 0 0 0 0 0 2385 1126 0 0 3511 + aria.c.obj 0 0 0 0 0 2432 1072 0 0 3504 + dhcpserver.c.obj 0 0 0 0 0 3186 178 0 0 3364 +spi_flash_chip_generic.c 573 0 2754 0 3327 0 0 0 0 3327 + task_wdt.c.obj 53 5 0 0 58 1970 1281 0 0 3304 + pbuf.c.obj 0 1 0 0 1 2522 755 0 0 3277 + etharp.c.obj 0 241 0 0 241 2616 598 0 0 3214 + wifi_scan.pb-c.c.obj 0 0 0 0 0 365 2821 0 0 3186 + uart.c.obj 56 12 0 0 68 2434 689 0 0 3179 + sae_pk.c.obj 0 0 0 0 0 2013 1089 0 0 3102 + cJSON.c.obj 12 0 0 0 12 2988 50 0 0 3050 + phy_init.c.obj 16 18 173 0 207 1504 1342 0 0 3035 + lib_a-mprec.o 0 0 0 0 0 2636 383 0 0 3019 + intr_alloc.c.obj 8 22 769 0 799 1793 425 0 0 2995 + rwbt.o 42 88 2487 0 2617 425 26 0 0 2980 + ieee80211_timer.o 256 0 0 0 256 1454 1193 0 0 2903 + llm_hci.o 0 0 0 0 0 2724 143 0 0 2867 + rwble.o 91 80 2400 0 2571 359 8 0 0 2858 + periph_ctrl.c.obj 8 34 473 0 515 2215 137 0 0 2833 + lc.o 24 14 0 0 38 2672 118 0 0 2814 + wifi_config.pb-c.c.obj 0 0 0 0 0 335 2467 0 0 2802 + ieee80211.o 0 680 0 0 680 2307 494 0 0 2801 + huart.o 0 4 1234 0 1238 1397 69 0 0 2700 + rtc_clk.c.obj 349 4 2341 0 2694 0 0 0 0 2690 + wpa_common.c.obj 0 0 0 0 0 2669 21 0 0 2690 + ble_sm_sc.c.obj 0 97 0 0 97 2597 50 0 0 2647 + esp_aes_gcm.c.obj 0 0 0 0 0 2118 469 0 0 2587 + esp_wpa3.c.obj 8 112 0 0 120 2521 54 0 0 2583 + rf_espressif.o 5 0 194 0 199 2256 92 0 0 2547 + protocomm.c.obj 0 0 0 0 0 1522 1024 0 0 2546 + esf_buf.o 328 192 587 0 1107 1226 354 0 0 2495 + os_mbuf.c.obj 8 0 0 0 8 2371 112 0 0 2491 + llc_hci.o 0 4 280 0 284 2195 7 0 0 2482 + ieee802_11.c.obj 0 0 0 0 0 2304 172 0 0 2476 + vfs.c.obj 192 40 0 0 232 2155 106 0 0 2453 + ble_sm_alg.c.obj 0 172 0 0 172 2293 144 0 0 2437 + ecdsa.c.obj 0 0 0 0 0 2414 0 0 0 2414 + crypto_mbedtls-ec.c.obj 0 0 0 0 0 2372 0 0 0 2372 + ble_hs_resolv.c.obj 0 421 0 0 421 2294 70 0 0 2364 + hci_tl.o 0 1 402 0 403 1934 9 0 0 2345 + panic_arch.c.obj 0 0 0 0 0 683 1594 0 0 2277 + llc_llcp.o 0 0 419 0 419 1737 0 0 0 2156 + wpa_auth_ie.c.obj 0 0 0 0 0 2146 0 0 0 2146 + mmu_hal.c.obj 719 0 1415 0 2134 0 0 0 0 2134 + bt_bb.o 0 4 2042 0 2046 0 0 0 0 2042 + pkparse.c.obj 0 0 0 0 0 1897 127 0 0 2024 + coexist_core.o 267 1 941 0 1209 798 15 0 0 2021 + if_hwctrl.o 0 41 40 0 81 1942 38 150 0 2020 + ble_hs.c.obj 0 204 0 0 204 1778 237 0 0 2015 +spi_flash_hal_iram.c.obj 0 0 2005 0 2005 0 0 0 0 2005 + sys_arch.c.obj 0 12 0 0 12 1358 632 0 0 1990 + esp_srp.c.obj 0 0 0 0 0 1590 387 0 0 1977 + raw.c.obj 0 4 0 0 4 1727 219 0 0 1946 + heap_caps.c.obj 4 4 1213 0 1221 242 450 0 0 1909 + wpa_ie.c.obj 0 0 0 0 0 1791 113 0 0 1904 + mac_addr.c.obj 56 0 0 0 56 982 852 0 0 1890 + startup.c.obj 0 11 54 0 65 980 839 0 0 1873 + rwip.o 0 12 219 0 231 1588 58 0 0 1865 + esp_timer.c.obj 8 8 799 0 815 789 239 0 0 1835 + igmp.c.obj 0 9 0 0 9 1570 252 0 0 1822 + esp_efuse_utility.c.obj 0 4 0 0 4 1044 765 0 0 1809 + xtensa_vectors.S.obj 20 0 1322 424 1766 0 36 0 0 1802 + sec2.pb-c.c.obj 0 0 0 0 0 138 1660 0 0 1798 + scheme_ble.c.obj 0 12 0 0 12 795 993 0 0 1788 + wifi_default.c.obj 0 13 0 0 13 1167 617 0 0 1784 + ip4.c.obj 0 6 0 0 6 1657 127 0 0 1784 + cpu_start.c.obj 0 5 1026 0 1031 380 376 0 0 1782 + nvs_api.cpp.obj 0 20 0 0 20 1774 4 0 0 1778 + ble_att_clt.c.obj 0 0 0 0 0 1766 0 0 0 1766 + wifi_ctrl.pb-c.c.obj 0 0 0 0 0 271 1480 0 0 1751 + mld6.c.obj 0 1 0 0 1 1745 0 0 0 1745 + ringbuf.c.obj 0 0 1012 0 1012 0 697 0 0 1709 + md.c.obj 0 0 0 0 0 1626 80 0 0 1706 + sec1.pb-c.c.obj 0 0 0 0 0 130 1575 0 0 1705 + esp_adapter.c.obj 472 5 332 0 809 891 0 0 0 1695 + heap_caps_init.c.obj 8 4 0 0 12 1246 420 0 0 1674 + esp_aes.c.obj 8 0 0 0 8 1432 231 0 0 1671 + ieee80211_crypto.o 0 116 0 0 116 1337 308 0 0 1645 + bignum_core.c.obj 0 0 0 0 0 1644 0 0 0 1644 + wdt_hal_iram.c.obj 105 0 1538 0 1643 0 0 0 0 1643 + wifi_scan.c.obj 0 0 0 0 0 1147 490 0 0 1637 + cipher.c.obj 0 0 0 0 0 1615 0 0 0 1615 + wifi_config.c.obj 0 0 0 0 0 1100 499 0 0 1599 + ble_hs_hci_evt.c.obj 0 0 0 0 0 1449 148 0 0 1597 + api_lib.c.obj 0 0 0 0 0 1373 219 0 0 1592 +esp_timer_impl_lac.c.obj 0 8 640 0 648 423 514 0 0 1577 + wifi_init.c.obj 8 4 0 0 12 739 809 0 0 1556 + vhci.o 0 4 658 0 662 852 43 0 0 1553 + rsa_alt_helpers.c.obj 0 0 0 0 0 1498 55 0 0 1553 + ea.o 0 4 1286 0 1290 254 5 0 0 1545 + ble_l2cap_sig.c.obj 0 57 0 0 57 1410 132 0 0 1542 + wl_chm.o 4 252 30 0 286 1429 53 200 0 1516 + lc_sniff.o 0 0 0 0 0 1491 11 0 0 1502 + lib_a-gdtoa-gethex.o 0 0 0 0 0 1391 94 0 0 1485 + cache_utils.c.obj 4 14 800 0 818 101 571 0 0 1476 +wifi_constants.pb-c.c.ob 0 0 0 0 0 22 1430 0 0 1452 + esp_bignum.c.obj 0 0 0 0 0 1290 149 0 0 1439 + ieee80211_crypto_ccmp.o 24 0 0 0 24 1072 307 0 0 1403 + rtc_time.c.obj 0 0 1105 0 1105 0 268 0 0 1373 + coexist_arbit.o 186 0 705 0 891 464 16 0 0 1371 + bss.c.obj 0 0 0 0 0 1299 66 0 0 1365 + pem.c.obj 0 0 0 0 0 1242 111 0 0 1353 + common.c.obj 0 0 0 0 0 1291 0 0 0 1291 + ble_hs_conn.c.obj 0 332 0 0 332 1168 110 0 0 1278 + ble_hs_hci.c.obj 0 362 0 0 362 1259 16 0 0 1275 + memory_layout.c.obj 0 0 0 0 0 0 1271 0 0 1271 + ieee80211_power.o 0 0 0 0 0 1234 35 0 0 1269 + coexist_hw.o 1 0 1248 0 1249 0 0 0 0 1249 + ble_hs_adv.c.obj 0 0 0 0 0 1244 0 0 0 1244 + ctr_drbg.c.obj 0 0 0 0 0 1236 0 0 0 1236 + event_groups.c.obj 0 0 763 0 763 0 459 0 0 1222 + eh_alloc.o 0 16 0 0 16 641 578 0 0 1219 + partition.c.obj 0 8 0 0 8 902 307 0 0 1209 + esp_nimble_hci.c.obj 0 4 0 0 4 756 436 0 0 1192 + nimble_port.c.obj 0 24 64 0 88 621 498 0 0 1183 + rtc_io_periph.c.obj 0 0 0 0 0 0 1168 0 0 1168 + hal_mac_tx.o 0 0 32 0 32 1076 56 0 0 1164 + ieee80211_phy.o 0 0 0 0 0 663 499 0 0 1162 + bt_util_buf.o 0 20 250 0 270 901 0 0 0 1151 + pk_wrap.c.obj 0 0 0 0 0 829 305 0 0 1134 + ble_store_config.c.obj 0 620 0 0 620 1115 0 0 0 1115 + nvs_pagemanager.cpp.obj 0 0 0 0 0 1113 0 0 0 1113 + log.c.obj 8 264 42 0 314 911 144 0 0 1105 + crypto_mbedtls.c.obj 0 0 0 0 0 1105 0 0 0 1105 + esp_wpa_main.c.obj 0 8 0 0 8 1105 0 0 0 1105 + ecc_p256.o 0 0 0 0 0 1058 44 0 0 1102 + pmksa_cache.c.obj 0 0 0 0 0 1099 0 0 0 1099 + rtc_init.c.obj 0 0 0 0 0 1098 0 0 0 1098 + hli_api.c.obj 148 4 494 0 646 287 166 0 0 1095 + esp_ipc.c.obj 336 40 179 0 555 479 97 0 0 1091 + locks.c.obj 8 168 613 0 789 129 340 0 0 1090 + xtensa_intr_asm.S.obj 1024 0 51 0 1075 0 0 0 0 1075 +ieee80211_nan_datapath.o 1 540 108 0 649 877 85 0 0 1071 +nvs_partition_manager.cp 0 4 0 0 4 1053 16 0 0 1069 +bootloader_flash_config_ 0 0 948 0 948 105 0 0 0 1053 + eloop.c.obj 0 36 0 0 36 1052 0 0 0 1052 + tcpip.c.obj 0 12 0 0 12 768 271 0 0 1039 + cpu.c.obj 0 0 277 0 277 110 646 0 0 1033 + intc.o 0 0 650 0 650 318 61 0 0 1029 + ke_task.o 18 0 915 0 933 64 10 0 0 1007 + panic.c.obj 12 5 46 0 63 801 147 0 0 1006 + constant_time.c.obj 0 0 0 0 0 1004 0 0 0 1004 + bootloader_flash.c.obj 0 0 836 0 836 0 167 0 0 1003 + ld_inq.o 0 0 994 0 994 0 9 0 0 1003 + app_startup.c.obj 0 1 0 0 1 569 432 0 0 1001 + lib_a-fseeko.o 0 0 0 0 0 994 0 0 0 994 + transport.c.obj 0 152 0 0 152 777 214 0 0 991 + clk_tree_hal.c.obj 0 0 0 0 0 834 150 0 0 984 + hal_crypto.o 0 0 0 0 0 966 18 0 0 984 + ble_l2cap.c.obj 0 280 0 0 280 741 241 0 0 982 + coex_schm.o 0 16 238 0 254 698 37 0 0 973 + interrupts.c.obj 0 0 0 0 0 0 973 0 0 973 + esp_hostap.c.obj 0 4 0 0 4 965 0 0 0 965 + pthread.c.obj 8 8 0 0 16 595 361 0 0 964 + icmp.c.obj 0 0 0 0 0 728 227 0 0 955 + llc.o 0 11 48 0 59 897 6 0 0 951 + session.pb-c.c.obj 0 0 0 0 0 181 760 0 0 941 + handlers.c.obj 0 0 0 0 0 674 259 0 0 933 + clk.c.obj 0 0 0 0 0 715 213 0 0 928 + wifi_ctrl.c.obj 0 0 0 0 0 603 293 0 0 896 + partition_target.c.obj 0 0 0 0 0 687 201 0 0 888 + pmksa_cache_auth.c.obj 0 0 0 0 0 882 0 0 0 882 + aes-ccm.c.obj 0 0 0 0 0 881 0 0 0 881 + dbg_task.o 0 0 0 0 0 800 64 0 0 864 + cmac.c.obj 0 0 0 0 0 844 0 0 0 844 +spi_flash_chip_winbond.c 140 0 695 0 835 0 0 0 0 835 + dragonfly.c.obj 0 0 0 0 0 834 0 0 0 834 + hal_ampdu.o 0 0 0 0 0 684 149 0 0 833 + esp_netif_objects.c.obj 0 12 0 0 12 593 227 0 0 820 + timeouts.c.obj 0 12 0 0 12 554 265 0 0 819 + hci.o 0 0 0 0 0 816 0 0 0 816 + sha.c.obj 16 13 0 0 29 543 256 0 0 815 + multi_heap.c.obj 0 0 380 0 380 266 159 0 0 805 + esp_aes_xts.c.obj 0 0 0 0 0 803 0 0 0 803 + icmp6.c.obj 0 0 0 0 0 610 189 0 0 799 + debug_helpers.c.obj 0 0 719 0 719 0 77 0 0 796 +memory_layout_utils.c.ob 0 0 0 0 0 508 288 0 0 796 + ble_hs_id.c.obj 0 12 0 0 12 789 4 0 0 793 + ble_hs_stop.c.obj 0 21 0 0 21 543 248 0 0 791 + sec0.pb-c.c.obj 0 0 0 0 0 68 717 0 0 785 + ieee80211_action.o 192 0 0 0 192 557 26 0 0 775 + llm_util.o 0 0 0 0 0 761 11 0 0 772 + wifi_netif.c.obj 0 24 0 0 24 456 312 0 0 768 + ets_timer_legacy.c.obj 0 0 260 0 260 136 369 0 0 765 +crypto_mbedtls-bignum.c. 0 0 0 0 0 754 0 0 0 754 + hmac_drbg.c.obj 0 0 0 0 0 742 0 0 0 742 + ble_sm_lgcy.c.obj 0 0 0 0 0 691 50 0 0 741 + ble_hs_startup.c.obj 0 0 0 0 0 619 119 0 0 738 + vfs_console.c.obj 0 12 0 0 12 545 192 0 0 737 + llc_util.o 0 0 0 0 0 721 11 0 0 732 + ieee80211_regdomain.o 0 0 0 0 0 729 3 0 0 732 +esp_netif_handlers.c.obj 0 0 0 0 0 438 292 0 0 730 + lib_a-fvwrite.o 0 0 0 0 0 719 0 0 0 719 + esp_qrcode_main.c.obj 0 0 0 0 0 406 305 0 0 711 + coexist_api.o 8 0 58 0 66 270 372 0 0 708 + asn1parse.c.obj 0 0 0 0 0 704 0 0 0 704 + panic_handler.c.obj 8 8 66 0 82 621 8 0 0 703 + aes-siv.c.obj 0 0 0 0 0 687 16 0 0 703 + spi_flash_hal.c.obj 0 0 0 0 0 554 147 0 0 701 + ccmp.c.obj 0 0 0 0 0 698 0 0 0 698 + ble_store.c.obj 0 0 0 0 0 697 0 0 0 697 + uart_hal_iram.c.obj 0 0 0 0 0 320 377 0 0 697 + esp_srp_mpi.c.obj 0 0 0 0 0 430 253 0 0 683 + ccm.c.obj 0 0 0 0 0 649 0 0 0 649 + esp_clk_tree.c.obj 0 0 0 0 0 430 217 0 0 647 +nvs_handle_simple.cpp.ob 0 0 0 0 0 525 120 0 0 645 +esp_clk_tree_common.c.ob 0 8 0 0 8 492 142 0 0 634 + portasm.S.obj 0 0 634 0 634 0 0 0 0 634 + rate_control.o 0 0 0 0 0 290 344 0 0 634 + entropy.c.obj 0 0 0 0 0 630 0 0 0 630 + ble_att.c.obj 0 2 0 0 2 411 216 0 0 627 + ble_hs_flow.c.obj 0 58 0 0 58 622 0 0 0 622 + security0.c.obj 0 0 0 0 0 356 265 0 0 621 +pthread_local_storage.c. 8 4 0 0 12 503 107 0 0 618 +esp_flash_spi_init.c.obj 76 4 0 0 80 277 262 0 0 615 + time.c.obj 0 20 126 0 146 482 0 0 0 608 + ecdh.c.obj 0 0 0 0 0 591 0 0 0 591 + esp_ipc_isr.c.obj 12 32 429 0 473 54 89 0 0 584 + crosscore_int.c.obj 8 8 255 0 271 146 165 0 0 574 +memspi_host_driver.c.obj 132 0 424 0 556 0 0 0 0 556 + os_mempool.c.obj 8 0 0 0 8 545 0 0 0 553 +spi_flash_os_func_app.c. 56 0 333 0 389 46 96 0 0 531 + ld.o 0 0 0 0 0 397 132 0 0 529 + flash_mmap.c.obj 0 0 118 0 118 269 135 0 0 522 + inet_chksum.c.obj 0 0 0 0 0 519 0 0 0 519 + hal_sniffer.o 0 0 0 0 0 510 0 0 0 510 +spi_flash_encrypt_hal_ir 264 0 245 0 509 0 0 0 0 509 + mpi_hal.c.obj 0 0 0 0 0 417 91 0 0 508 + bt_util_sp.o 0 0 0 0 0 472 28 0 0 500 + esp_coex_adapter.c.obj 88 0 173 0 261 239 0 0 0 500 + ethernet.c.obj 0 0 0 0 0 373 127 0 0 500 + vfs_lwip.c.obj 0 0 0 0 0 349 143 0 0 492 + pp_timer.o 96 4 0 0 100 368 26 0 0 490 + sleep_gpio.c.obj 0 0 0 0 0 238 251 0 0 489 + ip4_frag.c.obj 0 0 0 0 0 393 92 0 0 485 + lib_a-locale.o 4 0 0 0 4 100 372 0 0 476 +nvs_item_hash_list.cpp.o 0 0 0 0 0 475 0 0 0 475 + ld_pscan.o 0 0 224 0 224 250 0 0 0 474 + lib_a-gdtoa-hexnan.o 0 0 0 0 0 468 0 0 0 468 + comeback_token.c.obj 0 0 0 0 0 466 0 0 0 466 + rtc_module.c.obj 32 4 184 0 220 249 0 0 0 465 + lm.o 0 10 0 0 10 403 61 0 0 464 + memp.c.obj 0 0 0 0 0 205 256 0 0 461 + asn1write.c.obj 0 0 0 0 0 460 0 0 0 460 + dh_groups.c.obj 0 0 0 0 0 42 417 0 0 459 + ip6_frag.c.obj 0 4 0 0 4 373 84 0 0 457 + system_internal.c.obj 0 0 434 0 434 0 16 0 0 450 + esp_app_desc.c.obj 0 10 0 0 10 186 4 0 256 446 + si_class_type_info.o 0 0 0 0 0 304 132 0 0 436 + wlanif.c.obj 0 0 0 0 0 365 70 0 0 435 + lib_a-strtoll.o 0 0 0 0 0 432 0 0 0 432 + uart_hal.c.obj 0 0 0 0 0 430 0 0 0 430 + ieee80211_crypto_sms4.o 24 0 0 0 24 336 70 0 0 430 + ieee80211_proto.o 0 1 0 0 1 429 0 55 0 429 + ble_uuid.c.obj 0 0 0 0 0 412 16 0 0 428 + spi_flash_chip_gd.c.obj 127 0 301 0 428 0 0 0 0 428 + sar_periph_ctrl.c.obj 0 4 0 0 4 326 99 0 0 425 + lib_a-strtoull.o 0 0 0 0 0 424 0 0 0 424 + constants.pb-c.c.obj 0 0 0 0 0 0 419 0 0 419 + ble_store_util.c.obj 0 0 0 0 0 408 0 0 0 408 + ieee80211_reg_db.o 230 0 0 0 230 128 49 0 0 407 + lc_lmppdu.o 0 0 0 0 0 380 23 0 0 403 + assert.c.obj 47 0 356 0 403 0 0 0 0 403 + ieee80211_nan_common.o 0 356 0 0 356 363 39 0 0 402 + cache_hal_esp32.c.obj 0 8 400 0 408 0 0 0 0 400 + xtensa_context.S.obj 0 0 394 0 394 0 0 0 0 394 + sha_hal.c.obj 0 0 0 0 0 392 0 0 0 392 + class_type_info.o 0 0 0 0 0 282 108 0 0 390 + coexist_timer.o 42 0 239 0 281 98 0 0 0 379 + esp_scan.c.obj 0 0 0 0 0 379 0 0 0 379 + esp_clk.c.obj 9 0 72 0 81 297 0 0 0 378 + llm_task.o 0 0 0 0 0 372 0 0 0 372 + esp_wpas_glue.c.obj 0 0 0 0 0 371 0 0 0 371 + eh_globals.o 0 13 0 0 13 210 160 0 0 370 + ble_hs_pvcy.c.obj 0 17 0 0 17 352 17 0 0 369 + lib_a-refill.o 0 0 0 0 0 369 0 0 0 369 + pkcs5.c.obj 0 0 0 0 0 369 0 0 0 369 + ieee802_11_common.c.obj 0 0 0 0 0 368 0 0 0 368 + os_msys_init.c.obj 0 88 0 0 88 260 106 0 0 366 + lc_sco.o 0 0 0 0 0 305 60 0 0 365 + base64.c.obj 0 0 0 0 0 365 0 0 0 365 + sta_info.c.obj 0 0 0 0 0 349 0 0 0 349 + llc_task.o 0 0 0 0 0 344 0 0 0 344 + ieee80211_crypto_tkip.o 24 0 0 0 24 316 0 0 0 340 +ieee80211_action_vendor. 0 12 0 0 12 338 0 0 0 338 + freertos_hooks.c.obj 8 128 43 0 179 278 0 0 0 329 + nvs_partition.cpp.obj 0 0 0 0 0 229 96 0 0 325 + ble_hs_hci_util.c.obj 0 0 0 0 0 264 55 0 0 319 + hci_msg.o 0 0 0 0 0 186 133 0 0 319 + ieee80211_debug.o 0 64 0 0 64 188 130 0 0 318 + mem.c.obj 0 0 0 0 0 176 137 0 0 313 + ap_config.c.obj 0 0 0 0 0 313 0 0 0 313 + windowspill_asm.o 0 0 311 0 311 0 0 0 0 311 + bignum_alt.c.obj 0 0 0 0 0 310 0 0 0 310 + lib_a-fopen.o 0 0 0 0 0 308 0 0 0 308 + lib_a-s_ceil.o 0 0 0 0 0 308 0 0 0 308 + tcp_isn_default.c.obj 0 68 0 0 68 304 0 0 0 304 + misc_nvs.o 0 33 0 0 33 255 48 0 0 303 + esp_common.c.obj 0 168 0 0 168 299 0 0 0 299 + vflash.o 0 2060 0 0 2060 294 0 0 0 294 + lib_a-s_floor.o 0 0 0 0 0 294 0 0 0 294 + flash_ops.c.obj 8 4 91 0 103 108 85 0 0 292 +task_wdt_impl_timergroup 0 12 0 0 12 288 0 0 0 288 + task.o 0 16 71 0 87 190 19 0 0 280 + esp_ota_ops.c.obj 0 4 0 0 4 152 125 0 0 277 + lib_a-makebuf.o 0 0 0 0 0 275 0 0 0 275 + lib_printf.c.obj 0 0 0 0 0 258 17 0 0 275 + eh_throw.o 0 0 0 0 0 183 88 0 0 271 + ble_hs_misc.c.obj 0 0 0 0 0 206 64 0 0 270 + ip4_addr.c.obj 0 0 0 0 0 218 48 0 0 266 + esp_time_impl.c.obj 0 12 0 0 12 266 0 0 0 266 + nvds.o 0 0 0 0 0 244 19 0 0 263 + aes_hal.c.obj 0 0 0 0 0 261 0 0 0 261 +lwip_default_hooks.c.obj 0 0 0 0 0 261 0 0 0 261 + highint_hdl.S.obj 0 0 257 0 257 0 0 0 0 257 + sha256-prf.c.obj 0 0 0 0 0 254 0 0 0 254 + esp_err.c.obj 108 0 145 0 253 0 0 0 0 253 + lib_a-reent.o 0 0 0 0 0 252 0 0 0 252 + lib_a-wsetup.o 0 0 0 0 0 251 0 0 0 251 + ieee80211_ets.o 0 0 0 0 0 185 63 0 0 248 + ble_l2cap_sig_cmd.c.obj 0 0 0 0 0 240 0 0 0 240 + eh_catch.o 0 0 0 0 0 200 40 0 0 240 + lib_a-puts.o 0 0 0 0 0 238 0 0 0 238 +spi_flash_chip_issi.c.ob 129 0 108 0 237 0 0 0 0 237 + log_freertos.c.obj 0 8 234 0 242 0 0 0 0 234 + newlib_init.c.obj 144 240 0 0 384 89 0 0 0 233 + int_wdt.c.obj 0 9 102 0 111 130 0 0 0 232 + sha256-kdf.c.obj 0 0 0 0 0 228 0 0 0 228 + system_time.c.obj 0 8 35 0 43 110 81 0 0 226 + aes-unwrap.c.obj 0 0 0 0 0 222 0 0 0 222 + netbuf.c.obj 0 0 0 0 0 129 92 0 0 221 + hw_random.c.obj 0 4 72 0 76 75 72 0 0 219 + ieee80211_mesh_quick.o 7 180 0 0 187 212 0 0 0 219 + lib_a-snprintf.o 0 0 0 0 0 217 0 0 0 217 + crypto_ops.c.obj 0 0 0 0 0 99 116 0 0 215 + eh_terminate.o 0 0 0 0 0 85 128 0 0 213 + ieee80211_nan_disc.o 0 0 0 0 0 212 0 0 0 212 + sleep_modes.c.obj 8 12 0 0 20 117 86 0 0 211 + ke_msg.o 0 36 186 0 222 20 0 0 0 206 + eif.o 0 0 21 0 21 184 0 0 0 205 + aes-wrap.c.obj 0 0 0 0 0 205 0 0 0 205 + lib_a-putc.o 0 0 0 0 0 204 0 0 0 204 + abort.c.obj 40 0 161 0 201 0 0 0 0 201 + brownout_hal.c.obj 0 0 0 0 0 200 0 0 0 200 + brownout.c.obj 0 0 77 0 77 79 43 0 0 199 + lib_a-sscanf.o 0 0 0 0 0 198 0 0 0 198 + ld_sched.o 0 0 145 0 145 41 11 0 0 197 + port_common.c.obj 0 0 77 0 77 0 120 0 0 197 + ble_hs_mbuf.c.obj 0 0 0 0 0 196 0 0 0 196 + endian.c.obj 0 0 0 0 0 192 0 0 0 192 + regi2c_ctrl.c.obj 8 0 180 0 188 0 0 0 0 188 + esp_rom_uart.c.obj 0 0 187 0 187 0 0 0 0 187 + chip_info.c.obj 0 0 0 0 0 186 0 0 0 186 + pk.c.obj 0 0 0 0 0 185 0 0 0 185 +default_event_loop.c.obj 0 4 0 0 4 154 28 0 0 182 + heap_idf.c.obj 0 0 182 0 182 0 0 0 0 182 + xtensa_intr.c.obj 0 0 26 0 26 119 35 0 0 180 + rc4.c.obj 0 0 0 0 0 179 0 0 0 179 + wpabuf.c.obj 0 0 0 0 0 177 0 0 0 177 + sdk_config.o 0 48 75 0 123 98 0 0 0 173 + rtc_analog.o 0 0 173 0 173 0 0 0 0 173 +spi_flash_chip_mxic.c.ob 129 0 44 0 173 0 0 0 0 173 + ble_hs_mqueue.c.obj 0 0 0 0 0 171 0 0 0 171 + hal_mac_rx.o 0 0 170 0 170 0 0 0 0 170 + esp_efuse_api.c.obj 0 0 0 0 0 168 0 0 0 168 + lib_a-sprintf.o 0 0 0 0 0 167 0 0 0 167 + config_funcs.o 0 0 0 0 0 166 0 0 0 166 + ieee80211_crypto_wep.o 24 0 0 0 24 142 0 0 0 166 + efuse_hal.c.obj 0 0 164 0 164 0 0 0 0 164 + list.c.obj 0 0 162 0 162 0 0 0 0 162 + new_op.o 0 0 0 0 0 75 86 0 0 161 + sha1-prf.c.obj 0 0 0 0 0 154 0 0 0 154 + heap.c.obj 0 0 151 0 151 0 0 0 0 151 + cache_err_int.c.obj 0 0 0 0 0 148 0 0 0 148 + ble_hs_hci_cmd.c.obj 0 0 0 0 0 142 0 0 0 142 + esp_aes_common.c.obj 0 0 0 0 0 142 0 0 0 142 + ble_att_cmd.c.obj 0 0 0 0 0 141 0 0 0 141 +spi_flash_os_func_noos.c 40 0 90 0 130 0 0 0 0 130 + lib_a-vsnprintf.o 0 0 0 0 0 129 0 0 0 129 + lib_a-flags.o 0 0 0 0 0 128 0 0 0 128 + esp_system.c.obj 0 20 0 0 20 128 0 0 0 128 + ethip6.c.obj 0 0 0 0 0 128 0 0 0 128 + ieee80211_ie_vendor.o 0 0 0 0 0 126 0 0 0 126 + mem.c.obj 0 0 0 0 0 121 0 0 0 121 + lib_a-printf.o 0 0 0 0 0 120 0 0 0 120 + ble_hs_atomic.c.obj 0 0 0 0 0 116 0 0 0 116 + hash_info.c.obj 0 0 0 0 0 29 84 0 0 113 +esp_ipc_isr_handler.S.ob 16 0 95 0 111 0 0 0 0 111 + err.c.obj 0 0 0 0 0 42 68 0 0 110 + addr.c.obj 0 0 0 0 0 108 0 0 0 108 + plf_funcs.o 0 12 0 0 12 0 108 0 0 108 + new_opvnt.o 0 0 0 0 0 36 72 0 0 108 + esp_system_chip.c.obj 0 0 67 0 67 40 0 0 0 107 + lib_a-s_frexp.o 0 0 0 0 0 106 0 0 0 106 + nvs_types.cpp.obj 0 0 0 0 0 104 0 0 0 104 + esp_efuse_table.c.obj 60 0 0 0 60 0 40 0 0 100 + osi.o 0 4 0 0 4 74 25 0 0 99 +nimble_port_freertos.c.o 0 4 0 0 4 86 12 0 0 98 + lib_a-vprintf.o 0 0 0 0 0 98 0 0 0 98 + wl_offchan.o 0 8 0 0 8 98 0 0 0 98 + esp_owe.c.obj 0 0 0 0 0 95 0 0 0 95 + ble_svc_gap.c.obj 32 0 0 0 32 62 0 0 0 94 + ble_sm_cmd.c.obj 0 0 0 0 0 90 0 0 0 90 + _divsf3.o 0 0 0 0 0 89 0 0 0 89 + esp_md.c.obj 0 0 0 0 0 89 0 0 0 89 + bad_alloc.o 0 0 0 0 0 54 35 0 0 89 + co_utils.o 0 0 65 0 65 20 0 0 0 85 + dbg.o 0 0 0 0 0 68 16 0 0 84 + lib_a-mbrtowc.o 0 0 0 0 0 84 0 0 0 84 + ld_sscan.o 0 0 0 0 0 79 0 0 0 79 +cpu_region_protect.c.obj 0 0 0 0 0 59 20 0 0 79 + esp_pbuf_ref.c.obj 0 0 0 0 0 79 0 0 0 79 + os_xtensa.c.obj 0 0 0 0 0 78 0 0 0 78 +nvs_partition_lookup.cpp 0 0 0 0 0 77 0 0 0 77 + lib_a-putchar.o 0 0 0 0 0 76 0 0 0 76 + mpu_hal.c.obj 0 0 0 0 0 76 0 0 0 76 + dns.c.obj 0 72 0 0 72 75 0 0 0 75 + ip.c.obj 0 68 0 0 68 49 24 0 0 73 +flash_brownout_hook.c.ob 0 2 73 0 75 0 0 0 0 73 + ext_mem_layout.c.obj 0 0 0 0 0 0 72 0 0 72 +esp_netif_defaults.c.obj 0 0 0 0 0 0 72 0 0 72 + cache_esp32.c.obj 8 0 59 0 67 0 0 0 0 67 + def.c.obj 0 0 0 0 0 66 0 0 0 66 + panic_handler_asm.S.obj 0 0 64 0 64 0 0 0 0 64 + ll.o 0 0 51 0 51 11 0 0 0 62 + lib_a-mbtowc_r.o 0 0 0 0 0 62 0 0 0 62 + sha256.c.obj 0 0 0 0 0 62 0 0 0 62 + sha512.c.obj 0 0 0 0 0 62 0 0 0 62 + hal_tsf.o 0 0 0 0 0 62 0 0 0 62 +state_asm--restore_extra 0 0 62 0 62 0 0 0 0 62 +state_asm--save_extra_nw 0 0 62 0 62 0 0 0 0 62 + esp_efuse_api_key.c.obj 0 0 0 0 0 58 0 0 0 58 + phy_override.c.obj 0 1 0 0 1 57 0 0 0 57 + new_opv.o 0 0 0 0 0 16 40 0 0 56 + lld_util.o 0 0 0 0 0 55 0 0 0 55 + bt_osi_mem.c.obj 0 0 52 0 52 0 0 0 0 52 + reent_init.c.obj 0 0 52 0 52 0 0 0 0 52 + platform.c.obj 8 0 0 0 8 43 0 0 0 51 + port_systick.c.obj 0 0 50 0 50 0 0 0 0 50 + pp_debug.o 4 252 23 0 279 23 0 0 0 50 + lib_a-fseek.o 0 0 0 0 0 49 0 0 0 49 + md5.c.obj 0 0 0 0 0 49 0 0 0 49 + sha1.c.obj 0 0 0 0 0 49 0 0 0 49 + ble_hs_log.c.obj 0 0 0 0 0 47 0 0 0 47 + ieee80211_rfid.o 0 0 0 0 0 44 0 0 0 44 + lib_a-localeconv.o 0 0 0 0 0 43 0 0 0 43 + ble_hs_cfg.c.obj 40 0 0 0 40 0 0 0 0 40 + _divdi3.o 0 0 0 0 0 0 40 0 0 40 + _moddi3.o 0 0 0 0 0 0 40 0 0 40 + _udivdi3.o 0 0 0 0 0 0 40 0 0 40 + _umoddi3.o 0 0 0 0 0 0 40 0 0 40 +cxx_exception_stubs.cpp. 0 0 0 0 0 39 0 0 0 39 +dport_access_common.c.ob 0 0 0 0 0 39 0 0 0 39 + esp_memory_utils.c.obj 0 0 33 0 33 0 0 0 0 33 +esp_timer_impl_common.c. 24 0 9 0 33 0 0 0 0 33 + dport_access.c.obj 0 0 33 0 33 0 0 0 0 33 + esp_crypto_lock.c.obj 0 4 0 0 4 32 0 0 0 32 + xtensa_init.c.obj 0 4 32 0 36 0 0 0 0 32 + init.c.obj 0 0 0 0 0 32 0 0 0 32 + platform_util.c.obj 4 0 0 0 4 28 0 0 0 32 + interrupts--intlevel.o 0 0 0 0 0 0 32 0 0 32 + bootloader_efuse.c.obj 0 0 30 0 30 0 0 0 0 30 + esp_mem.c.obj 0 0 30 0 30 0 0 0 0 30 + esp_gpio_reserve.c.obj 0 8 29 0 37 0 0 0 0 29 + debug_helpers_asm.S.obj 0 0 29 0 29 0 0 0 0 29 + lib_a-iswspace_l.o 0 0 0 0 0 28 0 0 0 28 + lib_a-sysgettod.o 0 0 0 0 0 28 0 0 0 28 +spi_flash_chip_drivers.c 28 0 0 0 28 0 0 0 0 28 + scan.c.obj 0 0 0 0 0 27 0 0 0 27 + ip6_addr.c.obj 0 0 0 0 0 0 24 0 0 24 + syscalls.c.obj 0 0 0 0 0 22 0 0 0 22 + new_handler.o 0 4 0 0 4 20 1 0 0 21 + mpi_periph.c.obj 0 0 0 0 0 0 20 0 0 20 + esp_rom_sys.c.obj 0 0 19 0 19 0 0 0 0 19 + esp_hardware.c.obj 0 0 0 0 0 19 0 0 0 19 + lib_a-errno.o 0 0 0 0 0 17 0 0 0 17 + lib_a-iswspace.o 0 0 0 0 0 17 0 0 0 17 + lib_a-lnumeric.o 0 0 0 0 0 0 16 0 0 16 + phy.o 0 0 0 0 0 16 0 0 0 16 + lib_a-s_nan.o 0 0 0 0 0 15 0 0 0 15 + del_op.o 0 0 0 0 0 14 0 0 0 14 + del_ops.o 0 0 0 0 0 14 0 0 0 14 + del_opv.o 0 0 0 0 0 14 0 0 0 14 + del_opvs.o 0 0 0 0 0 14 0 0 0 14 + led.o 0 0 0 0 0 13 0 0 0 13 + lib_a-sf_nan.o 0 0 0 0 0 12 0 0 0 12 +esp_netif_lwip_defaults. 4 0 0 0 4 0 8 0 0 12 + pthread.c.obj 0 0 0 0 0 12 0 0 0 12 + tinfo.o 0 0 0 0 0 12 0 0 0 12 + flash_encrypt.c.obj 0 0 10 0 10 0 0 0 0 10 + coexist.c.obj 0 0 0 0 0 10 0 0 0 10 +esp_ipc_isr_routines.S.o 0 0 10 0 10 0 0 0 0 10 + crtend.o 0 0 0 0 0 0 8 0 0 8 + bootloader_mem.c.obj 0 0 0 0 0 8 0 0 0 8 + int_asm--set_intclear.o 0 0 8 0 8 0 0 0 0 8 + crti.o 0 0 0 3 3 3 0 0 0 6 + emi.o 0 0 0 0 0 5 0 0 0 5 + ke.o 0 0 0 0 0 5 0 0 0 5 + syscntl.o 0 0 0 0 0 5 0 0 0 5 + cxx_guards.cpp.obj 0 0 0 0 0 5 0 0 0 5 +mspi_timing_tuning.c.obj 0 0 5 0 5 0 0 0 0 5 + ubsan.c.obj 0 0 5 0 5 0 0 0 0 5 + nvs_sec_provider.c.obj 0 0 0 0 0 5 0 0 0 5 + pthread_rwlock.c.obj 0 0 0 0 0 5 0 0 0 5 + pthread_semaphore.c.obj 0 0 0 0 0 5 0 0 0 5 + eh_exception.o 0 0 0 0 0 5 0 0 0 5 + crtbegin.o 0 0 0 0 0 0 4 0 0 4 + btdm_log.o 4 0 0 0 4 0 0 0 0 4 + spi_bus_lock.c.obj 0 0 0 0 0 0 4 0 0 4 + eh_term_handler.o 4 0 0 0 4 0 0 0 0 4 + eh_unex_handler.o 4 0 0 0 4 0 0 0 0 4 + crt0.o 0 0 0 0 0 0 0 0 0 0 + crtn.o 0 0 0 0 0 0 0 0 0 0 +project_elf_src_esp32.c. 0 0 0 0 0 0 0 0 0 0 + bootloader_common.c.obj 0 0 0 0 0 0 0 0 0 0 +bootloader_common_loader 0 0 0 0 0 0 0 0 0 0 +bootloader_random_esp32. 0 0 0 0 0 0 0 0 0 0 + bootloader_sha.c.obj 0 0 0 0 0 0 0 0 0 0 +bootloader_utility.c.obj 0 0 0 0 0 0 0 0 0 0 + esp_image_format.c.obj 0 0 0 0 0 0 0 0 0 0 + flash_partitions.c.obj 0 0 0 0 0 0 0 0 0 0 + lib_a-atoi.o 0 0 0 0 0 0 0 0 0 0 + lib_a-bzero.o 0 0 0 0 0 0 0 0 0 0 + lib_a-ctype_.o 0 0 0 0 0 0 0 0 0 0 + lib_a-div.o 0 0 0 0 0 0 0 0 0 0 + lib_a-environ.o 0 0 0 0 0 0 0 0 0 0 + lib_a-envlock.o 0 0 0 0 0 0 0 0 0 0 + lib_a-fclose.o 0 0 0 0 0 0 0 0 0 0 + lib_a-ferror.o 0 0 0 0 0 0 0 0 0 0 + lib_a-fflush.o 0 0 0 0 0 0 0 0 0 0 + lib_a-fgets.o 0 0 0 0 0 0 0 0 0 0 + lib_a-findfp.o 0 0 0 0 0 0 0 0 0 0 + lib_a-fprintf.o 0 0 0 0 0 0 0 0 0 0 + lib_a-fputc.o 0 0 0 0 0 0 0 0 0 0 + lib_a-fputs.o 0 0 0 0 0 0 0 0 0 0 + lib_a-fread.o 0 0 0 0 0 0 0 0 0 0 + lib_a-ftell.o 0 0 0 0 0 0 0 0 0 0 + lib_a-ftello.o 0 0 0 0 0 0 0 0 0 0 + lib_a-fwalk.o 0 0 0 0 0 0 0 0 0 0 + lib_a-fwrite.o 0 0 0 0 0 0 0 0 0 0 + lib_a-getenv_r.o 0 0 0 0 0 0 0 0 0 0 + lib_a-gettzinfo.o 0 0 0 0 0 0 0 0 0 0 + lib_a-gmtime.o 0 0 0 0 0 0 0 0 0 0 + lib_a-gmtime_r.o 0 0 0 0 0 0 0 0 0 0 + lib_a-impure.o 0 0 0 0 0 0 0 0 0 0 + lib_a-itoa.o 0 0 0 0 0 0 0 0 0 0 + lib_a-lcltime_r.o 0 0 0 0 0 0 0 0 0 0 + lib_a-memchr.o 0 0 0 0 0 0 0 0 0 0 + lib_a-memcmp.o 0 0 0 0 0 0 0 0 0 0 + lib_a-memcpy.o 0 0 0 0 0 0 0 0 0 0 + lib_a-memmove.o 0 0 0 0 0 0 0 0 0 0 + lib_a-memset.o 0 0 0 0 0 0 0 0 0 0 + lib_a-mktime.o 0 0 0 0 0 0 0 0 0 0 + lib_a-month_lengths.o 0 0 0 0 0 0 0 0 0 0 + lib_a-qsort.o 0 0 0 0 0 0 0 0 0 0 + lib_a-rand.o 0 0 0 0 0 0 0 0 0 0 + lib_a-remove.o 0 0 0 0 0 0 0 0 0 0 + lib_a-rename.o 0 0 0 0 0 0 0 0 0 0 + lib_a-sccl.o 0 0 0 0 0 0 0 0 0 0 + lib_a-setbuf.o 0 0 0 0 0 0 0 0 0 0 + lib_a-setvbuf.o 0 0 0 0 0 0 0 0 0 0 + lib_a-siscanf.o 0 0 0 0 0 0 0 0 0 0 + lib_a-stdio.o 0 0 0 0 0 0 0 0 0 0 + lib_a-strcat.o 0 0 0 0 0 0 0 0 0 0 + lib_a-strchr.o 0 0 0 0 0 0 0 0 0 0 + lib_a-strcmp.o 0 0 0 0 0 0 0 0 0 0 + lib_a-strcpy.o 0 0 0 0 0 0 0 0 0 0 + lib_a-strcspn.o 0 0 0 0 0 0 0 0 0 0 + lib_a-strdup.o 0 0 0 0 0 0 0 0 0 0 + lib_a-strdup_r.o 0 0 0 0 0 0 0 0 0 0 + lib_a-strerror.o 0 0 0 0 0 0 0 0 0 0 + lib_a-strerror_r.o 0 0 0 0 0 0 0 0 0 0 + lib_a-strlcat.o 0 0 0 0 0 0 0 0 0 0 + lib_a-strlcpy.o 0 0 0 0 0 0 0 0 0 0 + lib_a-strlen.o 0 0 0 0 0 0 0 0 0 0 + lib_a-strncmp.o 0 0 0 0 0 0 0 0 0 0 + lib_a-strncpy.o 0 0 0 0 0 0 0 0 0 0 + lib_a-strndup.o 0 0 0 0 0 0 0 0 0 0 + lib_a-strndup_r.o 0 0 0 0 0 0 0 0 0 0 + lib_a-strnlen.o 0 0 0 0 0 0 0 0 0 0 + lib_a-strrchr.o 0 0 0 0 0 0 0 0 0 0 + lib_a-strstr.o 0 0 0 0 0 0 0 0 0 0 + lib_a-strtok.o 0 0 0 0 0 0 0 0 0 0 + lib_a-strtok_r.o 0 0 0 0 0 0 0 0 0 0 + lib_a-strtol.o 0 0 0 0 0 0 0 0 0 0 + lib_a-strtoul.o 0 0 0 0 0 0 0 0 0 0 + lib_a-tzcalc_limits.o 0 0 0 0 0 0 0 0 0 0 + lib_a-tzlock.o 0 0 0 0 0 0 0 0 0 0 + lib_a-tzset.o 0 0 0 0 0 0 0 0 0 0 + lib_a-tzset_r.o 0 0 0 0 0 0 0 0 0 0 + lib_a-tzvars.o 0 0 0 0 0 0 0 0 0 0 + lib_a-u_strerr.o 0 0 0 0 0 0 0 0 0 0 + lib_a-ungetc.o 0 0 0 0 0 0 0 0 0 0 + lib_a-utoa.o 0 0 0 0 0 0 0 0 0 0 + lib_a-wbuf.o 0 0 0 0 0 0 0 0 0 0 + lib_a-wctomb_r.o 0 0 0 0 0 0 0 0 0 0 + gpio.c.obj 0 0 0 0 0 0 0 0 0 0 + rtc_io.c.obj 0 0 0 0 0 0 0 0 0 0 + spi_common.c.obj 0 0 0 0 0 0 0 0 0 0 +touch_sensor_common.c.ob 0 0 0 0 0 0 0 0 0 0 + esp_efuse_fields.c.obj 0 0 0 0 0 0 0 0 0 0 + rtc_sleep.c.obj 0 0 0 0 0 0 0 0 0 0 + sleep_modem.c.obj 0 0 0 0 0 0 0 0 0 0 + ethernetif.c.obj 0 0 0 0 0 0 0 0 0 0 + esp_rom_spiflash.c.obj 0 0 0 0 0 0 0 0 0 0 + mesh_event.c.obj 0 0 0 0 0 0 0 0 0 0 + _addsubdf3.o 0 0 0 0 0 0 0 0 0 0 + _cmpdf2.o 0 0 0 0 0 0 0 0 0 0 + _divdf3.o 0 0 0 0 0 0 0 0 0 0 + _extendsfdf2.o 0 0 0 0 0 0 0 0 0 0 + _ffsdi2.o 0 0 0 0 0 0 0 0 0 0 + _fixdfdi.o 0 0 0 0 0 0 0 0 0 0 + _fixdfsi.o 0 0 0 0 0 0 0 0 0 0 + _fixunsdfsi.o 0 0 0 0 0 0 0 0 0 0 + _floatdidf.o 0 0 0 0 0 0 0 0 0 0 + _floatdisf.o 0 0 0 0 0 0 0 0 0 0 + _floatsidf.o 0 0 0 0 0 0 0 0 0 0 + _muldf3.o 0 0 0 0 0 0 0 0 0 0 + _popcountsi2.o 0 0 0 0 0 0 0 0 0 0 + _truncdfsf2.o 0 0 0 0 0 0 0 0 0 0 + gpio_hal.c.obj 0 0 0 0 0 0 0 0 0 0 + rtc_io_hal.c.obj 0 0 0 0 0 0 0 0 0 0 + touch_sensor_hal.c.obj 0 0 0 0 0 0 0 0 0 0 + sockets_ext.c.obj 0 0 0 0 0 0 0 0 0 0 + pkcs12.c.obj 0 0 0 0 0 0 0 0 0 0 + pkwrite.c.obj 0 0 0 0 0 0 0 0 0 0 + psa_crypto.c.obj 0 0 0 0 0 0 0 0 0 0 + psa_crypto_aead.c.obj 0 0 0 0 0 0 0 0 0 0 + psa_crypto_cipher.c.obj 0 0 0 0 0 0 0 0 0 0 + psa_crypto_client.c.obj 0 0 0 0 0 0 0 0 0 0 +psa_crypto_driver_wrappe 0 0 0 0 0 0 0 0 0 0 + psa_crypto_ecp.c.obj 0 0 0 0 0 0 0 0 0 0 + psa_crypto_hash.c.obj 0 0 0 0 0 0 0 0 0 0 + psa_crypto_mac.c.obj 0 0 0 0 0 0 0 0 0 0 + psa_crypto_rsa.c.obj 0 0 0 0 0 0 0 0 0 0 +psa_crypto_slot_manageme 0 0 0 0 0 0 0 0 0 0 +psa_crypto_storage.c.obj 0 0 0 0 0 0 0 0 0 0 + psa_its_file.c.obj 0 0 0 0 0 0 0 0 0 0 + psa_util.c.obj 0 0 0 0 0 0 0 0 0 0 + mesh.o 0 0 0 0 0 0 0 0 0 0 + mesh_common.o 0 0 0 0 0 0 0 0 0 0 + mesh_config.o 0 0 0 0 0 0 0 0 0 0 + mesh_io.o 0 0 0 0 0 0 0 0 0 0 + mesh_main.o 0 0 0 0 0 0 0 0 0 0 + mesh_network.o 0 0 0 0 0 0 0 0 0 0 + mesh_parent.o 0 0 0 0 0 0 0 0 0 0 + mesh_quick.o 0 0 0 0 0 0 0 0 0 0 + mesh_route.o 0 0 0 0 0 0 0 0 0 0 + mesh_schedule.o 0 0 0 0 0 0 0 0 0 0 + mesh_sleep.o 0 0 0 0 0 0 0 0 0 0 + mesh_timer.o 0 0 0 0 0 0 0 0 0 0 + mesh_utilities.o 0 0 0 0 0 0 0 0 0 0 + mesh_wifi.o 0 0 0 0 0 0 0 0 0 0 + ieee80211_nan_sd.o 0 0 0 0 0 0 0 0 0 0 +nvs_encrypted_partition. 0 0 0 0 0 0 0 0 0 0 + pthread_cond_var.c.obj 0 0 0 0 0 0 0 0 0 0 + rtc.o 0 0 0 0 0 0 0 0 0 0 + gpio_periph.c.obj 0 0 0 0 0 0 0 0 0 0 + spi_periph.c.obj 0 0 0 0 0 0 0 0 0 0 +touch_sensor_periph.c.ob 0 0 0 0 0 0 0 0 0 0 + uart_periph.c.obj 0 0 0 0 0 0 0 0 0 0 + wpa_debug.c.obj 0 0 0 0 0 0 0 0 0 0 + *** Running idf_size.py for esp32s2... Total sizes: @@ -3288,10 +4137,10 @@ Used stat D/IRAM: 207299 bytes ( -18883 remain, 110.0% used) Overflow detected! .bss size: 18592 bytes .text size: 171884 bytes .vectors size: 1027 bytes -Used Flash size : 519371 bytes +Used Flash size : 512311 bytes .text : 420899 bytes - .rodata : 98216 bytes -Total image size: 708078 bytes (.bin may be padded larger) + .rodata : 91156 bytes +Total image size: 701018 bytes (.bin may be padded larger) *** Running idf_size.py for esp32s2 (target autodetected)... @@ -4066,10 +4915,10 @@ Check whether the LD file is compatible with the definitions in get_mem_regions Total sizes: Used stat D/IRAM: 551174 bytes (-223494 remain, 168.2% used) Overflow detected! You can run idf.py size-files for more information. .text size: 551174 bytes -Used Flash size : 494592 bytes +Used Flash size : 486882 bytes .text : 410978 bytes - .rodata : 83358 bytes -Total image size: 1045766 bytes (.bin may be padded larger) + .rodata : 75648 bytes +Total image size: 1038056 bytes (.bin may be padded larger) *** Running idf_size.py for esp32c3 (target autodetected)... @@ -4451,10 +5300,10 @@ Used static IRAM: 337906 bytes ( -51186 remain, 117.9% used) Overflow detected! Used stat D/IRAM: 94049 bytes ( 176287 remain, 34.8% used) .data size: 68929 bytes .bss size: 25120 bytes -Used Flash size : 461714 bytes +Used Flash size : 454371 bytes .text : 366715 bytes - .rodata : 94743 bytes -Total image size: 868549 bytes (.bin may be padded larger) + .rodata : 87400 bytes +Total image size: 861206 bytes (.bin may be padded larger) *** Running idf_size.py for esp32s3 (target autodetected)... diff --git a/tools/test_idf_size/test.sh b/tools/test_idf_size/test.sh index 98a9feb801..57b78c8fe9 100755 --- a/tools/test_idf_size/test.sh +++ b/tools/test_idf_size/test.sh @@ -75,6 +75,12 @@ json_test() { && python -m coverage run -a $IDF_PATH/tools/idf_size.py app2.map --archive_details libdriver.a --diff app.map &>> output \ && echo -e "\n***\nRunning idf_size.py diff --archive_details with another app..." &>> output \ && python -m coverage run -a $IDF_PATH/tools/idf_size.py app.map --archive_details libfreertos.a --diff app2.map &>> output \ + && echo -e "\n***\nRunning idf_size.py on app with nonzero noload sections..." &>> output \ + && python -m coverage run -a $IDF_PATH/tools/idf_size.py app_nonzero_noload.map &>> output \ + && echo -e "\n***\nRunning idf_size.py --archives on app with nonzero noload sections..." &>> output \ + && python -m coverage run -a $IDF_PATH/tools/idf_size.py --archives app_nonzero_noload.map &>> output \ + && echo -e "\n***\nRunning idf_size.py --files on app with nonzero noload sections..." &>> output \ + && python -m coverage run -a $IDF_PATH/tools/idf_size.py --files app_nonzero_noload.map &>> output \ && echo -e "\n***\nRunning idf_size.py for esp32s2..." &>> output \ && python -m coverage run -a $IDF_PATH/tools/idf_size.py --target esp32s2 app_esp32s2.map &>> output \ && echo -e "\n***\nRunning idf_size.py for esp32s2 with overflow..." &>> output \